summaryrefslogtreecommitdiffstats
path: root/kubernetes/so/templates/_certificates.tpl
diff options
context:
space:
mode:
authorSylvain Desbureaux <sylvain.desbureaux@orange.com>2020-10-14 12:30:16 +0000
committerGerrit Code Review <gerrit@onap.org>2020-10-14 12:30:16 +0000
commit39bb1a03c8666eff92d3d8d7b9e1e2b45701fd10 (patch)
tree8bb34f6e9426b41ddf300cc6ee6f3b02e6d64472 /kubernetes/so/templates/_certificates.tpl
parentecae12ede2c6f88bd69f02499dc3c361c77f3516 (diff)
parent0df1f8ec5332651b5ce2731dd25ee2319f393b4f (diff)
Merge "[SO] move subcharts to components folder"
Diffstat (limited to 'kubernetes/so/templates/_certificates.tpl')
-rw-r--r--kubernetes/so/templates/_certificates.tpl32
1 files changed, 0 insertions, 32 deletions
diff --git a/kubernetes/so/templates/_certificates.tpl b/kubernetes/so/templates/_certificates.tpl
deleted file mode 100644
index 8bd25d27a1..0000000000
--- a/kubernetes/so/templates/_certificates.tpl
+++ /dev/null
@@ -1,32 +0,0 @@
-{{- define "so.certificate.container_importer" -}}
-- name: {{ include "common.name" . }}-certs-importer
- image: "{{ include "common.repository" . }}/{{ .Values.global.soBaseImage }}"
- imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
- command:
- - "/bin/sh"
- args:
- - "-c"
- - "update-ca-certificates --fresh && \
- cp -r {{ .Values.global.certificates.path }}/* /certificates"
- volumeMounts:
- - name: {{ include "common.name" . }}-certificates
- mountPath: /certificates
- - name: {{ include "common.name" . }}-onap-certificates
- mountPath: {{ .Values.global.certificates.share_path }}
-{{- end -}}
-
-{{- define "so.certificate.volume-mounts" -}}
-- name: {{ include "common.name" . }}-certificates
- mountPath: {{ .Values.global.certificates.path }}
-- name: {{ include "common.name" . }}-onap-certificates
- mountPath: {{ .Values.global.certificates.share_path }}
-{{- end -}}
-
-{{- define "so.certificate.volumes" -}}
-- name: {{ include "common.name" . }}-certificates
- emptyDir:
- medium: Memory
-- name: {{ include "common.name" . }}-onap-certificates
- secret:
- secretName: {{ include "common.secret.getSecretNameFast" (dict "global" . "uid" "so-onap-certs") }}
-{{- end -}}