Skip to content

Commit

Permalink
Merge pull request #2547 from candita/issue2482-backendtlspolicy-docs…
Browse files Browse the repository at this point in the history
…-api

Issue #2483 - Add backendtlspolicy API Documentation
  • Loading branch information
k8s-ci-robot authored Nov 2, 2023
2 parents b5499dc + 49f24ae commit 341c46e
Show file tree
Hide file tree
Showing 5 changed files with 151 additions and 5 deletions.
12 changes: 7 additions & 5 deletions mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,11 +83,13 @@ nav:
- Reference:
- Implementer's Guide: reference/implementers-guide.md
- API Types:
GatewayClass: api-types/gatewayclass.md
Gateway: api-types/gateway.md
HTTPRoute: api-types/httproute.md
ReferenceGrant: api-types/referencegrant.md
GRPCRoute: api-types/grpcroute.md
- Gateway: api-types/gateway.md
- GatewayClass: api-types/gatewayclass.md
- GRPCRoute: api-types/grpcroute.md
- HTTPRoute: api-types/httproute.md
- Policy:
- BackendTLSPolicy: api-types/backendtlspolicy.md
- ReferenceGrant: api-types/referencegrant.md
- API specification: reference/spec.md
- Policy Attachment: reference/policy-attachment.md
- Enhancement Proposals:
Expand Down
144 changes: 144 additions & 0 deletions site-src/api-types/backendtlspolicy.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,144 @@
# BackendTLSPolicy

??? example "Experimental Channel in v1.0.0+"

The `BackendTLSPolicy` resource is Alpha and part of the Experimental Channel in `v1.0.0+`.

[BackendTLSPolicy][backendtlspolicy] is a Gateway API type for specifying the TLS configuration
of the connection from the Gateway to a backend pod/s via the Service API object.

## Background

`BackendTLSPolicy` specifically addresses the configuration of TLS in order to convey HTTPS from the Gateway
dataplane to the backend. This is referred to as "backend TLS termination" and enables the Gateway to know
how to connect to a backend pod that has its own certificate.

While there are other API objects provided for TLS to be configured for **passthrough** and **edge** termination,
this API object allows users to specifically configure **backend** TLS termination. For more information on TLS
configuration in Gateway API, see [TLS Configuration](/guides/tls/).

![Image showing three TLS Termination Types](/images/tls-termination-types.png)

BackendTLSPolicy is a Direct [PolicyAttachment](/reference/policy-attachment/) without defaults or overrides,
applied to a Service that accesses a backend, where the BackendTLSPolicy resides in the same namespace as the
Service to which it is applied. The BackendTLSPolicy and the Service must reside in the same namespace in order
to prevent the complications involved with sharing trust across namespace boundaries.

All Gateway API Routes that point to a referenced Service should respect a configured BackendTLSPolicy.

## Spec

The specification of a [BackendTLSPolicy][backendtlspolicy] consists of:

- [TargetRef][targetRef] - Defines the targeted API object of the policy. Only Service is allowed.
- [TLS][tls] - Defines the configuration for TLS, including hostname, CACertRefs, and WellKnownCACerts.
- [Hostname][hostname] - Defines the Server Name Indication (SNI) that the Gateway uses to connect to the backend.
- [CACertRefs][caCertRefs] - Defines one or more references to objects that contain PEM-encoded TLS certificates,
which are used to establish a TLS handshake between the Gateway and backend Pod. Either CACertRefs or WellKnownCACerts
may be specified, but not both.
- [WellKnownCACerts][wellKnownCACerts] - Specifies whether system CA certificates may be used in the TLS
handshake between the Gateway and backend Pod. Either CACertRefs or WellKnownCACerts may be specified, but not both.

