@@ -310,21 +310,30 @@ type GatewayTLSConfig struct {
310
310
// Mode defines the TLS behavior for the TLS session initiated by the client.
311
311
// There are two possible modes:
312
312
// - 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.
314
315
// - Passthrough: The TLS session is NOT terminated by the Gateway. This
315
316
// implies that the Gateway can't decipher the TLS stream except for
316
317
// the ClientHello message of the TLS protocol.
317
318
// CertificateRef field is ignored in this mode.
319
+ //
320
+ // Support: Core
321
+ //
322
+ // +kubebuilder:default=Terminate
318
323
Mode TLSModeType `json:"mode,omitempty"`
319
324
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
327
335
// "mycertificates" in group "networking.acme.io").
336
+ //
328
337
// Support: Core (Kubernetes Secrets)
329
338
// Support: Implementation-specific (Other resource types)
330
339
//
@@ -338,6 +347,8 @@ type GatewayTLSConfig struct {
338
347
// set to 'Allow' as it will be used as the default certificate for the
339
348
// listener.
340
349
//
350
+ // Support: Core
351
+ //
341
352
// +kubebuilder:default={certificate:Deny}
342
353
RouteOverride TLSOverridePolicy `json:"routeOverride,omitempty"`
343
354
@@ -357,7 +368,6 @@ type GatewayTLSConfig struct {
357
368
358
369
// TLSModeType type defines behavior of gateway with TLS protocol.
359
370
// +kubebuilder:validation:Enum=Terminate;Passthrough
360
- // +kubebuilder:default=Terminate
361
371
type TLSModeType string
362
372
363
373
const (
0 commit comments