-
Notifications
You must be signed in to change notification settings - Fork 606
docs: ClusterTrustBundle Support in BackendTLSPolicy #6714
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
zirain
merged 1 commit into
envoyproxy:main
from
zirain:docs/backendtlspolicy-clustertrustbundle
Aug 8, 2025
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 |
|---|---|---|
|
|
@@ -59,12 +59,35 @@ Store the cert/key in a Secret: | |
| kubectl create secret tls example-cert --key=www.example.com.key --cert=www.example.com.crt | ||
| ``` | ||
|
|
||
| Store the CA Cert in another Secret: | ||
| Store the CA Cert in different ways: | ||
|
|
||
| {{< tabpane text=true >}} | ||
| {{% tab header="ConfigMap" %}} | ||
|
|
||
| ```shell | ||
| kubectl create configmap example-ca --from-file=ca.crt | ||
| ``` | ||
|
|
||
| {{% /tab %}} | ||
|
|
||
| {{% tab header="ClusterTrustBundle" %}} | ||
|
|
||
| Save and apply the following resource to your cluster: | ||
|
|
||
| ```shell | ||
| apiVersion: certificates.k8s.io/v1beta1 | ||
| kind: ClusterTrustBundle | ||
| metadata: | ||
| name: example-ca | ||
| spec: | ||
| trustBundle: | | ||
| [content from ca.crt] | ||
| ``` | ||
|
|
||
| {{% /tab %}} | ||
|
|
||
| {{< /tabpane >}} | ||
|
|
||
| ## Setup TLS on the backend | ||
|
|
||
| Patch the existing quickstart backend to enable TLS. The patch will mount the TLS certificate secret into the backend as volume. | ||
|
|
@@ -159,7 +182,7 @@ Note: SectionName is an optional field that specifies the name of the port in th | |
| If the target is a [Backend] resource, the `sectionName` field should be set to the port number of the backend. | ||
|
|
||
| {{< tabpane text=true >}} | ||
| {{% tab header="Apply from stdin" %}} | ||
| {{% tab header="ConfigMap" %}} | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. curious why this changed
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. we need to support both ConfigMap/ClusterTrustBundle. TBH, that |
||
|
|
||
| ```shell | ||
| cat <<EOF | kubectl apply -f - | ||
|
|
@@ -184,11 +207,11 @@ EOF | |
| ``` | ||
|
|
||
| {{% /tab %}} | ||
| {{% tab header="Apply from file" %}} | ||
| Save and apply the following resource to your cluster: | ||
|
|
||
| ```yaml | ||
| --- | ||
| {{% tab header="ClusterTrustBundle" %}} | ||
|
|
||
| ```shell | ||
| cat <<EOF | kubectl apply -f - | ||
| apiVersion: gateway.networking.k8s.io/v1alpha3 | ||
| kind: BackendTLSPolicy | ||
| metadata: | ||
|
|
@@ -204,8 +227,9 @@ spec: | |
| caCertificateRefs: | ||
| - name: example-ca | ||
| group: '' | ||
| kind: ConfigMap | ||
| kind: ClusterTrustBundle | ||
| hostname: www.example.com | ||
| EOF | ||
| ``` | ||
|
|
||
| {{% /tab %}} | ||
|
|
||
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
is this valid ? will this command work ?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
it need users to handle the indentation correctly, I didn't figure out a easy way.