Skip to content

Commit

Permalink
#none fixed storage config in docs (#138)
Browse files Browse the repository at this point in the history
  • Loading branch information
yindia authored Jul 10, 2021
1 parent ab171cd commit 81471f1
Showing 1 changed file with 19 additions and 13 deletions.
32 changes: 19 additions & 13 deletions flytectl/docs/source/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,8 @@ Basic Configuration
admin:
# For GRPC endpoints you might want to use dns:///flyte.myexample.com
endpoint: dns:///localhost:30081
insecure: true
authType: Pkce # if using authentication or just drop this. If insecure set insecure: True
insecure: false # insecure: True # Set to true if the endpoint isn't accessible through TLS/SSL connection (not recommended except on local sandbox deployment)
authType: Pkce # authType: Pkce # if using authentication or just drop this.
storage:
connection:
access-key: minio
Expand All @@ -76,12 +76,15 @@ Basic Configuration
admin:
# For GRPC endpoints you might want to use dns:///flyte.myexample.com
endpoint: dns:///<replace-me>
authType: Pkce # if using authentication or just drop this. If insecure set insecure: True
authType: Pkce # authType: Pkce # if using authentication or just drop this.
insecure: true # insecure: True # Set to true if the endpoint isn't accessible through TLS/SSL connection (not recommended except on local sandbox deployment)
storage:
kind: s3
config:
auth_type: iam
region: <replace> # Example: us-east-2
type: stow
stow:
kind: s3
config:
auth_type: iam
region: <REGION> # Example: us-east-2
container: <replace> # Example my-bucket. Flyte k8s cluster / service account for execution should have read access to this bucket
.. tab:: GCS Configuration
Expand All @@ -91,13 +94,16 @@ Basic Configuration
admin:
# For GRPC endpoints you might want to use dns:///flyte.myexample.com
endpoint: dns:///<replace-me>
authType: Pkce # if using authentication or just drop this. If insecure set insecure: True
authType: Pkce # authType: Pkce # if using authentication or just drop this.
insecure: false # insecure: True # Set to true if the endpoint isn't accessible through TLS/SSL connection (not recommended except on local sandbox deployment)
storage:
kind: google
config:
json: ""
project_id: <replace-me> # TODO: replace <project-id> with the GCP project ID
scopes: https://www.googleapis.com/auth/devstorage.read_write
type: stow
stow:
kind: s3
config:
json: ""
project_id: <replace-me> # TODO: replace <project-id> with the GCP project ID
scopes: https://www.googleapis.com/auth/devstorage.read_write
container: <replace> # Example my-bucket. Flyte k8s cluster / service account for execution should have access to this bucket
.. tab:: Others
Expand Down

0 comments on commit 81471f1

Please sign in to comment.