Skip to content

Commit 53b2f28

Browse files
committed
DNM - Add manifests to test inclusion
1 parent 56c59ce commit 53b2f28

File tree

1 file changed

+32
-0
lines changed

1 file changed

+32
-0
lines changed
Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
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"

0 commit comments

Comments
 (0)