New RunLLM response generated: >>>*# Question* Hi...
# runllm-flyte-trial
a
New RunLLM response generated: >>>*# Question* Hi everyone, I'm curious if anyone has tried using Flyte on AKS. In the Helm values, the storage.provider field comments indicate that the supported values are s3 and gcs. Does this mean that Azure Blob Storage is not supported? # Answer Azure Blob Storage is supported in Flyte, but it requires additional configuration via the
stow
library. The default Helm values indeed list
s3
and
gcs
as supported storage providers, but you can configure Azure Blob Storage by setting
storage.type
to
custom
and providing the necessary Azure-specific configurations. Here is an example configuration for Azure Blob Storage:
Copy code
storage:
  type: custom
  bucketName: "<CONTAINER_NAME>"
  custom:
    container: "<CONTAINER_NAME>"
    enable-multicontainer: true
    connection: {}
    type: stow
    stow:
      kind: azure
      config:
        account: "<STORAGE_ACCOUNT_NAME>"
        key: "<STORAGE_ACCOUNT_KEY>"
Would you like more details on setting up Flyte with Azure Blob Storage? Sources: - Support Azure Cloud Provider (via Stow) - Discussion on setting up Azure Blob Storage Slack Link https://flyte-org.slack.com/archives/CP2HDHKE1/p1720694479.197309 👍 0 button 👎 0 button 💡 Hint: Mention @runllm in the thread for followups.