diff options
author | Dusan Rozman <dusan.rozman@amdocs.com> | 2017-09-18 13:07:56 -0400 |
---|---|---|
committer | Dusan Rozman <dusan.rozman@amdocs.com> | 2017-09-20 09:29:27 -0400 |
commit | f776f3d5fa1a660bee24057e65625b62eedf382c (patch) | |
tree | 64eac5edfd1bb42b0b83a0ceb42bc92f8bf026a7 /kubernetes/clamp/templates/clamp-mariadb-deployment.yaml | |
parent | ced477af63cd1453f189dd4352e3e1dd6bf7658c (diff) |
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 <dusan.rozman@amdocs.com>
Diffstat (limited to 'kubernetes/clamp/templates/clamp-mariadb-deployment.yaml')
-rw-r--r-- | kubernetes/clamp/templates/clamp-mariadb-deployment.yaml | 49 |
1 files changed, 49 insertions, 0 deletions
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 |