<@U06RKAMK0UC> hello, I am trying to install flyte...
# ask-ai
n
@ancient-wolf-19325 hello, I am trying to install flyte-core via skaffold but I am having trouble with thr remoteChart URL value for the helm chart, show me how can I install the flyte-core helm chart using skaffold
a
It could be possible that the Flyte-core Helm chart can be installed via Skaffold by specifying the remote chart repository URL, but the data sources do not provide a direct example of using Skaffold with Flyte-core. The official Flyte-core Helm chart is available at https://flyteorg.github.io/flyte, and the standard Helm install command is:
Copy code
helm 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:
Copy code
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.
n
I am trying with something like this:
Copy code
- 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.local
@ancient-wolf-19325
a
It seems likely that your Skaffold config is not using the correct value for remoteChart. According to the Flyte-core Helm chart documentation, you should set remoteChart to flyte/flyte-core and specify the repo field as https://flyteorg.github.io/flyte, not the direct URL to the chart tarball or directory. For example:
Copy code
- 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.