wandb / helm-charts

Our official helm charts for deploying wandb into k8s
MIT License
18 stars 8 forks source link

feat: Support to pull Redis credentials from secrets in the CR #223

Closed velotioaastha closed 3 weeks ago

velotioaastha commented 1 month ago

Added support to pull REDIS entire configuration from secrets from Secrets when deploying CRD from yaml file. Secret should look like this :

kind: Secret
metadata:
  name: my-redis-secret
type: Opaque
data:
  REDIS_PASSWORD: bXlwYXNzd29yZA==   
  REDIS_CA_CERT: bXljYQ== 
  REDIS_PORT: NjM3OQ==
  REDIS_HOST: bXlyaWRpcy5leGFtcGxlLmNvbQ==
danielpanzella commented 3 weeks ago

@velotioaastha The only way I could figure out how I wanted this implemented was to implement it myself. See https://github.com/wandb/helm-charts/pull/229