forked from knative/serving
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Force activator always in path when activator CA is specified
As described in the feature doc of knative#11906, activator needs to serve TLS traffic for the traffic from ingress. So, this patch force SKS proxy mode when `activator-ca` in `config-network` is specified.
- Loading branch information
Showing
9 changed files
with
299 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
../../../../../config/core/configmaps/network.yaml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,73 @@ | ||
/* | ||
Copyright 2020 The Knative Authors | ||
Licensed under the Apache License, Version 2.0 (the "License"); | ||
you may not use this file except in compliance with the License. | ||
You may obtain a copy of the License at | ||
https://www.apache.org/licenses/LICENSE-2.0 | ||
Unless required by applicable law or agreed to in writing, software | ||
distributed under the License is distributed on an "AS IS" BASIS, | ||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
See the License for the specific language governing permissions and | ||
limitations under the License. | ||
*/ | ||
|
||
package config | ||
|
||
import ( | ||
"fmt" | ||
|
||
corev1 "k8s.io/api/core/v1" | ||
|
||
cm "knative.dev/pkg/configmap" | ||
) | ||
|
||
const ( | ||
// DefaultsConfigName is the name of config map for the defaults. | ||
DefaultsConfigName = "config-defaults" | ||
|
||
// DefaultRevisionTimeoutSeconds will be set if timeoutSeconds not specified. | ||
DefaultRevisionTimeoutSeconds = 5 * 60 | ||
|
||
// DefaultMaxRevisionTimeoutSeconds will be set if MaxRevisionTimeoutSeconds is not specified. | ||
DefaultMaxRevisionTimeoutSeconds = 10 * 60 | ||
) | ||
|
||
func defaultConfig() *Defaults { | ||
return &Defaults{ | ||
RevisionTimeoutSeconds: DefaultRevisionTimeoutSeconds, | ||
MaxRevisionTimeoutSeconds: DefaultMaxRevisionTimeoutSeconds, | ||
} | ||
} | ||
|
||
// NewDefaultsConfigFromMap creates a Defaults from the supplied Map. | ||
func NewDefaultsConfigFromMap(data map[string]string) (*Defaults, error) { | ||
nc := defaultConfig() | ||
|
||
if err := cm.Parse(data, | ||
cm.AsInt64("revision-timeout-seconds", &nc.RevisionTimeoutSeconds), | ||
cm.AsInt64("max-revision-timeout-seconds", &nc.MaxRevisionTimeoutSeconds), | ||
); err != nil { | ||
return nil, err | ||
} | ||
|
||
if nc.RevisionTimeoutSeconds > nc.MaxRevisionTimeoutSeconds { | ||
return nil, fmt.Errorf("revision-timeout-seconds (%d) cannot be greater than max-revision-timeout-seconds (%d)", nc.RevisionTimeoutSeconds, nc.MaxRevisionTimeoutSeconds) | ||
} | ||
return nc, nil | ||
} | ||
|
||
// NewDefaultsConfigFromConfigMap creates a Defaults from the supplied configMap. | ||
func NewDefaultsConfigFromConfigMap(config *corev1.ConfigMap) (*Defaults, error) { | ||
return NewDefaultsConfigFromMap(config.Data) | ||
} | ||
|
||
// Defaults includes the default values to be populated by the webhook. | ||
type Defaults struct { | ||
RevisionTimeoutSeconds int64 | ||
// This is the timeout set for ingress. | ||
// RevisionTimeoutSeconds must be less than this value. | ||
MaxRevisionTimeoutSeconds int64 | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
/* | ||
Copyright 2020 The Knative Authors | ||
Licensed under the Apache License, Version 2.0 (the "License"); | ||
you may not use this file except in compliance with the License. | ||
You may obtain a copy of the License at | ||
http://www.apache.org/licenses/LICENSE-2.0 | ||
Unless required by applicable law or agreed to in writing, software | ||
distributed under the License is distributed on an "AS IS" BASIS, | ||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
See the License for the specific language governing permissions and | ||
limitations under the License. | ||
*/ | ||
|
||
// +k8s:deepcopy-gen=package | ||
|
||
// Package config holds the typed objects that define the schemas for | ||
// ConfigMap objects that pertain to our API objects. | ||
package config |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,92 @@ | ||
/* | ||
Copyright 2020 The Knative Authors. | ||
Licensed under the Apache License, Version 2.0 (the "License"); | ||
you may not use this file except in compliance with the License. | ||
You may obtain a copy of the License at | ||
http://www.apache.org/licenses/LICENSE-2.0 | ||
Unless required by applicable law or agreed to in writing, software | ||
distributed under the License is distributed on an "AS IS" BASIS, | ||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
See the License for the specific language governing permissions and | ||
limitations under the License. | ||
*/ | ||
|
||
package config | ||
|
||
import ( | ||
"context" | ||
|
||
"knative.dev/pkg/configmap" | ||
) | ||
|
||
type cfgKey struct{} | ||
|
||
// Config holds the collection of configurations that we attach to contexts. | ||
// +k8s:deepcopy-gen=false | ||
type Config struct { | ||
Defaults *Defaults | ||
} | ||
|
||
// FromContext extracts a Config from the provided context. | ||
func FromContext(ctx context.Context) *Config { | ||
x, ok := ctx.Value(cfgKey{}).(*Config) | ||
if ok { | ||
return x | ||
} | ||
return nil | ||
} | ||
|
||
// FromContextOrDefaults is like FromContext, but when no Config is attached it | ||
// returns a Config populated with the defaults for each of the Config fields. | ||
func FromContextOrDefaults(ctx context.Context) *Config { | ||
if cfg := FromContext(ctx); cfg != nil { | ||
return cfg | ||
} | ||
defaults, _ := NewDefaultsConfigFromMap(map[string]string{}) | ||
return &Config{ | ||
Defaults: defaults, | ||
} | ||
} | ||
|
||
// ToContext attaches the provided Config to the provided context, returning the | ||
// new context with the Config attached. | ||
func ToContext(ctx context.Context, c *Config) context.Context { | ||
return context.WithValue(ctx, cfgKey{}, c) | ||
} | ||
|
||
// Store is a typed wrapper around configmap.Untyped store to handle our configmaps. | ||
// +k8s:deepcopy-gen=false | ||
type Store struct { | ||
*configmap.UntypedStore | ||
} | ||
|
||
// NewStore creates a new store of Configs and optionally calls functions when ConfigMaps are updated. | ||
func NewStore(logger configmap.Logger, onAfterStore ...func(name string, value interface{})) *Store { | ||
store := &Store{ | ||
UntypedStore: configmap.NewUntypedStore( | ||
"defaults", | ||
logger, | ||
configmap.Constructors{ | ||
DefaultsConfigName: NewDefaultsConfigFromConfigMap, | ||
}, | ||
onAfterStore..., | ||
), | ||
} | ||
|
||
return store | ||
} | ||
|
||
// ToContext attaches the current Config state to the provided context. | ||
func (s *Store) ToContext(ctx context.Context) context.Context { | ||
return ToContext(ctx, s.Load()) | ||
} | ||
|
||
// Load creates a Config from the current config state of the Store. | ||
func (s *Store) Load() *Config { | ||
return &Config{ | ||
Defaults: s.UntypedLoad(DefaultsConfigName).(*Defaults).DeepCopy(), | ||
} | ||
} |
38 changes: 38 additions & 0 deletions
38
vendor/knative.dev/networking/pkg/apis/config/zz_generated.deepcopy.go
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.