Skip to content

feat: adding auth mode md5 in postgres #298

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Apr 11, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions charts/devtron-essentials/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@ sources:
- https://github.com/argoproj/argo-helm
- https://helm.devtron.ai
- https://github.com/groundhog2k/helm-charts/blob/postgres-0.3.17/charts/postgres/values.yaml
version: 0.0.8
version: 0.0.9
appVersion: "0.0.2"
dependencies:
- name: postgres
version: "0.3.17"
repository: https://groundhog2k.github.io/helm-charts/
repository: https://groundhog2k.github.io/helm-charts
condition: postgresql.enabled
alias: postgresql
- name: argo-cd
Expand Down
6 changes: 4 additions & 2 deletions charts/devtron-essentials/app-values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ argo-cd:
customSelectorLabels: {}
# devtron.ai/custom-labels : argo-cd
crds:
install: false #if you are upgrading make it as false
install: true #if you are upgrading make it as false
keep: true

applicationSet:
Expand Down Expand Up @@ -314,8 +314,10 @@ postgresql:
nodeSelector: {}
resources: {}
settings:
superuser: ""
superuser: "postgres"
superuserPassword: change-password
authMethod: md5
initDbArgs: --auth-local=md5
storage:
className: ""
persistentVolumeClaimName: ""
Expand Down
6 changes: 4 additions & 2 deletions charts/devtron-essentials/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ argo-cd:
customSelectorLabels: {}
# devtron.ai/custom-labels : argo-cd
crds:
install: false #if you are upgrading make it as false
install: true #if you are upgrading make it as false
keep: true

applicationSet:
Expand Down Expand Up @@ -314,8 +314,10 @@ postgresql:
nodeSelector: {}
resources: {}
settings:
superuser: ""
superuser: "postgres"
superuserPassword: change-password
authMethod: md5
initDbArgs: --auth-local=md5
storage:
className: ""
persistentVolumeClaimName: ""
Expand Down
Loading