blob: 4fa3240963dc7ce1c39bca1cd65a27cc0d6e80e2 [file] [log] [blame]
{{- if .Release.IsInstall -}}
apiVersion: v1
kind: ServiceAccount
metadata:
name: {{ include "step-certificates.fullname" . }}-config
namespace: {{.Release.Namespace}}
labels:
{{ include "step-certificates.labels" . | indent 4 }}
---
apiVersion: batch/v1
kind: Job
metadata:
name: "{{.Release.Name}}"
labels:
{{ include "step-certificates.labels" . | indent 4 }}
spec:
template:
metadata:
name: "{{.Release.Name}}"
labels:
app.kubernetes.io/name: {{ include "step-certificates.name" . }}
app.kubernetes.io/instance: {{ .Release.Name }}
spec:
serviceAccountName: {{ include "step-certificates.fullname" . }}-config
restartPolicy: Never
volumes:
- name: bootstrap
configMap:
name: {{ include "step-certificates.fullname" . }}-bootstrap
containers:
- name: config
image: "{{ .Values.bootstrapImage.repository }}:{{ .Values.bootstrapImage.tag }}"
imagePullPolicy: {{ .Values.bootstrapImage.pullPolicy }}
command: ["/bin/sh", "/home/step/bootstrap/bootstrap.sh"]
volumeMounts:
- name: bootstrap
mountPath: /home/step/bootstrap
readOnly: true
{{- end -}}