MonkeyCanCode commented on code in PR #1474: URL: https://github.com/apache/polaris/pull/1474#discussion_r2064974690
########## getting-started/assets/polaris/sample-setup-config.yaml: ########## @@ -0,0 +1,174 @@ +# +# 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. +# + +catalogs: + - name: "quickstart_catalog" + type: internal + storage_type: "file" + default_base_location: "file:///var/tmp/quickstart_catalog/" + allowed_locations: + - "file:///var/tmp/quickstart_catalog/" + properties: + catalog: quickstart_catalog + - name: "quickstart_catalog_external" + type: external + storage_type: "file" + default_base_location: "file:///var/tmp/quickstart_catalog_external/" + allowed_locations: + - "file:///var/tmp/quickstart_catalog_external/" + remote_url: "https://example.com/quickstart_catalog_external" + properties: + catalog: quickstart_catalog_external + - name: "quickstart_catalog_s3" + type: internal + storage_type: "s3" + default_base_location: "s3://quickstart-bucket/quickstart_catalog/" + allowed_locations: + - "s3://quickstart-bucket/quickstart_catalog/" + role_arn: "arn:aws:iam::123456789012:role/QuickstartS3Role" + external_id: "12345678-1234-1234-1234-123456789abc" + user_arn: "arn:aws:iam::123456789012:user/QuickstartUser" + region: "us-west-2" + properties: + catalog: quickstart_catalog_s3 + - name: "quickstart_catalog_azure" + type: internal + storage_type: "azure" + default_base_location: "abfss://[email protected]/quickstart_catalog/" + allowed_locations: + - "abfss://[email protected]/quickstart_catalog/" + tenant_id: "12345678-1234-1234-1234-123456789abc" + multi_tenant_app_name: "QuickstartAzureApp" + consent_url: "https://login.microsoftonline.com/consent" + properties: + catalog: quickstart_catalog_azure + ## commented out as implicitly gcs auth is needed Review Comment: I noticed when I run the command with SA, it will actually throw an auth error (implicitly auth during catalog creation?). I am not seeing this for AWS/Azure which i have a lot more exp with as any of the dummy value will work and no implicitly auth invoked during polaris catalog creation. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
