New RunLLM response generated: >>>*# Question* Li...
# runllm-flyte-trial
a
New RunLLM response generated: >>>*# Question* Like Here: storage: # metadataContainer Bucket to store Flyte metadata metadataContainer: "my-organization-flyte-container" # userDataContainer Bucket to store Flyte user data userDataContainer: "my-organization-flyte-container" # provider Object store provider (Supported values: s3, gcs) provider: s3 # Answer To configure Flyte storage with separate buckets for metadata and user data, you can use the
storage
configuration section in the Flyte values YAML file. Here's an example configuration:
Copy code
storage:
  # metadataContainer Bucket to store Flyte metadata
  metadataContainer: "my-organization-flyte-metadata-container"
  # userDataContainer Bucket to store Flyte user data
  userDataContainer: "my-organization-flyte-userdata-container"
  # provider Object store provider (Supported values: s3, gcs)
  provider: s3
  providerConfig:
    s3:
      region: "us-east-1"
      authType: "iam"
This configuration specifies separate S3 buckets for Flyte metadata and user data, and sets the provider to S3 with IAM authentication. Would you like more detail? Sources: - Flyte values.yaml - Flyte Issue #4291 Slack Link https://flyte-org.slack.com/archives/CP2HDHKE1/p1720694512.023869 👍 0 button 👎 0 button 💡 Hint: Mention @runllm in the thread for followups.