blob: 89cdf602beaafecbb3bb760b7c90a29d288f005c [file] [log] [blame]
{{- /*
# *****************************************************************************
#
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
#
# ******************************************************************************
*/ -}}
{{- if .Release.IsInstall -}}
apiVersion: v1
kind: ServiceAccount
metadata:
name: {{ include "step-certificates.fullname" . }}-config
namespace: {{.Release.Namespace}}
labels: {{ include "step-certificates.labels" . | nindent 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 -}}