mirror of https://git.rancher.io/charts
67 lines
2.2 KiB
YAML
67 lines
2.2 KiB
YAML
apiVersion: batch/v1
|
|
kind: Job
|
|
metadata:
|
|
name: istioctl-installer
|
|
namespace: {{ template "istio.namespace" . }}
|
|
annotations:
|
|
"helm.sh/hook": post-install,post-upgrade
|
|
"helm.sh/hook-weight": "-5"
|
|
"helm.sh/hook-delete-policy": before-hook-creation,hook-succeeded
|
|
spec:
|
|
backoffLimit: 1
|
|
template:
|
|
spec:
|
|
{{- if .Values.installer.releaseMirror.enabled }}
|
|
hostAliases:
|
|
- ip: "127.0.0.1"
|
|
hostnames:
|
|
- "github.com"
|
|
{{- end }}
|
|
containers:
|
|
- name: istioctl-installer
|
|
image: {{ template "system_default_registry" . }}{{ .Values.installer.repository }}:{{ .Values.installer.tag }}
|
|
env:
|
|
- name: RELEASE_NAME
|
|
value: {{ .Release.Name }}
|
|
- name: ISTIO_NAMESPACE
|
|
value: {{ template "istio.namespace" . }}
|
|
- name: FORCE_INSTALL
|
|
value: {{ .Values.forceInstall | default "false" | quote }}
|
|
- name: RELEASE_MIRROR_ENABLED
|
|
value: {{ .Values.installer.releaseMirror.enabled | quote }}
|
|
- name: SECONDS_SLEEP
|
|
value: {{ .Values.installer.debug.secondsSleep | quote}}
|
|
command: ["/bin/sh","-c"]
|
|
args: ["/usr/local/app/scripts/run.sh"]
|
|
volumeMounts:
|
|
- name: config-volume
|
|
mountPath: /app/istio-base.yaml
|
|
subPath: istio-base.yaml
|
|
{{- if .Values.overlayFile }}
|
|
- name: overlay-volume
|
|
mountPath: /app/overlay-config.yaml
|
|
subPath: overlay-config.yaml
|
|
{{- end }}
|
|
volumes:
|
|
- name: config-volume
|
|
configMap:
|
|
name: istio-installer-base
|
|
{{- if .Values.overlayFile }}
|
|
- name: overlay-volume
|
|
configMap:
|
|
name: istio-installer-overlay
|
|
{{- end }}
|
|
serviceAccountName: istio-installer
|
|
nodeSelector: {{ include "linux-node-selector" . | nindent 8 }}
|
|
{{- if .Values.nodeSelector }}
|
|
{{ toYaml .Values.nodeSelector | indent 8 }}
|
|
{{- end }}
|
|
tolerations: {{ include "linux-node-tolerations" . | nindent 8 }}
|
|
{{- if .Values.tolerations }}
|
|
{{ toYaml .Values.tolerations | indent 8 }}
|
|
{{- end }}
|
|
securityContext:
|
|
runAsUser: 499
|
|
runAsGroup: 487
|
|
restartPolicy: Never
|