Difference between revisions of "Helm install nginx-ingress"
Jump to navigation
Jump to search
(4 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
+ | * [[helm install nginx]] | ||
+ | * [[helm install ingress-nginx]] | ||
− | |||
− | |||
== Commands == | == Commands == | ||
− | |||
[[kubectl get svc]] | [[kubectl get svc]] | ||
[[kubectl describe configmap my-ingress-nginx-controller]] | [[kubectl describe configmap my-ingress-nginx-controller]] | ||
[[helm get values nginx-ingress -n nginx-ingress]] | [[helm get values nginx-ingress -n nginx-ingress]] | ||
− | kubectl get ingressclass | + | [[kubectl get ingressclass]] |
NAME CONTROLLER PARAMETERS AGE | NAME CONTROLLER PARAMETERS AGE | ||
nginx [[nginx.org/ingress-controller]] <none> 36s | nginx [[nginx.org/ingress-controller]] <none> 36s | ||
Line 40: | Line 39: | ||
== See also == | == See also == | ||
+ | * {{helm install nginx}} | ||
* {{nginx-ingress}} | * {{nginx-ingress}} | ||
[[Category:Nginx]] | [[Category:Nginx]] |
Latest revision as of 12:07, 20 March 2024
Contents
Commands[edit]
kubectl get svc kubectl describe configmap my-ingress-nginx-controller helm get values nginx-ingress -n nginx-ingress
kubectl get ingressclass NAME CONTROLLER PARAMETERS AGE nginx nginx.org/ingress-controller <none> 36s
helm install ingress-nginx (kubernetes.github.io) helm install nginx-ingress, helm install my-release oci://ghcr.io/nginxinc/charts/nginx-ingress --version 1.1.2
resource "helm_release" "nginx-ingress" { name = "nginx-ingress" namespace = "nginx-ingress" chart = "oci://ghcr.io/nginxinc/charts/nginx-ingress" }
ConfigMap[edit]
apiVersion: v1 kind: ConfigMap metadata: name: nginx-config namespace: nginx-ingress data: proxy-protocol: "True" real-ip-header: "proxy_protocol" set-real-ip-from: "0.0.0.0/0"
Related[edit]
See also[edit]
Advertising: