Istio DNS Certificate Management

The following information describes an experimental feature, which is intendedfor evaluation purposes only.

By default, the DNS certificates used by the webhooks of Galley and the sidecarinjector are provisioned and managed by Citadel, which is a large componentthat maintains its own signing key and also acts as a CA for Istio.

In certain deployments, you may want to use your own certificate authorityinstead of Citadel. In those cases, Citadel ends up being used strictly forits DNS certificate provisioning functionality. Rather than having to deployCitadel at all in this case, you can instead leverage Chiron, a lightweightcomponent linked with Pilot that signs certificates using the Kubernetes CA APIs without maintaining its own private key.

This task shows how to provision and manage DNS certificates for Istio controlplane components through Chiron. Using this feature has the following advantages:

  • More lightweight than Citadel.

  • Unlike Citadel, this feature doesn’t require maintaining a private signing key, which enhances security.

  • Simplified root certificate distribution to TLS clients. Clients no longer need to wait for Citadel to generate and distribute its CA certificate.

Before you begin

  • Install Istio through istioctl with DNS certificates configured.The configuration is read when Pilot starts.
  1. $ cat <<EOF > ./istio.yaml
  2. apiVersion: install.istio.io/v1alpha2
  3. kind: IstioControlPlane
  4. spec:
  5. values:
  6. global:
  7. certificates:
  8. - secretName: dns.istio-galley-service-account
  9. dnsNames: [istio-galley.istio-system.svc, istio-galley.istio-system]
  10. - secretName: dns.istio-sidecar-injector-service-account
  11. dnsNames: [istio-sidecar-injector.istio-system.svc, istio-sidecar-injector.istio-system]
  12. EOF
  13. $ istioctl manifest apply -f ./istio.yaml
  • Install jq for validating the results from running the task.

DNS certificate provisioning and management

Istio provisions the DNS names and secret names for the DNS certificates based on configuration you provide.The DNS certificates provisioned are signed by the Kubernetes CA and stored in the secrets following your configuration.Istio also manages the lifecycle of the DNS certificates, including their rotations and regenerations.

Configure DNS certificates

The IstioControlPlane custom resource used to configure Istio in the istioctl manifest apply command, above,contains an example DNS certificate configuration. Within, the dnsNames field specifies the DNSnames in a certificate and the secretName field specifies the name of the Kubernetes secret used tostore the certificate and the key.

Check the provisioning of DNS certificates

After configuring Istio to generate DNS certificates and storing them in secretsof your choosing, you can verify that the certificates were provisioned and work properly.

To check that Istio generated the dns.istio-galley-service-account DNS certificate as configured in the example,and that the certificate contains the configured DNS names, you need to get the secret from Kubernetes, parse it,decode it, and view its text output with the following command:

  1. $ kubectl get secret dns.istio-galley-service-account -n istio-system -o json | jq -r '.data["cert-chain.pem"]' | base64 --decode | openssl x509 -in - -text -noout

The text output should include:

  1. X509v3 Subject Alternative Name:
  2. DNS:istio-galley.istio-system.svc, DNS:istio-galley.istio-system

Regenerating a DNS certificate

Istio can also regenerate DNS certificates that were mistakenly deleted. Next,we show how you can delete a recently configured certificate and verify Istio regenerates it automatically.

  • Delete the secret storing the DNS certificate configured earlier:
  1. $ kubectl delete secret dns.istio-galley-service-account -n istio-system
  • To check that Istio regenerated the deleted DNS certificate, and that the certificatecontains the configured DNS names, you need to get the secret from Kubernetes, parse it, decode it,and view its text output with the following command:
  1. $ kubectl get secret dns.istio-galley-service-account -n istio-system -o json | jq -r '.data["cert-chain.pem"]' | base64 --decode | openssl x509 -in - -text -noout

The output should include:

  1. X509v3 Subject Alternative Name:
  2. DNS:istio-galley.istio-system.svc, DNS:istio-galley.istio-system

See also

Change in Secret Discovery Service in Istio 1.3

Taking advantage of Kubernetes trustworthy JWTs to issue certificates for workload instances more securely.

Extending Istio Self-Signed Root Certificate Lifetime

Learn how to extend the lifetime of Istio self-signed root certificate.

Extending Self-Signed Certificate Lifetime

Learn how to extend the lifetime of the Istio self-signed root certificate.

DNS Certificate Management

Provision and manage DNS certificates in Istio.

Introducing the Istio v1beta1 Authorization Policy

Introduction, motivation and design principles for the Istio v1beta1 Authorization Policy.

Secure Webhook Management

A more secure way to manage Istio webhooks.