ingress-nginx-helm/docs/examples/auth/client-certs
AdamDang 712e243ff3
Typo fix: are be->are/to on->to
are be->are
to on->to
2018-06-01 08:56:28 +08:00
..
ingress.yaml Typo fix: are be->are/to on->to 2018-06-01 08:56:28 +08:00
README.md Updates and extends client cert documentation (#2105) 2018-02-16 07:17:29 -08:00

Client Certificate Authentication

It is possible to enable Client Certificate Authentication using additional annotations in the Ingress.

Setup instructions

  1. Create a file named ca.crt containing the trusted certificate authority chain (all ca certificates in PEM format) to verify client certificates.

  2. Create a secret from this file: kubectl create secret generic auth-tls-chain --from-file=ca.crt --namespace=default

  3. Add the annotations as provided in the ingress.yaml example to your ingress object.