File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 22
22
labels :
23
23
k8s-app : cluster-version-operator
24
24
spec :
25
- automountServiceAccountToken : false
25
+ automountServiceAccountToken : false # removed in the next version
26
26
containers :
27
27
- name : cluster-version-operator
28
28
image : ' {{.ReleaseImage}}'
Original file line number Diff line number Diff line change @@ -52,7 +52,7 @@ func TestEnsurePodSpec(t *testing.T) {
52
52
input : corev1.PodSpec {},
53
53
54
54
expectedModified : true ,
55
- expected : corev1.PodSpec {},
55
+ expected : corev1.PodSpec {},
56
56
},
57
57
{
58
58
name : "AutomountServiceAccountToken changed" ,
@@ -62,7 +62,7 @@ func TestEnsurePodSpec(t *testing.T) {
62
62
AutomountServiceAccountToken : boolPtr (false )},
63
63
64
64
expectedModified : true ,
65
- expected : corev1.PodSpec {
65
+ expected : corev1.PodSpec {
66
66
AutomountServiceAccountToken : boolPtr (false )},
67
67
},
68
68
{
@@ -73,7 +73,7 @@ func TestEnsurePodSpec(t *testing.T) {
73
73
AutomountServiceAccountToken : boolPtr (false )},
74
74
75
75
expectedModified : false ,
76
- expected : corev1.PodSpec {
76
+ expected : corev1.PodSpec {
77
77
AutomountServiceAccountToken : boolPtr (false )},
78
78
},
79
79
{
You can’t perform that action at this time.
0 commit comments