You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: doc/design/subscription-config.md
+8-8Lines changed: 8 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,11 +8,11 @@ Currently, OLM supports the following configurations:
8
8
9
9
### Env
10
10
11
-
The `Env` field defines a list of [Environment Variables](https://kubernetes.io/docs/tasks/inject-data-application/define-environment-variable-container/#define-an-environment-variable-for-a-container) that must exist in all containers in the Pod created by OLM.
11
+
The `env` field defines a list of [Environment Variables](https://kubernetes.io/docs/tasks/inject-data-application/define-environment-variable-container/#define-an-environment-variable-for-a-container) that must exist in all containers in the Pod created by OLM.
12
12
13
13
> Note: Values defined here will overwrite existing environment variables of the same name.
14
14
15
-
#### Env Example
15
+
#### Example
16
16
17
17
Increase log verbosity on an Operator's container that utilizes the `ARGS` variable:
18
18
@@ -31,11 +31,11 @@ spec:
31
31
32
32
### EnvFrom
33
33
34
-
The `EnvFrom` field defines a [list of sources to populate Environment Variables](https://kubernetes.io/docs/tasks/configure-pod-container/configure-pod-configmap/#configure-all-key-value-pairs-in-a-configmap-as-container-environment-variables) in the container. The keys defined within a source must be a C_IDENTIFIER. All invalid keys will be reported as an event when the container is starting. When a key exists in multiple sources, the value associated with the last source will take precedence.
34
+
The `envFrom` field defines a [list of sources to populate Environment Variables](https://kubernetes.io/docs/tasks/configure-pod-container/configure-pod-configmap/#configure-all-key-value-pairs-in-a-configmap-as-container-environment-variables) in the container. The keys defined within a source must be a C_IDENTIFIER. All invalid keys will be reported as an event when the container is starting. When a key exists in multiple sources, the value associated with the last source will take precedence.
35
35
36
36
> Note: Values defined by an Env with a duplicate key will take precedence.
37
37
38
-
#### EnvFrom Example
38
+
#### Example
39
39
40
40
Inject a license key residing in a Secret to unlock Operator features:
41
41
@@ -54,19 +54,19 @@ spec:
54
54
55
55
### Volumes
56
56
57
-
The `Volumes` field defines a list of [volumes](https://kubernetes.io/docs/concepts/storage/volumes/) that must exist on the Pod created by OLM.
57
+
The `volumes` field defines a list of [Volumes](https://kubernetes.io/docs/concepts/storage/volumes/) that must exist on the Pod created by OLM.
58
58
59
59
> Note: Volumes defined here will overwrite existing Volumes of the same name.
60
60
61
61
### VolumeMounts
62
62
63
-
The `VolumeMounts` field defines a list of [volumeMounts](https://kubernetes.io/docs/concepts/storage/volumes/) that must exist in all containers in the Pod created by OLM. If a `volumeMount` references a `volume` that does not exist, OLM will fail to deploy the operator.
63
+
The `volumeMounts` field defines a list of [VolumeMounts](https://kubernetes.io/docs/concepts/storage/volumes/) that must exist in all containers in the Pod created by OLM. If a `volumeMount` references a `volume` that does not exist, OLM will fail to deploy the operator.
64
64
65
65
> Note: VolumeMounts defined here will overwrite existing VolumeMounts of the same name.
66
66
67
-
#### Volume/VolumeMounts Example
67
+
#### Example
68
68
69
-
Mount a ConfigMap as a Volume that contains configuration information. Modifications to the content of the ConfigMap should appear within the container's VolumeMount.
69
+
Mount a ConfigMap as a Volume that contains configuration information that can change default Operator behavior. Modifications to the content of the ConfigMap should appear within the container's VolumeMount.
0 commit comments