# values-override.yaml — Azure Blob storage

global:
  image:
    auth:
      ghcr:
        username: "YOUR_GITHUB_USERNAME"   # provided by Middleware team
        token: "YOUR_GITHUB_TOKEN"         # provided by Middleware team

components:
  register-account:
    args:
      email: "YOUR_EMAIL"                  # first UI login
      name: "YOUR_NAME"
      password: "YOUR_PASSWORD"
      company-name: "YOUR_COMPANY_NAME"

secrets:
  appConfiguration:
    appHosts:
      mwAppHost: "YOUR_APP_HOST"           # e.g. mw.customer-domain.com
      mwAppHostEndpoint: "YOUR_APP_HOST"

  pgdb:
    username: "postgres"
    password: "YOUR_POSTGRES_PASSWORD"

  redis:
    password: "YOUR_REDIS_PASSWORD"

  clickhouse:
    username: "clickhouse"
    password: "YOUR_CLICKHOUSE_PASSWORD"

  quickwitLogsPgdb:
    username: "postgres"
    password: "YOUR_QUICKWIT_LOGS_POSTGRES_PASSWORD"

  quickwitTracesPgdb:
    username: "postgres"
    password: "YOUR_QUICKWIT_TRACES_POSTGRES_PASSWORD"

  azureStorage:
    enabled: true
    endpoint: "https://YOUR_STORAGE_ACCOUNT.blob.core.windows.net"
    accountName: "YOUR_STORAGE_ACCOUNT"
    accountKey: "YOUR_AZURE_STORAGE_ACCOUNT_KEY"

  quickwitLogsCoreCredentials:
    azure:
      accessKey: "YOUR_AZURE_STORAGE_ACCOUNT_KEY"
      account: "YOUR_STORAGE_ACCOUNT"

  quickwitTracesCoreCredentials:
    azure:
      accessKey: "YOUR_AZURE_STORAGE_ACCOUNT_KEY"
      account: "YOUR_STORAGE_ACCOUNT"

quickwit-logs:
  config:
    default_index_root_uri: "azure://YOUR_LOGS_CONTAINER/indexes"

quickwit-traces:
  config:
    default_index_root_uri: "azure://YOUR_TRACES_CONTAINER/indexes"

clickhouse:
  cloudDisk:
    enabled: true
    type: "azure"
  clusters:
    db1:
      enabled: true
      cloudDisk:
        location:
          azure:
            container: "YOUR_DB1_CLICKHOUSE_CONTAINER"

