From d32d36e3219cc0f17e2fe81e6ac50866e4025140 Mon Sep 17 00:00:00 2001 From: Mike Elliott Date: Mon, 12 Feb 2018 15:54:03 -0500 Subject: Add standardized helm chart for so This is a standardization (based on helm community best practices) of a Helm chart for the Service Orchestrator (so) in ONAP. How to deploy the so chart (outside of the parent onap chart) from the local oom/kubernetes codebase. ** need to create/update dependencies defined in the chart's ** requirements.yaml helm dep update so/ ** deploy the so helm chart with the "release" name of 'onap' helm install so/ -n onap Change-Id: I22471eb9fe0dec32941e14dc63857222c80ebe20 Issue-ID: OOM-727 Signed-off-by: Mike Elliott --- kubernetes/so/charts/mariadb/templates/pv.yaml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 kubernetes/so/charts/mariadb/templates/pv.yaml (limited to 'kubernetes/so/charts/mariadb/templates/pv.yaml') diff --git a/kubernetes/so/charts/mariadb/templates/pv.yaml b/kubernetes/so/charts/mariadb/templates/pv.yaml new file mode 100644 index 0000000000..e03879f119 --- /dev/null +++ b/kubernetes/so/charts/mariadb/templates/pv.yaml @@ -0,0 +1,20 @@ +{{- if and .Values.persistence.enabled (not .Values.persistence.existingClaim) -}} +kind: PersistentVolume +apiVersion: v1 +metadata: + name: {{ include "common.fullname" . }} + namespace: {{ include "common.namespace" . }} + labels: + app: {{ include "common.fullname" . }} + chart: "{{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}" + release: "{{ .Release.Name }}" + heritage: "{{ .Release.Service }}" +spec: + capacity: + storage: {{ .Values.persistence.size}} + accessModes: + - {{ .Values.persistence.accessMode }} + persistentVolumeReclaimPolicy: {{ .Values.persistence.volumeReclaimPolicy }} + hostPath: + path: {{ .Values.global.persistence.mountPath | default .Values.persistence.mountPath }}/{{ .Release.Name }}/{{ .Values.persistence.mountSubPath }} +{{- end -}} \ No newline at end of file -- cgit 1.2.3-korg