Skip to content

Commit fc91161

Browse files
authored
Update subscription-config.md
1 parent 7ad7a4a commit fc91161

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

doc/design/subscription-config.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@ Currently, OLM supports the following configurations:
88

99
### Env
1010

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.
1212

1313
> Note: Values defined here will overwrite existing environment variables of the same name.
1414
15-
#### Env Example
15+
#### Example
1616

1717
Increase log verbosity on an Operator's container that utilizes the `ARGS` variable:
1818

@@ -31,11 +31,11 @@ spec:
3131

3232
### EnvFrom
3333

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.
3535

3636
> Note: Values defined by an Env with a duplicate key will take precedence.
3737
38-
#### EnvFrom Example
38+
#### Example
3939

4040
Inject a license key residing in a Secret to unlock Operator features:
4141

@@ -54,19 +54,19 @@ spec:
5454

5555
### Volumes
5656

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.
5858

5959
> Note: Volumes defined here will overwrite existing Volumes of the same name.
6060
6161
### VolumeMounts
6262

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.
6464

6565
> Note: VolumeMounts defined here will overwrite existing VolumeMounts of the same name.
6666
67-
#### Volume/VolumeMounts Example
67+
#### Example
6868

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.
7070

7171
```
7272
kind: Subscription

0 commit comments

Comments
 (0)