Change Daexim directory ownership 15/90415/1
authorTaka Cho <takamune.cho@att.com>
Tue, 25 Jun 2019 01:10:50 +0000 (21:10 -0400)
committerTaka Cho <takamune.cho@att.com>
Tue, 25 Jun 2019 01:13:28 +0000 (21:13 -0400)
In k8s env, daexim has to be changed
to 100:101

Issue-ID: APPC-1627
Change-Id: Iea20a6b3b8cf14a09ca5fc52aa3d6a71534acaaa
Signed-off-by: Taka Cho <takamune.cho@att.com>
kubernetes/appc/templates/statefulset.yaml
kubernetes/appc/values.yaml

index 6677516..4965cb1 100644 (file)
@@ -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 }}"
index a19b67d..6fa7e65 100644 (file)
@@ -39,6 +39,8 @@ debugEnabled: false
 
 # application configuration
 config:
+  odlUid: 100
+  odlGid: 101
   ansibleServiceName: appc-ansible-server
   ansiblePort: 8000
   mariadbRootPassword: secretpassword