Update values.yaml for updating trino
This commit is contained in:
parent
bc92bfc94b
commit
afdd87ba10
1 changed files with 27 additions and 23 deletions
|
@ -5,32 +5,36 @@ server:
|
||||||
coordinator:
|
coordinator:
|
||||||
jvm:
|
jvm:
|
||||||
maxHeapSize: "8G"
|
maxHeapSize: "8G"
|
||||||
|
env:
|
||||||
|
- name: MINIO_ACCESS_KEY
|
||||||
|
valueFrom:
|
||||||
|
secretKeyRef:
|
||||||
|
name: minio-credentials
|
||||||
|
key: MINIO_ACCESS_KEY
|
||||||
|
- name: MINIO_SECRET_KEY
|
||||||
|
valueFrom:
|
||||||
|
secretKeyRef:
|
||||||
|
name: minio-credentials
|
||||||
|
key: MINIO_SECRET_KEY
|
||||||
|
- name: MINIO_ENDPOINT_URL
|
||||||
|
valueFrom:
|
||||||
|
secretKeyRef:
|
||||||
|
name: minio-credentials
|
||||||
|
key: MINIO_ENDPOINT_URL
|
||||||
|
|
||||||
worker:
|
worker:
|
||||||
jvm:
|
jvm:
|
||||||
maxHeapSize: "8G"
|
maxHeapSize: "8G"
|
||||||
catalogs:
|
|
||||||
hive:
|
# hive.metastore.uri=thrift://hivems-hive-metastore.hive-metastore:9083
|
||||||
connector.name: hive-hadoop2
|
# hive.non-managed-table-writes-enabled=true
|
||||||
|
additionalCatalogs:
|
||||||
|
hive: |
|
||||||
|
connector.name=hive
|
||||||
hive.metastore: file
|
hive.metastore: file
|
||||||
hive.metastore.catalog.dir: s3a://delta-lake-test/
|
hive.metastore.catalog.dir: s3a://delta-lake-test/
|
||||||
hive.s3.aws-access-key:
|
hive.s3.aws-access-key="${MINIO_ACCESS_KEY}"
|
||||||
valueFrom:
|
hive.s3.aws-secret-key="${MINIO_SECRET_KEY}"
|
||||||
secretKeyRef:
|
hive.s3.endpoint="${MINIO_ENDPOINT_URL}"
|
||||||
name: minio-credentials
|
hive.s3.path-style-access=true
|
||||||
key: MINIO_ACCESS_KEY
|
|
||||||
hive.s3.aws-secret-key:
|
|
||||||
valueFrom:
|
|
||||||
secretKeyRef:
|
|
||||||
name: minio-credentials
|
|
||||||
key: MINIO_SECRET_KEY
|
|
||||||
hive.s3.endpoint:
|
|
||||||
valueFrom:
|
|
||||||
secretKeyRef:
|
|
||||||
name: minio-credentials
|
|
||||||
key: MINIO_ENDPOINT_URL
|
|
||||||
hive.s3.path-style-access: true
|
|
||||||
hive.s3.ssl.enabled: false
|
hive.s3.ssl.enabled: false
|
||||||
|
|
||||||
# Additional configurations (optional)
|
|
||||||
log:
|
|
||||||
level: INFO
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue