-
Notifications
You must be signed in to change notification settings - Fork 25
Closed
8000
nginx/kubernetes-ingress#4252
nginx/kubernetes-ingress
#4252Description
we need to deploy nginx ingress. Howerver on openshift, there is a default controller that use default ports 80 & 443.
So we need to custom ports . in the chart helm, the parameters are not variable.
in template Breadcrumbsnginx-ingress-helm-operator/helm-charts/nginx-ingress/templates
/controller-daemonset.yaml
.....
{{ toYaml .Values.controller.lifecycle | indent 10 }}
{{- end }}
ports:
- name: http
containerPort: 80
hostPort: 80
- name: https
containerPort: 443
hostPort: 443
{{ if .Values.controller.customPorts }}
{{ toYaml .Values.controller.customPorts | indent 8 }}
....
can you change it as variable ?
Metadata
Metadata
Assignees
Labels
No labels