The following chart outlines the object definitions and relationship:
```mermaid
flowchart LR
backendTLSPolicy[["<b>backendTLSPolicy</b> <hr><align=left>BackendTLSPolicySpec: spec<br>PolicyStatus: status</align>"]]
spec[["<b>spec</b><hr>PolicyTargetReferenceWithSectionName: targetRef <br> BackendTLSPolicyConfig: tls"]]
status[["<b>status</b><hr>[ ]PolicyAncestorStatus: ancestors"]]
tls[["<b>tls</b><hr>LocalObjectReference: caCertRefs<br>wellKnownCACertType: wellKnownCACerts<br>PreciseHostname: hostname"]]
ancestorStatus[["<b>ancestors</b><hr>AncestorRef: parentReference<br>GatewayController: controllerName<br>[]Condition: conditions"]]
targetRef[[<b>targetRef</b><hr>]]
service["<b>service</>"]
backendTLSPolicy -->spec
backendTLSPolicy -->status
spec -->targetRef & tls
status -->ancestorStatus
targetRef -->service
note[<em>choose only one<hr> caCertRef OR wellKnownCACerts</em>]
style note fill:#fff
tls -.- note
```

The following illustrates a BackendTLSPolicy that configures TLS for a Service serving a backend:
```mermaid
flowchart LR
client(["client"])
gateway["Gateway"]
style gateway fill:#02f,color:#fff
httproute["HTTP<BR>Route"]
style httproute fill:#02f,color:#fff
service["Service"]
style service fill:#02f,color:#fff
pod1["Pod"]
style pod1 fill:#02f,color:#fff
pod2["Pod"]
style pod2 fill:#02f,color:#fff
client -.->|HTTP <br> request| gateway
gateway --> httproute
httproute -.->|BackendTLSPolicy|service
service --> pod1 & pod2
```

### Targeting backends

A BackendTLSPolicy targets a backend Pod (or set of Pods) via a TargetRef to a Service. This TargetRef is a
required object reference that specifies a Service by its Name, Kind (Service), and optionally its Namespace and Group.
TargetRef identifies the Service for which your HTTPRoute requires TLS.

!!! info "Restrictions"

- Cross-namespace certificate references are not allowed.

### BackendTLSPolicyConfig

A BackendTLSPolicyConfig is the specification for the BackendTLSPolicy and defines the configuration for TLS,
including hostname (for server name indication) and certificates.

#### Hostname

Hostname defines the server name indication (SNI) the Gateway should use in order to connect to the backend, and must
match the certificate served by the backend pod. A hostname is the fully qualified domain name of a network host, as
defined by [RFC 3986][rfc-3986]. Note the following deviations from the “host” part of the URI as defined in the RFC:

- IP addresses are not allowed.

Also note:

!!! info "Restrictions"

- Wildcard hostnames are not allowed.

#### Certificates

The BackendTLSPolicyConfig must contain a certificate reference of some kind, and contains two ways to configure the
certificate to use for backend TLS, CACertRefs and WellKnownCACerts. Only one of these may be used per
BackendTLSPolicyConfig.

##### CaCertRefs

CACertRefs refer to one or more PEM-encoded TLS certificates.

!!! info "Restrictions"

- Cross-namespace certificate references are not allowed.

##### WellKnownCACerts

If you are working in an environment where specific TLS certificates are not required, and your Gateway API
implementation allows system or default certificates to be used, e.g. in a development environment, you may
set WellKnownCACerts to "System" to tell the Gateway to use a set of trusted CA Certificates. There may be
some variation in which system certificates are used by each implementation. Refer to documentation from your
implementation of choice for more information.

### PolicyStatus

Status defines the observed state of the BackendTLSPolicy and is not user-configurable. Check status in the same
way you do for other Gateway API objects to verify correct operation. Note that the status in BackendTLSPolicy
uses `PolicyAncestorStatus` to allow you to know which parentReference set that particular status.

[backendtlspolicy]: /references/spec/#gateway.networking.k8s.io/v1alpha2.BackendTLSPolicy
[tls]: /references/spec/#gateway.networking.k8s.io/v1alpha2.BackendTLSPolicy.TLS
[caCertRefs]: /references/spec/#gateway.networking.k8s.io/v1alpha2.BackendTLSPolicyConfig.CACertRefs
[wellKnownCACerts]: /references/spec/#gateway.networking.k8s.io/v1alpha2.BackendTLSPolicyConfig.WellKnownCACerts
[hostname]: /references/spec/#gateway.networking.k8s.io/v1beta1.PreciseHostname
[targetRef]: /references/spec/#gateway.networking.k8s.io/v1alpha2.PolicyTargetReference
Binary file added site-src/images/backendtlspolicy-api.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added site-src/images/tls-termination-types.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 341c46e

Please sign in to comment.