Closed vijay-wandb closed 1 month ago
Description
Add support to pull MySQL credentials from Secrets when deploying CRD from yaml file.
helm-charts/charts/operator-wandb/values.yaml at main · wandb/helm-charts
mysql: host: "" port: 3306 database: "wandb_local" user: "wandb" password: ""
This can be the entire configuration like we do here or at least the password pulled from secrets. Ex. what can look like the password
env: - name: MYSQL_PASS valueFrom: secretKeyRef: name: mysql-data key: mysql-pass mysql: host: "" port: 3306 database: "wandb_local" user: "wandb" password: $(MYSQL_PASS)
https://github.com/wandb/helm-charts/pull/222
@jsbroks @danielpanzella - Can we please review the PR here, when you get a chance? Thanks.
Description
Add support to pull MySQL credentials from Secrets when deploying CRD from yaml file.
helm-charts/charts/operator-wandb/values.yaml at main · wandb/helm-charts
This can be the entire configuration like we do here or at least the password pulled from secrets. Ex. what can look like the password