nice-baker-83329
09/26/2025, 8:08 AMancient-wolf-19325
09/26/2025, 8:08 AMhelm repo add flyte https://flyteorg.github.io/flyte
helm install -n flyte -f values-eks.yaml --create-namespace flyte flyte/flyte-core
To use Skaffold, you might need to define a helm deploy section in your skaffold.yaml like this:
deploy:
helm:
releases:
- name: flyte
remoteChart: flyte/flyte-core
repo: https://flyteorg.github.io/flyte
namespace: flyte
valuesFiles:
- values-eks.yaml
createNamespace: true
Though I'm not entirely certain, it might be that you need to ensure the repo field is set to the Flyte Helm repo URL and remoteChart is set to flyte/flyte-core. If you encounter issues, make sure your Skaffold and Helm versions are compatible and that the repo is reachable. The data sources do not provide a full Skaffold example, so some adaptation may be required.
Would you like more detail on troubleshooting Skaffold/Helm integration or on customizing the values file?
Sources:
- https://github.com/flyteorg/flyte/pull/1759
- https://github.com/flyteorg/flyte/pull/1366
Note: I wasn’t able to find highly relevant data sources, but above are a few potentially relevant links. 👍 0 button 👎 0 button 💡 Hint: Mention @runllm in the thread for followups.nice-baker-83329
09/26/2025, 8:11 AM- name: flyte
remoteChart: <https://flyteorg.github.io/flyte-core>
version: 1.16.1
# # upgradeOnChange: true
namespace: flyte
# dependsOn:
# - postgresql
# createNamespace: true
valuesFiles:
- alfred/flyte/values.yaml
# setValues:
# offchainDb.host: mysql.mysql.svc.cluster.localnice-baker-83329
09/26/2025, 8:13 AMancient-wolf-19325
09/26/2025, 8:13 AM- name: flyte
remoteChart: flyte/flyte-core
repo: https://flyteorg.github.io/flyte
version: 1.16.1
namespace: flyte
valuesFiles:
- alfred/flyte/values.yaml
The value you used, <https://flyteorg.github.io/flyte-core>, is not a valid chart reference for Helm or Skaffold. The correct approach is to use the chart name as published in the repo, and set the repo field accordingly. This matches the standard Helm install pattern documented for Flyte-core deployments, but the data sources do not provide a full Skaffold example—just the Helm chart usage and repo details.
Would you like more detail on how to structure your Skaffold config or on troubleshooting Helm chart resolution?
Sources:
- https://github.com/flyteorg/flyte/issues/5906 👍 0 button 👎 0 button 💡 Hint: Mention @runllm in the thread for followups.