diff options
author | Alexis de Talhouƫt <alexis.de_talhouet@bell.ca> | 2018-02-07 15:45:58 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2018-02-07 15:45:58 +0000 |
commit | ce7844b207021251ec76a5aa5d7b8c1de3555a12 (patch) | |
tree | a450296c8d8ee9a735f10fdb3d389d27de7e7095 /kubernetes/vid/templates/vid-mariadb-deployment.yaml | |
parent | 18c2dbcdf7904d6a4030efa141fe232009362800 (diff) | |
parent | 46bec904421416cf78a6907d23e4ce40fcff51e5 (diff) |
Merge "config seg vid deployment"
Diffstat (limited to 'kubernetes/vid/templates/vid-mariadb-deployment.yaml')
-rw-r--r-- | kubernetes/vid/templates/vid-mariadb-deployment.yaml | 23 |
1 files changed, 14 insertions, 9 deletions
diff --git a/kubernetes/vid/templates/vid-mariadb-deployment.yaml b/kubernetes/vid/templates/vid-mariadb-deployment.yaml index 55ef5da872..758ee578f0 100644 --- a/kubernetes/vid/templates/vid-mariadb-deployment.yaml +++ b/kubernetes/vid/templates/vid-mariadb-deployment.yaml @@ -36,9 +36,11 @@ spec: - mountPath: /var/lib/mysql name: vid-mariadb-data - mountPath: /docker-entrypoint-initdb.d/vid-pre-init.sql - name: vid-pre-init + name: vid-lfconfig + subPath: vid-pre-init.sql - mountPath: /etc/mysql/my.cnf - name: my-cnf + name: vid-lfconfig + subPath: my.cnf ports: - containerPort: 3306 readinessProbe: @@ -53,12 +55,15 @@ spec: - name: vid-mariadb-data persistentVolumeClaim: claimName: vid-db - - name: vid-pre-init - hostPath: - path: /dockerdata-nfs/{{ .Values.nsPrefix }}/vid/vid/lf_config/vid-pre-init.sql - - name: my-cnf - hostPath: - path: /dockerdata-nfs/{{ .Values.nsPrefix }}/vid/vid/lf_config/vid-my.cnf + - name: vid-lfconfig + configMap: + name: vid-lfconfig-configmap + defaultMode: 0755 + items: + - key: vid-my.cnf + path: my.cnf + - key: vid-pre-init.sql + path: vid-pre-init.sql imagePullSecrets: - name: "{{ .Values.nsPrefix }}-docker-registry-key" -#{{ end }}
\ No newline at end of file +#{{ end }} |