Updating ingress-nginx & cert-manager
This commit is contained in:
parent
1366298b0a
commit
7d9e0e9d94
|
|
@ -35,9 +35,11 @@ done
|
|||
|
||||
## helm repositories
|
||||
|
||||
|
||||
DEPRECATED. Helm repo will be listed for the individual apps.
|
||||
|
||||
```sh
|
||||
helm repo add stable https://kubernetes-charts.storage.googleapis.com
|
||||
helm repo add jetstack https://charts.jetstack.io
|
||||
helm repo add bitnami https://charts.bitnami.com/bitnami
|
||||
helm repo add k8s-land https://charts.k8s.land
|
||||
helm repo add mailu https://mailu.github.io/helm-charts/
|
||||
|
|
@ -46,18 +48,24 @@ helm repo update
|
|||
|
||||
## [ingress-controller](https://github.com/helm/charts/tree/master/stable/nginx-ingress)
|
||||
|
||||
Apply with helm-operator:
|
||||
Apply with helm:
|
||||
|
||||
```bash
|
||||
helm upgrade nginx-ingress stable/nginx-ingress -n nginx-ingress -f nginx-ingress/nginx-ingress.yaml
|
||||
k create ns ingress-nginx
|
||||
helm repo add ingress-nginx https://kubernetes.github.io/ingress-nginx
|
||||
helm repo update
|
||||
helm upgrade --install ingress-nginx ingress-nginx/ingress-nginx -n ingress-nginx -f ingress-nginx/ingress-nginx.yaml
|
||||
```
|
||||
|
||||
## [cert-manager](https://cert-manager.io/docs/tutorials/acme/ingress/)
|
||||
|
||||
Apply with helm-operator:
|
||||
Apply with helm:
|
||||
|
||||
```bash
|
||||
helm upgrade cert-manager jetstack/cert-manager -n cert-manager -f cert-manager/cert-manager.yaml
|
||||
kubectl create ns cert-manager
|
||||
helm repo add jetstack https://charts.jetstack.io
|
||||
helm repo update
|
||||
helm upgrade --install cert-manager jetstack/cert-manager -n cert-manager -f cert-manager/cert-manager.yaml
|
||||
# probably not even needed:
|
||||
$ kubectl apply -f https://raw.githubusercontent.com/jetstack/cert-manager/master/deploy/manifests/00-crds.yaml
|
||||
# this is required:
|
||||
|
|
|
|||
Loading…
Reference in New Issue