-
Notifications
You must be signed in to change notification settings - Fork 603
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs(kic): add upstream TLS verification guide
- Loading branch information
Showing
6 changed files
with
456 additions
and
14 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -258,6 +258,7 @@ Github | |
glibc | ||
globbing | ||
Gluu | ||
goecho | ||
gojira | ||
Golang | ||
Goroutine | ||
|
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,13 @@ | ||
{:.note} | ||
> CA certificates in Kong are provisioned by creating a `Secret` resource in Kubernetes. CA certificate secrets must | ||
> have the following properties: | ||
> - the `konghq.com/ca-cert: "true"` label applied. | ||
> - a`cert` data property which contains a valid CA certificate in PEM format. | ||
> - a `kubernetes.io/ingress.class` annotation whose value matches the value of the controller's `--ingress-class` | ||
argument. By default, that value is `kong`. | ||
> - an `id` data property which contains a random UUID. | ||
> | ||
> Each CA certificate that you create needs a unique ID. Any random UUID should suffice here and it doesn't have a | ||
> security implication. You can use [uuidgen](https://linux.die.net/man/1/uuidgen) (Linux, OS X) | ||
> or [New-Guid](https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.utility/new-guid) (Windows) to | ||
> generate an ID. |
Oops, something went wrong.