Skip to content

Commit 2258e4f

Browse files
authored
Merge pull request #48343 from xenolinux/empty-configmap
BZ2082692: Add an example for the empty ConfigMap
2 parents 9a7327f + 4718df4 commit 2258e4f

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

modules/certificate-injection-using-operators.adoc

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,20 @@ following label:
1818
config.openshift.io/inject-trusted-cabundle="true"
1919
----
2020

21+
An example of the empty ConfigMap:
22+
[source,yaml]
23+
----
24+
apiVersion: v1
25+
data: {}
26+
kind: ConfigMap
27+
metadata:
28+
labels:
29+
config.openshift.io/inject-trusted-cabundle: "true"
30+
name: ca-inject <1>
31+
namespace: apache
32+
----
33+
<1> Specifies the empty ConfigMap name.
34+
2135
The Operator mounts this ConfigMap into the container's local trust store.
2236

2337
[NOTE]

0 commit comments

Comments
 (0)