https://rancher.com/ logo
Title
t

thankful-midnight-89472

02/08/2023, 7:57 PM
Hello, I'm new to Rancher Desktop. I'm trying to follow https://github.com/getredash/contrib-helm-chart, but I don't understand what I need to do here:Create a values file with required secrets (store this securely!):
$ cat > my-values.yaml <<- EOM
redash:
  cookieSecret: $(openssl rand -base64 32)
  secretKey: $(openssl rand -base64 32)
postgresql:
  postgresqlPassword: $(openssl rand -base64 32)
redis:
  password: $(openssl rand -base64 32)
EOM
q

quick-keyboard-83126

02/08/2023, 11:30 PM
We would store the equivalent content using bitnami-labs's sealed-secrets (although I don't think we'd be able to do that using a helm yaml...)
but roughly that command creates a file. and then you can run the next command which consumes the file. they're just noting that the file has credentials, which are things you shouldn't leave lying around