<@U06RKAMK0UC> We deploy flyte on GKE via the helm...
# ask-ai
f
@ancient-wolf-19325 We deploy flyte on GKE via the helm chart and I am trying to pass a secret value to flytepropeller so it can effectively set
--propeller.resourcemanager.redis.hostKey
but without needing to pass the value on the command line). Does flytepropeller support environment variables for adding on to the default config values? What would the equivalent environment variable be?
a
Flytepropeller does support setting environment variables for configuration. According to this GitHub issue, you can specify default environment variables in the Flyte Helm chart configuration. However, the exact environment variable equivalent for
--propeller.resourcemanager.redis.hostKey
is not explicitly mentioned in the provided data sources. You can set environment variables in the Helm chart by adding them under the
flytepropeller
section in your values file. Here’s an example of how to set an environment variable:
Copy code
flytepropeller:
  env:
    - name: FLYTE_PROPELLER_REDIS_HOST_KEY
      valueFrom:
        secretKeyRef:
          name: your-secret-name
          key: your-secret-key
Would you like more details on how to configure this in your Helm values file? Sources: - GitHub Issue #4968 👍 0 button 👎 1 button 💡 Hint: Mention @ancient-wolf-19325 in the thread for followups.