Hello, Our org is using Flux to deploy Flyte with ...
# ask-the-community
f
Hello, Our org is using Flux to deploy Flyte with helm chart. In helm-charts/charts/ce-service-catalog/values.yaml
Copy code
flyte:
        enabled: false
        namespace: flyte
        helm:
          repositoryType: GitRepository
          releaseName: flyte
          repository: service-catalog
          chart: charts/flyte/flyte-v1.3.0-b5/
          revision: v1.3.0-b5
        valuesFiles:
          - charts/flyte/flyte-v1.3.0-b5/values-eks.yaml
Does it mean it will only use values-eks.yaml file but not the values.yaml file (in the same dir)?
d
@Frank Shen not sure how Flux handles this but
values-eks.yaml
contains EKS-relevant config that overrrides (if a parameter is set) or merges with (if a parameter is not present) with the base
values.yaml
f
Thanks @David Espejo (he/him)!