Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

15 lines
390 B
YAML
Raw Normal View History

apiVersion: batch/v1
kind: Job
metadata:
name: {{ .Release.Name | quote }}
namespace: {{ .Release.Namespace | quote }}
spec:
template:
spec:
containers:
- name: test
image: "{{ .Values.image.repository }}:{{ .Values.image.tag }}"
command: ["sh"]
args: ["-c", "{{ .Values.runCommand }}"]
restartPolicy: {{ .Values.restartPolicy | quote }}