|
6 | 6 | env:
|
7 | 7 | AWS_REGION: us-west-2
|
8 | 8 | AWS_DEFAULT_REGION: us-west-2
|
9 |
| - POLLER_INTERVAL_MILLISECONDS: 10000 # Caution, setting this frequency may incur additional charges on some platforms |
| 9 | + POLLER_INTERVAL_MILLISECONDS: 10000 # Caution, setting this frequency may incur additional charges on some platforms |
10 | 10 | WATCH_TIMEOUT: 60000
|
11 |
| - WATCHED_NAMESPACES: "" # Comma separated list of namespaces, empty or unset means ALL namespaces. |
| 11 | + WATCHED_NAMESPACES: "" # Comma separated list of namespaces, empty or unset means ALL namespaces. |
12 | 12 | LOG_LEVEL: info
|
13 | 13 | LOG_MESSAGE_KEY: "msg"
|
14 | 14 | # Print logs level as string ("info") rather than integer (30)
|
|
24 | 24 | # AWS_SM_ENDPOINT: http://secretsmanager-fips.us-east-1.amazonaws.com
|
25 | 25 |
|
26 | 26 | # Create environment variables from existing k8s secrets
|
27 |
| -# envVarsFromSecret: |
| 27 | +envVarsFromSecret: {} |
28 | 28 | # AWS_ACCESS_KEY_ID:
|
29 | 29 | # secretKeyRef: aws-credentials
|
30 | 30 | # key: id
|
|
50 | 50 | # secretKeyRef: azure-credentials
|
51 | 51 | # key: clientsecret
|
52 | 52 |
|
| 53 | +# Create environment variables from existing k8s secrets |
| 54 | +envVarsFromConfigMap: {} |
| 55 | +# AWS_ACCESS_KEY_ID: |
| 56 | +# configMapKeyRef: aws-credentials |
| 57 | +# key: id |
| 58 | +# AWS_SECRET_ACCESS_KEY: |
| 59 | +# configMapKeyRef: aws-credentials |
| 60 | +# key: key |
| 61 | +# ALICLOUD_ENDPOINT: |
| 62 | +# configMapKeyRef: alicloud-credentials |
| 63 | +# key: endpoint |
| 64 | +# ALICLOUD_ACCESS_KEY_ID: |
| 65 | +# configMapKeyRef: alicloud-credentials |
| 66 | +# key: id |
| 67 | +# ALICLOUD_ACCESS_KEY_SECRET: |
| 68 | +# configMapKeyRef: alicloud-credentials |
| 69 | +# key: secret |
| 70 | +# AZURE_TENANT_ID: |
| 71 | +# configMapKeyRef: azure-credentials |
| 72 | +# key: tenantid |
| 73 | +# AZURE_CLIENT_ID: |
| 74 | +# configMapKeyRef: azure-credentials |
| 75 | +# key: clientid |
| 76 | +# AZURE_CLIENT_SECRET: |
| 77 | +# configMapKeyRef: azure-credentials |
| 78 | +# key: clientsecret |
| 79 | + |
| 80 | + |
| 81 | +# List of sources to populate environment variables in the container. |
| 82 | +# The keys defined within a source must be a C_IDENTIFIER. All invalid keys |
| 83 | +# will be reported as an event when the container is starting. When a key |
| 84 | +# exists in multiple sources, the value associated with the last source will |
| 85 | +# take precedence. Values defined by an Env with a duplicate key will take precedence. |
| 86 | +# https://kubernetes.io/docs/tasks/configure-pod-container/configure-pod-configmap/#configure-all-key-value-pairs-in-a-configmap-as-container-environment-variables |
| 87 | +envFrom: {} |
| 88 | +# - configMapRef: |
| 89 | +# name: special-config |
| 90 | +# - secretRef: |
| 91 | +# name: special-config |
| 92 | + |
| 93 | + |
53 | 94 | # Create files from existing k8s secrets
|
54 | 95 | # filesFromSecret:
|
55 | 96 | # gcp-creds:
|
|
0 commit comments