Move values to trino map
This commit is contained in:
parent
95ed9e6519
commit
6b1929da87
2 changed files with 19 additions and 19 deletions
|
@ -326,7 +326,7 @@ additionalCatalogs: {}
|
|||
# additionalCatalogs -- Deprecated, use `catalogs` instead. Configure additional
|
||||
# [catalogs](https://trino.io/docs/current/installation/deployment.html#catalog-properties).
|
||||
|
||||
env: []
|
||||
# env: []
|
||||
# env -- additional environment variables added to every pod, specified as a list with explicit values
|
||||
# @raw
|
||||
# Example:
|
||||
|
@ -334,6 +334,22 @@ env: []
|
|||
# - name: NAME
|
||||
# value: "value"
|
||||
# ```
|
||||
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
|
||||
|
||||
envFrom: []
|
||||
# envFrom -- additional environment variables added to every pod, specified as a list of either `ConfigMap`
|
||||
|
|
|
@ -5,22 +5,6 @@ server:
|
|||
coordinator:
|
||||
jvm:
|
||||
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:
|
||||
jvm:
|
||||
|
|
Loading…
Add table
Reference in a new issue