diff --git a/helm-charts/infisical-standalone-postgres/templates/infisical.yaml b/helm-charts/infisical-standalone-postgres/templates/infisical.yaml index fcfe4acee..4727e20fd 100644 --- a/helm-charts/infisical-standalone-postgres/templates/infisical.yaml +++ b/helm-charts/infisical-standalone-postgres/templates/infisical.yaml @@ -29,9 +29,9 @@ spec: affinity: {{- toYaml . | nindent 8 }} {{- end }} - {{- if $infisicalValues.imagePullSecrets }} + {{- if $infisicalValues.image.imagePullSecrets }} imagePullSecrets: - {{- toYaml $infisicalValues.imagePullSecrets | nindent 6 }} + {{- toYaml $infisicalValues.image.imagePullSecrets | nindent 6 }} {{- end }} {{- if $infisicalValues.autoDatabaseSchemaMigration }} initContainers: 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 06c00368f..40cd0bc9b 100644 --- a/helm-charts/infisical-standalone-postgres/templates/schema-migration-job.yaml +++ b/helm-charts/infisical-standalone-postgres/templates/schema-migration-job.yaml @@ -16,9 +16,9 @@ spec: app.kubernetes.io/instance: {{ .Release.Name | quote }} helm.sh/chart: "{{ .Chart.Name }}-{{ .Chart.Version }}" spec: - {{- if $infisicalValues.imagePullSecrets }} + {{- if $infisicalValues.image.imagePullSecrets }} imagePullSecrets: - {{- toYaml $infisicalValues.imagePullSecrets | nindent 6 }} + {{- toYaml $infisicalValues.image.imagePullSecrets | nindent 6 }} {{- end }} restartPolicy: OnFailure containers: diff --git a/helm-charts/infisical-standalone-postgres/values.yaml b/helm-charts/infisical-standalone-postgres/values.yaml index 2f1703fb9..3f43e4a61 100644 --- a/helm-charts/infisical-standalone-postgres/values.yaml +++ b/helm-charts/infisical-standalone-postgres/values.yaml @@ -14,7 +14,7 @@ infisical: repository: infisical/infisical tag: "v0.46.3-postgres" pullPolicy: IfNotPresent - imagePullSecrets: [] + imagePullSecrets: [] affinity: {} kubeSecretRef: "infisical-secrets" @@ -30,11 +30,11 @@ infisical: cpu: 350m ingress: - enabled: true + enabled: false hostName: "" ingressClassName: nginx nginx: - enabled: true + enabled: false annotations: {} tls: []