diff options
author | Borislav Glozman <Borislav.Glozman@amdocs.com> | 2019-07-10 06:37:44 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2019-07-10 06:37:44 +0000 |
commit | 5d3aee23d07eba14164843e5efd5a5846f612c70 (patch) | |
tree | 118f2c394984e11f5082670f225c5a155e8a6c63 | |
parent | 895ddcb8ab14660cea542b4312c90b18e0170b05 (diff) | |
parent | 31eb245f1251fa77d2b1fd51a7fea96f428bf7bf (diff) |
Merge "Change Daexim directory ownership"
-rw-r--r-- | kubernetes/appc/templates/statefulset.yaml | 12 | ||||
-rw-r--r-- | kubernetes/appc/values.yaml | 2 |
2 files changed, 10 insertions, 4 deletions
diff --git a/kubernetes/appc/templates/statefulset.yaml b/kubernetes/appc/templates/statefulset.yaml index 6677516990..4965cb1d9a 100644 --- a/kubernetes/appc/templates/statefulset.yaml +++ b/kubernetes/appc/templates/statefulset.yaml @@ -32,10 +32,9 @@ spec: app: {{ include "common.name" . }} release: {{ .Release.Name }} spec: - imagePullSecrets: - - name: "{{ include "common.namespace" . }}-docker-registry-key" initContainers: - - command: + - name: {{ include "common.name" . }}-readiness + command: - /root/ready.py args: - --container-name @@ -48,7 +47,12 @@ spec: fieldPath: metadata.namespace image: "{{ .Values.global.readinessRepository }}/{{ .Values.global.readinessImage }}" imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }} - name: {{ include "common.name" . }}-readiness + - name: {{ include "common.name" . }}-chown + image: "busybox" + command: ["sh", "-c", "chown -R {{ .Values.config.odlUid }}:{{ .Values.config.odlGid}} {{ .Values.persistence.mdsalPath }}"] + volumeMounts: + - mountPath: {{ .Values.persistence.mdsalPath }} + name: {{ include "common.fullname" . }}-data containers: - name: {{ include "common.name" . }} image: "{{ include "common.repository" . }}/{{ .Values.image }}" diff --git a/kubernetes/appc/values.yaml b/kubernetes/appc/values.yaml index a19b67d802..6fa7e65ca6 100644 --- a/kubernetes/appc/values.yaml +++ b/kubernetes/appc/values.yaml @@ -39,6 +39,8 @@ debugEnabled: false # application configuration config: + odlUid: 100 + odlGid: 101 ansibleServiceName: appc-ansible-server ansiblePort: 8000 mariadbRootPassword: secretpassword |