Skip to content

Commit 39b9fcd

Browse files
author
Tim Bannister
committed
Improve page style
1 parent 743df5f commit 39b9fcd

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

content/en/docs/tasks/configure-pod-container/configure-pod-configmap.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -724,7 +724,7 @@ guide explains the syntax.
724724
### Optional references
725725

726726
A ConfigMap reference may be marked _optional_. If the ConfigMap is non-existent, the mounted
727-
volume will be empty. If the ConfigMap exists, but the referenced key is non-existent the path
727+
volume will be empty. If the ConfigMap exists, but the referenced key is non-existent, the path
728728
will be absent beneath the mount point. See [Optional ConfigMaps](#optional-configmaps) for more
729729
details.
730730

@@ -763,8 +763,8 @@ data item in the ConfigMap is represented by an individual file in the volume.
763763
{{< /note >}}
764764

765765
The ConfigMap's `data` field contains the configuration data. As shown in the example below,
766-
this can be simple -- like individual properties defined using `--from-literal` -- or complex --
767-
like configuration files or JSON blobs defined using `--from-file`.
766+
this can be simple (like individual properties defined using `--from-literal`) or complex
767+
(like configuration files or JSON blobs defined using `--from-file`).
768768
769769
```yaml
770770
apiVersion: v1
@@ -797,7 +797,7 @@ Pods can load data from a ConfigMap that uses either `data` or `binaryData`.
797797
798798
You can mark a reference to a ConfigMap as _optional_ in a Pod specification.
799799
If the ConfigMap doesn't exist, the configuration for which it provides data in the Pod
800-
(e.g. environment variable, mounted volume) will be empty.
800+
(for example: environment variable, mounted volume) will be empty.
801801
If the ConfigMap exists, but the referenced key is non-existent the data is also empty.
802802

803803
For example, the following Pod specification marks an environment variable from a ConfigMap

0 commit comments

Comments
 (0)