diff --git a/.gitignore b/.gitignore index d907db2..ed4ae2d 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ -opencloud/Chart.lock \ No newline at end of file +opencloud/Chart.lock +deployed_config.sh \ No newline at end of file diff --git a/import_datas.sh b/import_datas.sh index b4d61d0..efcabf4 100755 --- a/import_datas.sh +++ b/import_datas.sh @@ -4,7 +4,7 @@ BRANCH=${2:-dev} export KUBECONFIG=$(realpath ./deployed_config) -POD_NAME=$(kubectl get pods --all-namespaces -o=name | grep dev-mongodb-*) +POD_NAME=$(kubectl get pods --all-namespaces -o=name | grep $BRANCH-mongodb-*) for file in "${FILES[@]}"; do echo "ADD file $file in collection ${file/.json/} : ${POD_NAME/pod\//}" kubectl cp $file ${POD_NAME/pod\//}:/tmp/$file diff --git a/opencloud/templates/openCloudConf.yaml b/opencloud/templates/openCloudConf.yaml index a691583..d13103c 100644 --- a/opencloud/templates/openCloudConf.yaml +++ b/opencloud/templates/openCloudConf.yaml @@ -13,7 +13,8 @@ data: OC_AUTH_CONNECTOR_PUBLIC_HOST: "{{ .Release.Name }}-hydra-public.{{ .Release.Namespace }}" OC_AUTH_CONNECTOR_PORT: "4444" OC_AUTH_CONNECTOR_ADMIN_PORT: "4445" - OC_PERMISSION_CONNECTOR_HOST: "{{ .Release.Name }}-keto-read.{{ .Release.Namespace }}" + OC_PERMISSION_CONNECTOR_READ_HOST: "{{ .Release.Name }}-keto-read.{{ .Release.Namespace }}" + OC_PERMISSION_CONNECTOR_WRITE_HOST: "{{ .Release.Name }}-keto-write.{{ .Release.Namespace }}" OC_PERMISSION_CONNECTOR_PORT: "80" OC_PERMISSION_CONNECTOR_ADMIN_PORT: "80" OC_LDAP_ENDPOINTS: "{{ .Release.Name }}-openldap.{{ .Release.Namespace }}.svc.cluster.local:389"