diff --git a/helm-charts/infisical-standalone-postgres/Chart.yaml b/helm-charts/infisical-standalone-postgres/Chart.yaml index 31326d809c..812856a1e7 100644 --- a/helm-charts/infisical-standalone-postgres/Chart.yaml +++ b/helm-charts/infisical-standalone-postgres/Chart.yaml @@ -7,7 +7,7 @@ type: application # This is the chart version. This version number should be incremented each time you make changes # to the chart and its templates, including the app version. # Versions are expected to follow Semantic Versioning (https://semver.org/) -version: 1.0.7 +version: 1.0.8 # This is the version number of the application being deployed. This version number should be # incremented each time you make changes to the application. Versions are not expected to diff --git a/helm-charts/infisical-standalone-postgres/templates/infisical.yaml b/helm-charts/infisical-standalone-postgres/templates/infisical.yaml index 6c022c0058..4727e20fd6 100644 --- a/helm-charts/infisical-standalone-postgres/templates/infisical.yaml +++ b/helm-charts/infisical-standalone-postgres/templates/infisical.yaml @@ -29,6 +29,10 @@ spec: affinity: {{- toYaml . | nindent 8 }} {{- end }} + {{- if $infisicalValues.image.imagePullSecrets }} + imagePullSecrets: + {{- toYaml $infisicalValues.image.imagePullSecrets | nindent 6 }} + {{- end }} {{- if $infisicalValues.autoDatabaseSchemaMigration }} initContainers: - name: "migration-init" diff --git a/helm-charts/infisical-standalone-postgres/templates/schema-migration-job.yaml b/helm-charts/infisical-standalone-postgres/templates/schema-migration-job.yaml index d504d51aa2..40cd0bc9b9 100644 --- a/helm-charts/infisical-standalone-postgres/templates/schema-migration-job.yaml +++ b/helm-charts/infisical-standalone-postgres/templates/schema-migration-job.yaml @@ -16,6 +16,10 @@ spec: app.kubernetes.io/instance: {{ .Release.Name | quote }} helm.sh/chart: "{{ .Chart.Name }}-{{ .Chart.Version }}" spec: + {{- if $infisicalValues.image.imagePullSecrets }} + imagePullSecrets: + {{- toYaml $infisicalValues.image.imagePullSecrets | nindent 6 }} + {{- end }} restartPolicy: OnFailure containers: - name: infisical-schema-migration diff --git a/helm-charts/infisical-standalone-postgres/values.yaml b/helm-charts/infisical-standalone-postgres/values.yaml index d4297ebdaf..3f43e4a61c 100644 --- a/helm-charts/infisical-standalone-postgres/values.yaml +++ b/helm-charts/infisical-standalone-postgres/values.yaml @@ -14,6 +14,7 @@ infisical: repository: infisical/infisical tag: "v0.46.3-postgres" pullPolicy: IfNotPresent + imagePullSecrets: [] affinity: {} kubeSecretRef: "infisical-secrets" @@ -29,11 +30,11 @@ infisical: cpu: 350m ingress: - enabled: true + enabled: false hostName: "" ingressClassName: nginx nginx: - enabled: true + enabled: false annotations: {} tls: []