Thomas Kobber Panum
12/16/2022, 10:35 AMstorage.type: custom
and storage.custom: {}
to make Stow use Azure Blob Storage (non-S3 compatible). Does anyone have an example of using storage.type: custom
correctly?Nick Müller (MorpheusXAUT)
12/16/2022, 10:55 AMstorage:
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>"
Thomas Kobber Panum
12/16/2022, 11:18 AMcontainer: "<CONTAINER_NAME>"
enable-multicontainer: true
connection: {}
They made the deployment progress 😌Ketan (kumare3)
Nick Müller (MorpheusXAUT)
12/19/2022, 7:58 AMThomas Kobber Panum
12/19/2022, 12:15 PMvalues.yaml
for AKS. I tried (to the best of my ability) to adopt values-eks.yaml
to Azure, but now I am stuck again, facing an issue where gRPC connections are forcely closed, like described here. I use an nginx ingress controller, but issuing flytectl get projects --admin.insecureSkipVerify --logger.level=10
yields me with a {"json":{"src":"client.go:183"},"level":"error","msg":"failed to initialize token source provider. Err: failed to fetch auth metadata. Error: rpc error: code = Unavailable desc = connection closed","ts":"2022-12-19T13:08:42+01:00"}
😞
Any ideas what could be the cause, @Nick Müller (MorpheusXAUT)?insecureSkipVerify: true
in config.yaml
seems to have solved it for now.Nick Müller (MorpheusXAUT)
12/19/2022, 12:30 PMvalues.yaml
of our complete setup a bit later this afternoon, will take a bit to put together since we use some extra templating on top of the public helm chart. will let you know @Thomas Kobber PanumThomas Kobber Panum
12/19/2022, 12:46 PMKetan (kumare3)
Nick Müller (MorpheusXAUT)
12/19/2022, 4:03 PMThomas Kobber Panum
12/20/2022, 8:40 AMNick Müller (MorpheusXAUT)
12/20/2022, 4:36 PM/
in the filenames, they have two spaces now to show a folder/file structurevalues.yaml
in that gist is used to overwrite the default values.yaml
from flyte's helm chart. we have modified the chart a bit to our needs (e.g. adding imagepullsecrets since we're using private-built flyte images), I've tried to include everything that's relevant in that gist as wellIngressRoute
, but that still allows us to connect to our clusters via SSL without having to set insecureSkipVerify: true
. example flytectl config:
admin:
# For GRPC endpoints you might want to use dns:///flyte.myexample.com
endpoint: dns:///<FLYTE_FQDN>
authType: Pkce
insecure: false
logger:
show-source: true
level: 0
Sidharth(Sid)
01/19/2023, 8:54 AMNick Müller (MorpheusXAUT)
01/19/2023, 8:55 AMSidharth(Sid)
01/19/2023, 8:55 AMKetan (kumare3)
Sidharth(Sid)
01/19/2023, 6:39 PMNiels Bantilan
01/19/2023, 7:32 PMSidharth(Sid)
01/20/2023, 5:49 AMVictor Delépine
08/01/2023, 2:30 PM