From f776f3d5fa1a660bee24057e65625b62eedf382c Mon Sep 17 00:00:00 2001 From: Dusan Rozman Date: Mon, 18 Sep 2017 13:07:56 -0400 Subject: Added CLAMP containers to ONAP Kubernetes Added the initial deployment yamls for CLAMP and updated one-click Issue-ID: OOM-12 Change-Id: I48c842d77bf95ad53dcff9ab28edf542b1cb4bf5 Signed-off-by: Dusan Rozman --- .../clamp/templates/clamp-mariadb-deployment.yaml | 49 ++++++++++++++++++++++ 1 file changed, 49 insertions(+) create mode 100644 kubernetes/clamp/templates/clamp-mariadb-deployment.yaml (limited to 'kubernetes/clamp/templates/clamp-mariadb-deployment.yaml') diff --git a/kubernetes/clamp/templates/clamp-mariadb-deployment.yaml b/kubernetes/clamp/templates/clamp-mariadb-deployment.yaml new file mode 100644 index 0000000000..2f796258ac --- /dev/null +++ b/kubernetes/clamp/templates/clamp-mariadb-deployment.yaml @@ -0,0 +1,49 @@ +apiVersion: extensions/v1beta1 +kind: Deployment +metadata: + name: clamp-mariadb + namespace: "{{ .Values.nsPrefix }}-clamp" +spec: + replicas: 1 + selector: + matchLabels: + app: clamp-mariadb + template: + metadata: + labels: + app: clamp-mariadb + name: clamp-mariadb + spec: + hostname: clamp-mariadb + containers: + - args: + image: {{ .Values.image.mariadbImage }}:{{ .Values.image.mariadbVersion }} + imagePullPolicy: {{ .Values.pullPolicy }} + name: "clamp-mariadb" + env: + - name: MYSQL_ROOT_PASSWORD + value: {{ .Values.mysqlPassword }} + volumeMounts: + - mountPath: /docker-entrypoint-initdb.d + name: docker-entrypoint-initdb + - mountPath: /etc/mysql/conf.d + name: clamp-mariadb-conf + - mountPath: /var/lib/mysql + name: clamp-mariadb-data + readinessProbe: + tcpSocket: + port: 3306 + initialDelaySeconds: 5 + periodSeconds: 10 + volumes: + - name: docker-entrypoint-initdb + hostPath: + path: /dockerdata-nfs/{{ .Values.nsPrefix }}/clamp/mariadb/docker-entrypoint-initdb.d + - name: clamp-mariadb-conf + hostPath: + path: /dockerdata-nfs/{{ .Values.nsPrefix }}/clamp/mariadb/conf.d + - name: clamp-mariadb-data + persistentVolumeClaim: + claimName: clamp-db + imagePullSecrets: + - name: {{ .Values.nsPrefix }}-docker-registry-key -- cgit 1.2.3-korg