@@ -41,9 +41,9 @@ metadata:
41
41
42
42
43
43
== Exposing an entire config map or secret that is referenced from a resource
44
- The following examples show how to expose an entire secret as annotations:
44
+ The following examples show how to expose an entire secret using annotations:
45
45
46
- .Example: Exposing an entire secret as annotations
46
+ .Example: Exposing an entire secret through annotations
47
47
[source,yaml]
48
48
----
49
49
apiVersion: postgres-operator.crunchydata.com/v1beta1
67
67
user: "Z3Vlc3Q="
68
68
----
69
69
70
- The following example shows how to expose an entire config map as OLM descriptors:
70
+ The following example shows how to expose an entire config map through OLM descriptors:
71
71
72
- .Example: Exposing an entire config map as OLM descriptors
72
+ .Example: Exposing an entire config map through OLM descriptors
73
73
[source,yaml]
74
74
----
75
75
- path: data.dbConfiguration
@@ -84,9 +84,9 @@ If you intend to project all the values from a `ConfigMap` service resource, you
84
84
85
85
86
86
== Exposing a specific entry from a config map or secret that is referenced from a resource
87
- The following examples show how to expose a specific entry from a config map as annotations:
87
+ The following examples show how to expose a specific entry from a config map through annotations:
88
88
89
- .Example: Exposing an entry from a config map as annotations
89
+ .Example: Exposing an entry from a config map through annotations
90
90
[source,yaml]
91
91
----
92
92
apiVersion: postgres-operator.crunchydata.com/v1beta1
@@ -111,9 +111,9 @@ data:
111
111
user: "hippo"
112
112
----
113
113
114
- The following example shows how to expose a specific entry from a config map as OLM descriptors:
114
+ The following example shows how to expose a specific entry from a config map through OLM descriptors:
115
115
116
- .Example: Exposing an entry from a config map as OLM descriptors
116
+ .Example: Exposing an entry from a config map through OLM descriptors
117
117
[source,yaml]
118
118
----
119
119
- path: data.dbConfiguration
@@ -129,9 +129,9 @@ This example uses the `path` attribute with an `X-Descriptors` update for `servi
129
129
130
130
131
131
== Exposing a resource definition value
132
- The following example shows how to expose a resource definition value as annotations:
132
+ The following example shows how to expose a resource definition value through annotations:
133
133
134
- .Example: Exposing a resource definition value as annotations
134
+ .Example: Exposing a resource definition value through annotations
135
135
[source,yaml]
136
136
----
137
137
apiVersion: postgres-operator.crunchydata.com/v1beta1
@@ -144,9 +144,9 @@ metadata:
144
144
...
145
145
----
146
146
147
- The following example shows how to expose a resource definition value as OLM descriptors:
147
+ The following example shows how to expose a resource definition value through OLM descriptors:
148
148
149
- .Example: Exposing a resource definition value as OLM descriptors
149
+ .Example: Exposing a resource definition value through OLM descriptors
150
150
[source,yaml]
151
151
----
152
152
- path: data.connectionURL
@@ -160,9 +160,9 @@ If required values are available as attributes of backing service resources, ann
160
160
161
161
162
162
== Exposing entries of a collection with the key and value from each entry
163
- Following is the example for exposing the entries of a collection with the key and value from each entry as annotations:
163
+ Following is the example for exposing the entries of a collection with the key and value from each entry through annotations:
164
164
165
- .Example: Exposing the entries of a collection as annotations
165
+ .Example: Exposing the entries of a collection through annotations
166
166
[source,yaml]
167
167
----
168
168
apiVersion: postgres-operator.crunchydata.com/v1beta1
@@ -193,9 +193,9 @@ The following example shows how the previous entries of a collection in annotati
193
193
/bindings/<binding-name>/uri_404 => black-hole.example.com
194
194
----
195
195
196
- Following is the example for exposing the entries of a collection with the key and value from each entry as OLM descriptors:
196
+ Following is the example for exposing the entries of a collection with the key and value from each entry through OLM descriptors:
197
197
198
- .Example: Exposing the entries of a collection as OLM descriptors
198
+ .Example: Exposing the entries of a collection through OLM descriptors
199
199
[source,yaml]
200
200
----
201
201
- path: bootstrap
@@ -223,9 +223,9 @@ The previous example helps you to project all those values with keys such as `pr
223
223
224
224
225
225
== Exposing items of a collection with one key per item
226
- Following is the example for exposing the items of a collection with one key per item as annotations:
226
+ Following is the example for exposing the items of a collection with one key per item through annotations:
227
227
228
- .Example: Exposing the items of a collection as annotations
228
+ .Example: Exposing the items of a collection through annotations
229
229
[source,yaml]
230
230
----
231
231
apiVersion: postgres-operator.crunchydata.com/v1beta1
@@ -251,9 +251,9 @@ The following example shows how the previous items of a collection in annotation
251
251
/bindings/<binding-name>/tags_2 => power
252
252
----
253
253
254
- Following is the example for exposing the items of a collection with one key per item as OLM descriptors:
254
+ Following is the example for exposing the items of a collection with one key per item through OLM descriptors:
255
255
256
- .Example: Exposing the items of a collection as OLM descriptors
256
+ .Example: Exposing the items of a collection through OLM descriptors
257
257
[source,yaml]
258
258
----
259
259
- path: spec.tags
@@ -274,9 +274,9 @@ spec:
274
274
275
275
276
276
== Exposing values of collection entries with one key per entry value
277
- Following is the example for exposing the values of collection entries with one key per entry value as annotations:
277
+ Following is the example for exposing the values of collection entries with one key per entry value through annotations:
278
278
279
- .Example: Exposing the values of collection entries as annotations
279
+ .Example: Exposing the values of collection entries through annotations
280
280
[source,yaml]
281
281
----
282
282
apiVersion: postgres-operator.crunchydata.com/v1beta1
@@ -305,9 +305,9 @@ The following example shows how the previous values of a collection in annotatio
305
305
/bindings/<binding-name>/url_2 => black-hole.example.com
306
306
----
307
307
308
- Following is the example for exposing the values of collection entries with one key per entry value as OLM descriptors:
308
+ Following is the example for exposing the values of collection entries with one key per entry value through OLM descriptors:
309
309
310
- .Example: Exposing the values of collection entries as OLM descriptors
310
+ .Example: Exposing the values of collection entries through OLM descriptors
311
311
[source,yaml]
312
312
----
313
313
- path: bootstrap
0 commit comments