@@ -71,9 +71,6 @@ var _ = Describe("GitOps Operator Parallel E2E Tests", func() {
71
71
{Name : "tls-certs" , MountPath : "/app/config/tls" },
72
72
{Name : "argocd-repo-server-tls" , MountPath : "/app/config/server/tls" },
73
73
{Name : "argocd-operator-redis-tls" , MountPath : "/app/config/server/tls/redis" },
74
- {Name : "plugins-home" , MountPath : "/home/argocd" },
75
- {Name : "argocd-cmd-params-cm" , MountPath : "/home/argocd/params" },
76
- {Name : "tmp" , MountPath : "/tmp" },
77
74
}))
78
75
79
76
Expect (argocdServerDepl .Spec .Template .Spec .Volumes ).To (Equal ([]corev1.Volume {
@@ -109,25 +106,6 @@ var _ = Describe("GitOps Operator Parallel E2E Tests", func() {
109
106
},
110
107
},
111
108
},
112
- {
113
- Name : "plugins-home" , VolumeSource : corev1.VolumeSource {
114
- EmptyDir : & corev1.EmptyDirVolumeSource {},
115
- },
116
- },
117
- {
118
- Name : "argocd-cmd-params-cm" , VolumeSource : corev1.VolumeSource {
119
- ConfigMap : & corev1.ConfigMapVolumeSource {
120
- DefaultMode : ptr .To (int32 (420 )),
121
- Items : []corev1.KeyToPath {{Key : "server.profile.enabled" , Path : "profiler.enabled" }},
122
- LocalObjectReference : corev1.LocalObjectReference {Name : "argocd-cmd-params-cm" },
123
- Optional : ptr .To (true )},
124
- },
125
- },
126
- {
127
- Name : "tmp" , VolumeSource : corev1.VolumeSource {
128
- EmptyDir : & corev1.EmptyDirVolumeSource {},
129
- },
130
- },
131
109
}))
132
110
133
111
By ("verifying volumemounts and volumes of Argo CD Repo server" )
@@ -216,9 +194,6 @@ var _ = Describe("GitOps Operator Parallel E2E Tests", func() {
216
194
Expect (applControllerSS .Spec .Template .Spec .Containers [0 ].VolumeMounts ).To (Equal ([]corev1.VolumeMount {
217
195
{Name : "argocd-repo-server-tls" , MountPath : "/app/config/controller/tls" },
218
196
{Name : "argocd-operator-redis-tls" , MountPath : "/app/config/controller/tls/redis" },
219
- {Name : "argocd-home" , MountPath : "/home/argocd" },
220
- {Name : "argocd-cmd-params-cm" , MountPath : "/home/argocd/params" },
221
- {Name : "argocd-application-controller-tmp" , MountPath : "/tmp" },
222
197
}))
223
198
224
199
Expect (applControllerSS .Spec .Template .Spec .Volumes ).To (Equal ([]corev1.Volume {
@@ -240,25 +215,6 @@ var _ = Describe("GitOps Operator Parallel E2E Tests", func() {
240
215
},
241
216
},
242
217
},
243
- {
244
- Name : "argocd-home" , VolumeSource : corev1.VolumeSource {
245
- EmptyDir : & corev1.EmptyDirVolumeSource {},
246
- },
247
- },
248
- {
249
- Name : "argocd-cmd-params-cm" , VolumeSource : corev1.VolumeSource {
250
- ConfigMap : & corev1.ConfigMapVolumeSource {
251
- DefaultMode : ptr .To (int32 (420 )),
252
- Items : []corev1.KeyToPath {{Key : "controller.profile.enabled" , Path : "profiler.enabled" }},
253
- LocalObjectReference : corev1.LocalObjectReference {Name : "argocd-cmd-params-cm" },
254
- Optional : ptr .To (true )},
255
- },
256
- },
257
- {
258
- Name : "argocd-application-controller-tmp" , VolumeSource : corev1.VolumeSource {
259
- EmptyDir : & corev1.EmptyDirVolumeSource {},
260
- },
261
- },
262
218
}))
263
219
264
220
})
0 commit comments