File tree Expand file tree Collapse file tree 3 files changed +8
-21
lines changed Expand file tree Collapse file tree 3 files changed +8
-21
lines changed Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ metadata:
6
6
annotations :
7
7
openshift.io/node-selector : " "
8
8
labels :
9
- openshift.io/run-level : " 1 "
9
+ openshift.io/scc : " anyuid "
10
10
openshift.io/cluster-monitoring : " true"
11
11
{{ end }}
12
12
---
@@ -18,5 +18,5 @@ metadata:
18
18
annotations :
19
19
openshift.io/node-selector : " "
20
20
labels :
21
- openshift.io/run-level : " 1 "
21
+ openshift.io/scc : " anyuid "
22
22
{{ end }}
Original file line number Diff line number Diff line change @@ -2,19 +2,17 @@ apiVersion: v1
2
2
kind : Namespace
3
3
metadata :
4
4
name : openshift-operator-lifecycle-manager
5
-
6
5
annotations :
7
6
openshift.io/node-selector : " "
8
7
labels :
9
- openshift.io/run-level : " 1 "
8
+ openshift.io/scc : " anyuid "
10
9
openshift.io/cluster-monitoring : " true"
11
10
---
12
11
apiVersion : v1
13
12
kind : Namespace
14
13
metadata :
15
14
name : openshift-operators
16
-
17
15
annotations :
18
16
openshift.io/node-selector : " "
19
17
labels :
20
- openshift.io/run-level : " 1 "
18
+ openshift.io/scc : " anyuid "
Original file line number Diff line number Diff line change @@ -2489,26 +2489,15 @@ func TestUpdateCSVInPlace(t *testing.T) {
2489
2489
require .NoError (t , err )
2490
2490
require .NotNil (t , dep )
2491
2491
2492
- // Create "updated" CSV with a different image
2492
+ // Create "updated" CSV
2493
2493
strategyNew := strategy
2494
2494
strategyNew .DeploymentSpecs [0 ].Spec .Template .Spec .Containers = []corev1.Container {
2495
2495
{
2496
- Name : genName ("hat" ),
2497
- Image : "quay.io/coreos/mock-extension-apiserver:master" ,
2498
- Command : []string {"/bin/mock-extension-apiserver" },
2499
- Args : []string {
2500
- "-v=4" ,
2501
- "--mock-kinds" ,
2502
- "fedora" ,
2503
- "--mock-group-version" ,
2504
- "group.version" ,
2505
- "--secure-port" ,
2506
- "5443" ,
2507
- "--debug" ,
2508
- },
2496
+ Name : genName ("nginx-" ),
2497
+ Image : * dummyImage ,
2509
2498
Ports : []corev1.ContainerPort {
2510
2499
{
2511
- ContainerPort : 5443 ,
2500
+ ContainerPort : 80 ,
2512
2501
},
2513
2502
},
2514
2503
ImagePullPolicy : corev1 .PullIfNotPresent ,
You can’t perform that action at this time.
0 commit comments