Skip to content

Commit

Permalink
refactor: Update external database configuration in HelmChart
Browse files Browse the repository at this point in the history
This code change updates the external database configuration in the HelmChart. It adds support for using an existing secret for the password instead of directly specifying the password. This modification enhances security and allows for easier management of the database credentials.
  • Loading branch information
simlarsen committed Jun 7, 2024
1 parent babbf5f commit b1dba73
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions HelmChart/Public/oneuptime/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ externalPostgres:
port:
username:
password:
# If you're using existing secret for the password, please use this instead of password.
# If you're using an existing secret for the password, please use this instead of password.
existingSecret:
name:
# This is the key in the secret where the password is stored.
Expand Down Expand Up @@ -170,7 +170,7 @@ externalRedis:
host:
port:
password:
# If you're using existing secret for the password, please use this instead of password.
# If you're using an existing secret for the password, please use this instead of password.
existingSecret:
name:
# This is the key in the secret where the password is stored.
Expand Down Expand Up @@ -203,7 +203,7 @@ externalClickhouse:
port:
username:
password:
# If you're using existing secret for the password, please use this instead of password.
# If you're using an existing secret for the password, please use this instead of password.
existingSecret:
name:
# This is the key in the secret where the password is stored.
Expand Down
6 changes: 3 additions & 3 deletions HelmChart/Public/oneuptime/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -275,7 +275,7 @@ externalPostgres:
port:
username:
password:
# If you're using existing secret for the password, please use this instead of password.
# If you're using an existing secret for the password, please use this instead of password.
existingSecret:
name:
# This is the key in the secret where the password is stored.
Expand All @@ -297,7 +297,7 @@ externalRedis:
port:
username:
password:
# If you're using existing secret for the password, please use this instead of password.
# If you're using an existing secret for the password, please use this instead of password.
existingSecret:
name:
# This is the key in the secret where the password is stored.
Expand All @@ -321,7 +321,7 @@ externalClickhouse:
port:
username:
password:
# If you're using existing secret for the password, please use this instead of password.
# If you're using an existing secret for the password, please use this instead of password.
existingSecret:
name:
# This is the key in the secret where the password is stored.
Expand Down

0 comments on commit b1dba73

Please sign in to comment.