File tree Expand file tree Collapse file tree 1 file changed +32
-0
lines changed
Expand file tree Collapse file tree 1 file changed +32
-0
lines changed Original file line number Diff line number Diff line change 1+ apiVersion : v1
2+ kind : ConfigMap
3+ metadata :
4+ name : dev-preview-created
5+ namespace : openshift-cluster-version
6+ annotations :
7+ include.release.openshift.io/self-managed-high-availability : " true"
8+ release.openshift.io/feature-gates : " Example,Example2"
9+ data :
10+ example : " this should be created on dev-preview-only as it's annotated with Example and Example2"
11+ ---
12+ apiVersion : v1
13+ kind : ConfigMap
14+ metadata :
15+ name : tech-preview-created
16+ namespace : openshift-cluster-version
17+ annotations :
18+ include.release.openshift.io/self-managed-high-availability : " true"
19+ release.openshift.io/feature-gates : " Example,-Example2"
20+ data :
21+ example : " this should be created on tech-preview-only as it's annotated with Example and not Example2"
22+ ---
23+ apiVersion : v1
24+ kind : ConfigMap
25+ metadata :
26+ name : default-created
27+ namespace : openshift-cluster-version
28+ annotations :
29+ include.release.openshift.io/self-managed-high-availability : " true"
30+ release.openshift.io/feature-gates : " -Example,-Example2"
31+ data :
32+ example : " this should be created on default-only as it's annotated with negation for Example and Example2"
You can’t perform that action at this time.
0 commit comments