Last active
May 24, 2018 06:00
-
-
Save erikaulin/4498aa353620e9e62dc1b6711aa068d0 to your computer and use it in GitHub Desktop.
AKS helm nginx and cert-manager
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
# Install nginx-ingress | |
helm install \ | |
- name nginx-ingress \ | |
- set rbac.create=false \ | |
- set rbac.createRole=false \ | |
- set rbac.createClusterRole=false \ | |
stable/nginx-ingress | |
# Install cert-manager and set default issuer and kind. | |
helm install \ | |
--name cert-manager \ | |
--namespace kube-system \ | |
--set rbac.create=false \ | |
--set ingressShim.extraArgs='{--default-issuer-name=letsencrypt-prod,--default-issuer-kind=ClusterIssuer}' \ | |
stable/cert-manager |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment