Add envFrom
This commit is contained in:
parent
dc96327f2f
commit
d75129498c
1 changed files with 7 additions and 4 deletions
|
@ -312,9 +312,9 @@ catalogs:
|
|||
fs.native-s3.enabled=true
|
||||
hive.metastore: file
|
||||
hive.metastore.catalog.dir: s3a://delta-lake-test/
|
||||
s3.aws-access-key={{ENV:MINIO_ACCESS_KEY }}
|
||||
s3.aws-secret-key={{ENV:MINIO_SECRET_KEY }}
|
||||
s3.endpoint={{ENV:MINIO_ENDPOINT_URL }}
|
||||
s3.aws-access-key={{ ENV:MINIO_ACCESS_KEY }}
|
||||
s3.aws-secret-key={{ ENV:MINIO_SECRET_KEY }}
|
||||
s3.endpoint={{ ENV:MINIO_ENDPOINT_URL }}
|
||||
s3.path-style-access=true
|
||||
|
||||
# catalogs -- Configure
|
||||
|
@ -361,7 +361,7 @@ env:
|
|||
name: minio-credentials
|
||||
key: MINIO_ENDPOINT_URL
|
||||
|
||||
envFrom: []
|
||||
# envFrom: []
|
||||
# envFrom -- additional environment variables added to every pod, specified as a list of either `ConfigMap`
|
||||
# or `Secret` references
|
||||
# @raw
|
||||
|
@ -370,6 +370,9 @@ envFrom: []
|
|||
# - secretRef:
|
||||
# name: extra-secret
|
||||
# ```
|
||||
envFrom:
|
||||
- secretRef:
|
||||
name: minio-credentials
|
||||
|
||||
initContainers: {}
|
||||
# initContainers -- Additional [containers that run to
|
||||
|
|
Loading…
Add table
Reference in a new issue