@@ -30,11 +30,15 @@ services:
3030 jaeger :
3131 condition : service_healthy
3232 environment :
33- POLARIS_BOOTSTRAP_CREDENTIALS : POLARIS,root,s3cr3t
33+ POLARIS_BOOTSTRAP_CREDENTIALS : POLARIS,${CLIENT_ID},${CLIENT_SECRET}
3434 quarkus.otel.exporter.otlp.endpoint : http://jaeger:4317
3535 # Resource attributes (added to all traces)
3636 quarkus.otel.resource.attributes[0] : polaris.app=polaris-getting-started
3737 quarkus.otel.resource.attributes[1] : polaris.env=dev
38+
39+ polaris.features."ALLOW_INSECURE_STORAGE_TYPES" : " true"
40+ polaris.features."SUPPORTED_CATALOG_STORAGE_TYPES" : " [\" FILE\" ,\" S3\" ,\" GCS\" ,\" AZURE\" ]"
41+ polaris.readiness.ignore-severe-issues : " true"
3842 # Custom metrics (added to all requests)
3943 polaris.metrics.tags.app : polaris-getting-started
4044 polaris.metrics.tags.env : dev
@@ -55,8 +59,11 @@ services:
5559 depends_on :
5660 polaris :
5761 condition : service_healthy
62+ environment :
63+ - CLIENT_ID=${CLIENT_ID}
64+ - CLIENT_SECRET=${CLIENT_SECRET}
5865 volumes :
59- - ../assets /polaris/:/polaris
66+ - ${ASSETS_PATH} /polaris/:/polaris
6067 entrypoint : ' /bin/sh -c "chmod +x /polaris/create-catalog.sh && /polaris/create-catalog.sh"'
6168
6269 prometheus :
0 commit comments