diff --git a/.github/workflows/helm_chart_cicd.yml b/.github/workflows/helm_chart_cicd.yml index ac494e7b..995dafcf 100644 --- a/.github/workflows/helm_chart_cicd.yml +++ b/.github/workflows/helm_chart_cicd.yml @@ -66,7 +66,7 @@ jobs: if: steps.list-changed.outputs.changed == 'true' - name: Run chart-testing (install) - run: ct install --chart-dirs infrastructure/ --config infrastructure/charts/ci-values.yml --debug + run: ct install --chart-dirs infrastructure/ --debug - name: Run chart-releaser uses: helm/chart-releaser-action@v1.2.1 diff --git a/infrastructure/charts/Chart.yaml b/infrastructure/charts/Chart.yaml index 99838048..61c063e7 100644 --- a/infrastructure/charts/Chart.yaml +++ b/infrastructure/charts/Chart.yaml @@ -5,7 +5,7 @@ type: application # This is the chart version. # Versions are expected to follow Semantic Versioning (https://semver.org/) -version: 0.2.0 +version: 0.2.1 # This is the version number of the application being deployed. appVersion: 0.0.1 @@ -22,7 +22,7 @@ maintainers: email: mateusz.filipowicz@roche.com dependencies: - name: indexer - version: 0.2.0 + version: 0.2.1 - name: postgresql version: 10.16.2 repository: https://charts.bitnami.com/bitnami diff --git a/infrastructure/charts/charts/indexer/Chart.yaml b/infrastructure/charts/charts/indexer/Chart.yaml index 67dd2fb4..aa2380f1 100644 --- a/infrastructure/charts/charts/indexer/Chart.yaml +++ b/infrastructure/charts/charts/indexer/Chart.yaml @@ -4,6 +4,6 @@ description: A Helm chart for Kubernetes type: application -version: 0.2.0 +version: 0.2.1 appVersion: "1.16.0" diff --git a/infrastructure/charts/charts/indexer/templates/deployment.yaml b/infrastructure/charts/charts/indexer/templates/deployment.yaml index 8c7c515c..5e2afce9 100644 --- a/infrastructure/charts/charts/indexer/templates/deployment.yaml +++ b/infrastructure/charts/charts/indexer/templates/deployment.yaml @@ -71,15 +71,15 @@ spec: readOnly: true {{- end }} {{- if .Values.global.postgresql.tlsSecret }} - - mountPath: /cnb/.postgresql/postgresql.pk8 + - mountPath: /home/cnb/.postgresql/postgresql.pk8 subPath: privateKey name: postgresql-tls readOnly: true - - mountPath: /cnb/.postgresql/postgresql.crt + - mountPath: /home/cnb/.postgresql/postgresql.crt subPath: cert name: postgresql-tls readOnly: true - - mountPath: /cnb/.postgresql/root.crt + - mountPath: /home/cnb/.postgresql/root.crt subPath: serverCACert name: postgresql-tls readOnly: true diff --git a/infrastructure/charts/ci-values.yml b/infrastructure/charts/ci-values.yml deleted file mode 100644 index 9ea9d18e..00000000 --- a/infrastructure/charts/ci-values.yml +++ /dev/null @@ -1,3 +0,0 @@ -global: - postgresql: - postgresqlPassword: ambassador \ No newline at end of file