Hi Flyte Enthusiasts! Anyone has experience deploy...
# flyte-support
l
Hi Flyte Enthusiasts! Anyone has experience deploying Flyte to Azure Gov Env. Usually blob end point on public cloud is https://your-account-name.blob.core.windows.net For Gov Environment is there any option to define custom like https://your-account-name.smth.gov.net
a
@little-account-45729 while I haven't tried it personally, you should be able to specify the alternate domain suffix in values:
Copy code
storage:
  type: custom
  custom:
    container: "{{ .Values.userSettings.storageContainerName }}"
    enable-multicontainer: true
    connection: {}
    type: stow
    stow:
      kind: azure
      config:
        account: "{{ .Values.userSettings.storageAccountName }}"
        domain_suffix: "<http://smth.gov.net|smth.gov.net>"
l
Thanks David! We also found this. It worked!!