mirror of https://github.com/portainer/k8s.git
Merge 333455ecf3
into 143789a0bd
commit
6318657c38
|
@ -37,9 +37,15 @@ spec:
|
|||
image: "{{ .Values.image.repository }}:{{ .Values.image.tag }}"
|
||||
imagePullPolicy: {{ .Values.image.pullPolicy }}
|
||||
{{- end }}
|
||||
{{- if (and (eq .Values.service.type "NodePort") (not (empty .Values.service.edgeNodePort))) }}
|
||||
args: [ '--tunnel-port','{{ .Values.service.edgeNodePort }}' ]
|
||||
{{- end }}
|
||||
args:
|
||||
{{- if (and (eq .Values.service.type "NodePort") (not (empty .Values.service.edgeNodePort))) }}
|
||||
- '--tunnel-port'
|
||||
- '{{ .Values.service.edgeNodePort }}'
|
||||
{{- end }}
|
||||
{{- if (not (empty .Values.admin.password)) }}
|
||||
- '--admin-password'
|
||||
- '{{ .Values.admin.password }}'
|
||||
{{- end }}
|
||||
volumeMounts:
|
||||
- name: data
|
||||
mountPath: /data
|
||||
|
|
|
@ -4,6 +4,10 @@
|
|||
|
||||
replicaCount: 1
|
||||
|
||||
admin:
|
||||
user: admin
|
||||
password:
|
||||
|
||||
# If enterpriseEdition is enabled, then use the values below _instead_ of those in .image
|
||||
enterpriseEdition:
|
||||
enabled: false
|
||||
|
|
Loading…
Reference in New Issue