SbloodyS commented on code in PR #18123:
URL:
https://github.com/apache/dolphinscheduler/pull/18123#discussion_r3031540744
##########
deploy/kubernetes/dolphinscheduler/values.yaml:
##########
@@ -56,27 +62,29 @@ datasource:
postgresql:
# -- If not exists external PostgreSQL, by default, the DolphinScheduler
will use a internal PostgreSQL
enabled: true
- # -- The username for internal PostgreSQL
- postgresqlUsername: "root"
- # -- The password for internal PostgreSQL
- postgresqlPassword: "root"
- # -- The database for internal PostgreSQL
- postgresqlDatabase: "dolphinscheduler"
# -- The driverClassName for internal PostgreSQL
driverClassName: "org.postgresql.Driver"
# -- The params for internal PostgreSQL
params: "characterEncoding=utf8"
- persistence:
- # -- Set postgresql.persistence.enabled to true to mount a new volume for
internal PostgreSQL
- enabled: false
- # -- `PersistentVolumeClaim` size
- size: "20Gi"
- # -- PostgreSQL data persistent volume storage class. If set to "-",
storageClassName: "", which disables dynamic provisioning
- storageClass: "-"
+ auth:
+ # -- The username for internal PostgreSQL
+ username: "root"
+ # -- The password for internal PostgreSQL
+ password: "root"
+ # -- The database for internal PostgreSQL
+ database: "dolphinscheduler"
+ primary:
+ persistence:
+ # -- Set postgresql.primary.persistence.enabled to true to mount a new
volume for internal PostgreSQL
+ enabled: false
+ # -- `PersistentVolumeClaim` size
+ size: "20Gi"
+ # -- PostgreSQL data persistent volume storage class. If set to "-",
storageClassName: "", which disables dynamic provisioning
+ storageClass: "-"
image:
registry: docker.io
repository: bitnamilegacy/postgresql
Review Comment:
The docker image still exists in
https://hub.docker.com/r/bitnamilegacy/postgresql/tags. Since the version of
postgresql we currently support is older, we can't use the latest version.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]