| # |
| # Licensed to the Apache Software Foundation (ASF) under one |
| # or more contributor license agreements. See the NOTICE file |
| # distributed with this work for additional information |
| # regarding copyright ownership. The ASF licenses this file |
| # to you under the Apache License, Version 2.0 (the |
| # "License"); you may not use this file except in compliance |
| # with the License. You may obtain a copy of the License at |
| # |
| # http://www.apache.org/licenses/LICENSE-2.0 |
| # |
| # Unless required by applicable law or agreed to in writing, |
| # software distributed under the License is distributed on an |
| # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
| # KIND, either express or implied. See the License for the |
| # specific language governing permissions and limitations |
| # under the License. |
| # |
| |
| # Configuration common to ALL integration tests (executed with "it" profile – Gradle "intTest" tasks). |
| # Note: Quarkus integration tests cannot use QuarkusTestProfile. |
| |
| # Note about logging during integration tests: |
| # - Logging for test code is configured in the `application-test.properties` file (!!). |
| # By default, it is set to `ERROR` level. |
| # - Logging for application code is configured in the main `application.properties` file. |
| # By default, it is set to `INFO` level. |
| # Configuring logging levels or appenders in this file IS INEFFECTIVE! |
| |
| quarkus.http.limits.max-body-size=1000000 |
| quarkus.http.port=0 |
| |
| quarkus.management.port=0 |
| |
| # polaris.persistence.type=jdbc |
| # polaris.persistence.type=in-memory-atomic |
| polaris.persistence.type=in-memory |
| |
| polaris.secrets-manager.type=in-memory |
| |
| polaris.features."ALLOW_EXTERNAL_CATALOG_CREDENTIAL_VENDING"=false |
| polaris.features."ALLOW_EXTERNAL_METADATA_FILE_LOCATION"=false |
| polaris.features."ALLOW_OVERLAPPING_CATALOG_URLS"=true |
| polaris.features."ALLOW_SPECIFYING_FILE_IO_IMPL"=true |
| polaris.features."ALLOW_INSECURE_STORAGE_TYPES"=true |
| polaris.features."ALLOW_WILDCARD_LOCATION"=true |
| polaris.features."ENFORCE_PRINCIPAL_CREDENTIAL_ROTATION_REQUIRED_CHECKING"=true |
| polaris.features."INITIALIZE_DEFAULT_CATALOG_FILEIO_FOR_it"=true |
| polaris.features."SKIP_CREDENTIAL_SUBSCOPING_INDIRECTION"=true |
| polaris.features."SUPPORTED_CATALOG_STORAGE_TYPES"=["FILE","S3","GCS","AZURE"] |
| polaris.features."ENABLE_CATALOG_FEDERATION"=true |
| polaris.readiness.ignore-severe-issues=true |
| |
| polaris.realm-context.realms=POLARIS,OTHER |
| |
| polaris.storage.gcp.token=token |
| polaris.storage.gcp.lifespan=PT1H |
| |