Skip to content

Commit ec25823

Browse files
authored
Merge pull request #518 from danehans/gw_tls_mode
Fixes TLS Mode Defaulting
2 parents 27c4d2d + d06d370 commit ec25823

File tree

4 files changed

+51
-32
lines changed

4 files changed

+51
-32
lines changed

apis/v1alpha1/gateway_types.go

+19-9
Original file line numberDiff line numberDiff line change
@@ -310,21 +310,30 @@ type GatewayTLSConfig struct {
310310
// Mode defines the TLS behavior for the TLS session initiated by the client.
311311
// There are two possible modes:
312312
// - Terminate: The TLS session between the downstream client
313-
// and the Gateway is terminated at the Gateway.
313+
// and the Gateway is terminated at the Gateway. This mode requires
314+
// certificateRef to be set.
314315
// - Passthrough: The TLS session is NOT terminated by the Gateway. This
315316
// implies that the Gateway can't decipher the TLS stream except for
316317
// the ClientHello message of the TLS protocol.
317318
// CertificateRef field is ignored in this mode.
319+
//
320+
// Support: Core
321+
//
322+
// +kubebuilder:default=Terminate
318323
Mode TLSModeType `json:"mode,omitempty"`
319324

320-
// CertificateRef is the reference to Kubernetes object that
321-
// contain a TLS certificate and private key.
322-
// This certificate MUST be used for TLS handshakes for the domain
323-
// this GatewayTLSConfig is associated with.
324-
// If an entry in this list omits or specifies the empty
325-
// string for both the group and the resource, the resource defaults to "secrets".
326-
// An implementation may support other resources (for example, resource
325+
// CertificateRef is the reference to Kubernetes object that contain a
326+
// TLS certificate and private key. This certificate MUST be used for
327+
// TLS handshakes for the domain this GatewayTLSConfig is associated with.
328+
//
329+
// This field is required when mode is set to "Terminate" (default) and
330+
// optional otherwise.
331+
//
332+
// If an entry in this list omits or specifies the empty string for both
333+
// the group and the resource, the resource defaults to "secrets". An
334+
// implementation may support other resources (for example, resource
327335
// "mycertificates" in group "networking.acme.io").
336+
//
328337
// Support: Core (Kubernetes Secrets)
329338
// Support: Implementation-specific (Other resource types)
330339
//
@@ -338,6 +347,8 @@ type GatewayTLSConfig struct {
338347
// set to 'Allow' as it will be used as the default certificate for the
339348
// listener.
340349
//
350+
// Support: Core
351+
//
341352
// +kubebuilder:default={certificate:Deny}
342353
RouteOverride TLSOverridePolicy `json:"routeOverride,omitempty"`
343354

@@ -357,7 +368,6 @@ type GatewayTLSConfig struct {
357368

358369
// TLSModeType type defines behavior of gateway with TLS protocol.
359370
// +kubebuilder:validation:Enum=Terminate;Passthrough
360-
// +kubebuilder:default=Terminate
361371
type TLSModeType string
362372

363373
const (

config/crd/bases/networking.x-k8s.io_gateways.yaml

+4-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs-src/spec.md

+14-10
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/spec/index.html

+14-10
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)