-
Notifications
You must be signed in to change notification settings - Fork 17
/
acceptance.go
579 lines (500 loc) · 21.3 KB
/
acceptance.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
package acceptance
import (
"context"
"time"
kitlog "github.com/go-kit/kit/log"
v1 "k8s.io/api/admissionregistration/v1"
batchv1 "k8s.io/api/batch/v1"
corev1 "k8s.io/api/core/v1"
rbacv1 "k8s.io/api/rbac/v1"
apierrors "k8s.io/apimachinery/pkg/api/errors"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
"k8s.io/apimachinery/pkg/fields"
"k8s.io/apimachinery/pkg/labels"
"k8s.io/apimachinery/pkg/runtime"
clientgoscheme "k8s.io/client-go/kubernetes/scheme"
"k8s.io/client-go/rest"
"sigs.k8s.io/controller-runtime/pkg/client"
rbacv1alpha1 "github.com/gocardless/theatre/v3/apis/rbac/v1alpha1"
workloadsv1alpha1 "github.com/gocardless/theatre/v3/apis/workloads/v1alpha1"
"github.com/gocardless/theatre/v3/pkg/workloads/console/runner"
. "github.com/onsi/ginkgo"
. "github.com/onsi/gomega"
)
const (
namespace = "default"
consoleName = "console-0"
templateName = "console-template-0"
jobName = "console-0-console"
user = "kubernetes-admin"
)
var (
scheme = runtime.NewScheme()
)
func init() {
_ = clientgoscheme.AddToScheme(scheme)
_ = workloadsv1alpha1.AddToScheme(scheme)
_ = rbacv1alpha1.AddToScheme(scheme)
}
func newClient(config *rest.Config) client.Client {
kubeClient, err := client.New(config, client.Options{Scheme: scheme})
Expect(err).NotTo(HaveOccurred(), "could not connect to kubernetes cluster")
return kubeClient
}
// The console template is the ultimate owner of all resources created during
// this test, so by removing it we will clean up all objects.
func deleteConsoleTemplate(kubeClient client.Client) {
By("Delete the console template")
policy := metav1.DeletePropagationForeground
opts := &client.DeleteOptions{PropagationPolicy: &policy}
template := &workloadsv1alpha1.ConsoleTemplate{ObjectMeta: metav1.ObjectMeta{Namespace: namespace, Name: templateName}}
_ = kubeClient.Delete(context.TODO(), template, opts)
Eventually(func() metav1.StatusReason {
err := kubeClient.Get(context.TODO(), client.ObjectKey{Namespace: namespace, Name: templateName}, template)
return apierrors.ReasonForError(err)
}).Should(Equal(metav1.StatusReasonNotFound), "expected console template to be deleted, it still exists")
}
type Runner struct{}
func (r *Runner) Name() string {
return "pkg/workloads-manager/acceptance"
}
func (r *Runner) Prepare(logger kitlog.Logger, config *rest.Config) error {
return nil
}
func (r *Runner) Run(logger kitlog.Logger, config *rest.Config) {
Describe("Consoles", func() {
var (
kubeClient client.Client
)
BeforeEach(func() {
logger.Log("msg", "starting test")
kubeClient = newClient(config)
// Wait for MutatingWebhookConfig to be created
Eventually(func() bool {
mutatingWebhookConfig := &v1.MutatingWebhookConfiguration{}
err := kubeClient.Get(context.TODO(), client.ObjectKey{Namespace: "theatre-system", Name: "theatre-workloads"}, mutatingWebhookConfig)
if err != nil {
logger.Log("error", err)
return false
}
return true
}).Should(Equal(true))
// Because we use the same namespace for each spec, remove any templates
// that are left over from previous failed runs to avoid 'already exists'
// errors.
deleteConsoleTemplate(kubeClient)
})
AfterEach(func() {
deleteConsoleTemplate(kubeClient)
})
Specify("Happy path", func() {
By("Create a console template")
var TTLBeforeRunning int32 = 60
var TTLAfterFinished int32 = 10
template := buildConsoleTemplate(&TTLBeforeRunning, &TTLAfterFinished, true)
err := kubeClient.Create(context.TODO(), template)
Expect(err).NotTo(HaveOccurred(), "could not create console template")
By("Create a console")
console := buildConsole()
console.Spec.Command = []string{"sleep", "666"}
err = kubeClient.Create(context.TODO(), console)
Expect(err).NotTo(HaveOccurred(), "could not create console")
By("Expect an authorisation has been created")
consoleAuthorisation := &workloadsv1alpha1.ConsoleAuthorisation{}
Eventually(func() error {
err := kubeClient.Get(context.TODO(), client.ObjectKey{Namespace: namespace, Name: console.Name}, consoleAuthorisation)
return err
}).ShouldNot(HaveOccurred(), "could not find authorisation")
By("Expect the console phase is pending authorisation")
Eventually(func() workloadsv1alpha1.ConsolePhase {
csl := &workloadsv1alpha1.Console{}
err := kubeClient.Get(context.TODO(), client.ObjectKey{Namespace: namespace, Name: console.Name}, csl)
Expect(err).NotTo(HaveOccurred(), "could not find console")
return csl.Status.Phase
}).Should(Equal(workloadsv1alpha1.ConsolePendingAuthorisation))
By("Expect that the job has not been created")
Eventually(func() error {
job := &batchv1.Job{}
err := kubeClient.Get(context.TODO(), client.ObjectKey{Namespace: namespace, Name: jobName}, job)
return err
}).Should(HaveOccurred(), "expected not to find job, but did")
// Change the console user to another user as a user cannot authorise their own console
By("Update the console user")
err = kubeClient.Get(context.TODO(), client.ObjectKey{Namespace: namespace, Name: console.Name}, console)
Expect(err).NotTo(HaveOccurred(), "could not get console to update console user")
console.Spec.User = "[email protected]"
err = kubeClient.Update(context.TODO(), console)
Expect(err).NotTo(HaveOccurred(), "could not update console user")
By("Authorise a console")
consoleAuthorisation.Spec.Authorisations = []rbacv1.Subject{{Kind: "User", Name: user}}
err = kubeClient.Update(context.TODO(), consoleAuthorisation)
Expect(err).NotTo(HaveOccurred(), "could not authorise console")
By("Expect a job has been created")
Eventually(func() error {
job := &batchv1.Job{}
err := kubeClient.Get(context.TODO(), client.ObjectKey{Namespace: namespace, Name: jobName}, job)
return err
}).ShouldNot(HaveOccurred(), "could not find job")
By("Expect a pod has been created")
Eventually(func() ([]corev1.Pod, error) {
selectorSet, err := labels.ConvertSelectorToLabelsMap("job-name=" + jobName)
if err != nil {
return nil, err
}
opts := &client.ListOptions{Namespace: namespace, LabelSelector: labels.SelectorFromSet(selectorSet)}
podList := &corev1.PodList{}
kubeClient.List(context.TODO(), podList, opts)
return podList.Items, err
}).Should(HaveLen(1), "expected to find a single pod")
By("Expect the console phase is Running")
Eventually(func() workloadsv1alpha1.ConsolePhase {
csl := &workloadsv1alpha1.Console{}
err := kubeClient.Get(context.TODO(), client.ObjectKey{Namespace: namespace, Name: console.Name}, csl)
Expect(err).NotTo(HaveOccurred(), "could not find console")
return csl.Status.Phase
}).Should(Equal(workloadsv1alpha1.ConsoleRunning))
By("Expect the console phase eventually changes to Stopped")
Eventually(func() workloadsv1alpha1.ConsolePhase {
csl := &workloadsv1alpha1.Console{}
err := kubeClient.Get(context.TODO(), client.ObjectKey{Namespace: namespace, Name: console.Name}, csl)
Expect(err).NotTo(HaveOccurred(), "could not find console")
return csl.Status.Phase
}).Should(Equal(workloadsv1alpha1.ConsoleStopped))
// TODO: attach to pod
By("Expect that the job still exists")
job := &batchv1.Job{}
err = kubeClient.Get(context.TODO(), client.ObjectKey{Namespace: namespace, Name: jobName}, job)
Expect(err).NotTo(HaveOccurred(), "could not find job")
By("Expect that the console is deleted shortly after stopping, due to its TTL after running")
Eventually(func() error {
console := &workloadsv1alpha1.Console{}
err := kubeClient.Get(context.TODO(), client.ObjectKey{Namespace: namespace, Name: console.Name}, console)
return err
}, 12*time.Second).Should(HaveOccurred(), "expected not to find console, but did")
By("Expect that the pod eventually terminates")
Eventually(func() ([]corev1.Pod, error) {
selectorSet, err := labels.ConvertSelectorToLabelsMap("job-name=" + jobName)
if err != nil {
return nil, err
}
opts := &client.ListOptions{Namespace: namespace, LabelSelector: labels.SelectorFromSet(selectorSet)}
podList := &corev1.PodList{}
kubeClient.List(context.TODO(), podList, opts)
return podList.Items, err
}).Should(HaveLen(0), "pod did not get deleted")
})
Describe("Runner interface", func() {
var (
consoleRunner *runner.Runner
console *workloadsv1alpha1.Console
createError error
)
BeforeEach(func() {
var err error
consoleRunner, err = runner.New(config)
Expect(err).NotTo(HaveOccurred(), "could not create runner")
})
Specify("Happy path", func() {
By("Create a console template")
var TTLBeforeRunning int32 = 60
var TTLAfterFinished int32 = 10
template := buildConsoleTemplate(&TTLBeforeRunning, &TTLAfterFinished, true)
err := kubeClient.Create(context.TODO(), template, &client.CreateOptions{})
Expect(err).NotTo(HaveOccurred(), "could not create console template")
By("Create a console")
go func() {
// https://onsi.github.io/ginkgo/#marking-specs-as-failed
defer GinkgoRecover()
_, createError = consoleRunner.Create(context.TODO(), runner.CreateOptions{
Namespace: namespace,
Selector: "app=acceptance",
Timeout: 6 * time.Second,
Reason: "",
Command: []string{"sleep", "666"},
Attach: false,
})
Expect(createError).To(BeNil())
}()
By("Wait for the console to be created")
Eventually(func() *workloadsv1alpha1.Console {
opts := &client.ListOptions{Namespace: namespace}
consoleList := &workloadsv1alpha1.ConsoleList{}
err := kubeClient.List(context.TODO(), consoleList, opts)
Expect(err).To(BeNil(), "Failed to list consoles")
if len(consoleList.Items) == 1 {
console = &consoleList.Items[0]
return &consoleList.Items[0]
}
return nil
}).ShouldNot(BeNil())
By("Expect an authorisation has been created")
Eventually(func() error {
consoleAuthorisation := &workloadsv1alpha1.ConsoleAuthorisation{}
err = kubeClient.Get(context.TODO(), client.ObjectKey{Namespace: namespace, Name: console.Name}, consoleAuthorisation)
return err
}).ShouldNot(HaveOccurred(), "could not find authorisation")
By("Expect the console phase is pending authorisation")
Eventually(func() workloadsv1alpha1.ConsolePhase {
err := kubeClient.Get(context.TODO(), client.ObjectKey{Namespace: namespace, Name: console.Name}, console)
Expect(err).NotTo(HaveOccurred(), "could not find console")
return console.Status.Phase
}).Should(Equal(workloadsv1alpha1.ConsolePendingAuthorisation))
By("Expect that the job has not been created")
Eventually(func() error {
job := &batchv1.Job{}
err := kubeClient.Get(context.TODO(), client.ObjectKey{Namespace: namespace, Name: console.Name + "-console"}, job)
return err
}).Should(HaveOccurred(), "expected not to find job, but did")
// Change the console user to another user as a user cannot authorise their own console
By("Update the console user")
Eventually(func() error {
err = kubeClient.Get(context.TODO(), client.ObjectKey{Namespace: namespace, Name: console.Name}, console)
console.Spec.User = "[email protected]"
return kubeClient.Update(context.TODO(), console)
}).ShouldNot(HaveOccurred(), "could not update console user")
By("Authorise a console and attach")
go func() {
// https://onsi.github.io/ginkgo/#mental-model-how-ginkgo-handles-failure
defer GinkgoRecover()
err := consoleRunner.Authorise(context.TODO(), runner.AuthoriseOptions{
Namespace: namespace,
ConsoleName: console.Name,
Username: user,
Attach: true,
KubeConfig: config,
IO: runner.IOStreams{
In: nil,
Out: nil,
ErrOut: nil,
},
Hook: nil,
})
Expect(err).NotTo(HaveOccurred(), "could not authorise console")
}()
var pod *corev1.Pod
By("Expect a pod has been created")
Eventually(func() ([]corev1.Pod, error) {
selectorSet, err := labels.ConvertSelectorToLabelsMap("console-name=" + console.Name)
if err != nil {
return nil, err
}
opts := &client.ListOptions{Namespace: namespace, LabelSelector: labels.SelectorFromSet(selectorSet)}
podList := &corev1.PodList{}
kubeClient.List(context.TODO(), podList, opts)
// Save a reference to the pod for later
if len(podList.Items) == 1 {
pod = &podList.Items[0]
}
return podList.Items, err
}).Should(HaveLen(1), "expected to find a single pod")
By("Expect the console phase is Running")
Eventually(func() workloadsv1alpha1.ConsolePhase {
err = kubeClient.Get(context.TODO(), client.ObjectKey{Namespace: namespace, Name: console.Name}, console)
Expect(err).NotTo(HaveOccurred(), "could not find console")
return console.Status.Phase
}).Should(Equal(workloadsv1alpha1.ConsoleRunning))
By("Attach to the console")
go consoleRunner.Attach(context.TODO(), runner.AttachOptions{
Namespace: console.Namespace,
KubeConfig: config,
Name: console.Name,
IO: runner.IOStreams{
In: nil,
Out: nil,
ErrOut: nil,
},
Hook: nil,
})
By("Expect that the attachment is observed twice")
Eventually(func() []corev1.Event {
events := &corev1.EventList{}
err := kubeClient.List(
context.TODO(), events,
client.InNamespace(namespace),
client.MatchingFieldsSelector{
Selector: fields.AndSelectors(
fields.OneTermEqualSelector("reason", "ConsoleAttach"),
fields.OneTermEqualSelector("involvedObject.name", pod.Name),
fields.OneTermEqualSelector("involvedObject.uid", string(pod.UID)),
),
},
)
Expect(err).ToNot(HaveOccurred())
return events.Items
}).Should(And(HaveLen(1), WithTransform(func(evs []corev1.Event) int { return int(evs[0].Count) }, Equal(2))))
By("Expect the console phase eventually changes to Stopped")
Eventually(func() workloadsv1alpha1.ConsolePhase {
err = kubeClient.Get(context.TODO(), client.ObjectKey{Namespace: namespace, Name: console.Name}, console)
Expect(err).NotTo(HaveOccurred(), "could not find console")
return console.Status.Phase
}).Should(Equal(workloadsv1alpha1.ConsoleStopped))
By("Expect that the console is deleted shortly after stopping, due to its TTL")
Eventually(func() error {
err = kubeClient.Get(context.TODO(), client.ObjectKey{Namespace: namespace, Name: console.Name}, console)
return err
}, 12*time.Second).Should(HaveOccurred(), "expected not to find console, but did")
By("Expect that the pod eventually terminates")
Eventually(func() ([]corev1.Pod, error) {
selectorSet, err := labels.ConvertSelectorToLabelsMap("console-name=" + console.Name)
if err != nil {
return nil, err
}
opts := &client.ListOptions{Namespace: namespace, LabelSelector: labels.SelectorFromSet(selectorSet)}
podList := &corev1.PodList{}
kubeClient.List(context.TODO(), podList, opts)
return podList.Items, err
}).Should(HaveLen(0), "pod did not get deleted")
})
})
Specify("Deleting a console template", func() {
By("Create a console template")
template := buildConsoleTemplate(nil, nil, false)
err := kubeClient.Create(context.TODO(), template)
Expect(err).NotTo(HaveOccurred(), "could not create console template")
By("Create a console")
console := buildConsole()
err = kubeClient.Create(context.TODO(), console)
Expect(err).NotTo(HaveOccurred(), "could not create console")
By("Expect a console has been created")
err = kubeClient.Get(context.TODO(), client.ObjectKey{Namespace: namespace, Name: console.Name}, console)
Expect(err).NotTo(HaveOccurred(), "could not find console")
By("Expect consoleTemplate becomes console owner")
Eventually(func() []metav1.OwnerReference {
kubeClient.Get(context.TODO(), client.ObjectKey{Namespace: namespace, Name: console.Name}, console)
return console.OwnerReferences
}).Should(HaveLen(1), "console has no owners")
Expect(console.OwnerReferences[0].Name).To(Equal(template.Name), "consoleTemplate is not set as console owner")
// Leave this assertion rather than using the deleteConsoleTemplate
// function, as it's useful to assert on any errors that are returned
// from the deletion operation, which deleteConsoleTemplate deliberately
// omits.
By("Delete the console template")
policy := metav1.DeletePropagationForeground
opts := &client.DeleteOptions{PropagationPolicy: &policy}
template = &workloadsv1alpha1.ConsoleTemplate{ObjectMeta: metav1.ObjectMeta{Namespace: namespace, Name: templateName}}
err = kubeClient.Delete(context.TODO(), template, opts)
Expect(err).NotTo(HaveOccurred(), "could not delete console template")
Eventually(func() error {
err = kubeClient.Get(context.TODO(), client.ObjectKey{Namespace: namespace, Name: template.Name}, template)
return err
}).Should(HaveOccurred(), "expected console template to be deleted, it still exists")
By("Expect that the console no longer exists")
Eventually(func() error {
err = kubeClient.Get(context.TODO(), client.ObjectKey{Namespace: namespace, Name: console.Name}, console)
return err
}).Should(HaveOccurred(), "expected not to find console, but did")
})
Specify("Deleting a job", func() {
By("Create a console template")
template := buildConsoleTemplate(nil, nil, false)
err := kubeClient.Create(context.TODO(), template)
Expect(err).NotTo(HaveOccurred(), "could not create console template")
By("Create a console")
console := buildConsole()
err = kubeClient.Create(context.TODO(), console)
Expect(err).NotTo(HaveOccurred(), "could not create console")
By("Expect a job has been created")
Eventually(func() error {
job := &batchv1.Job{}
err := kubeClient.Get(context.TODO(), client.ObjectKey{Namespace: namespace, Name: jobName}, job)
return err
}).ShouldNot(HaveOccurred(), "could not find job")
By("Delete the job")
policy := metav1.DeletePropagationForeground
opts := &client.DeleteOptions{PropagationPolicy: &policy}
job := &batchv1.Job{ObjectMeta: metav1.ObjectMeta{Namespace: namespace, Name: jobName}}
err = kubeClient.Delete(context.TODO(), job, opts)
Expect(err).NotTo(HaveOccurred(), "could not delete console job")
By("Expect that the job no longer exists")
Eventually(func() error {
job := &batchv1.Job{}
err := kubeClient.Get(context.TODO(), client.ObjectKey{Namespace: namespace, Name: console.Name}, job)
return err
}).Should(HaveOccurred(), "expected not to find job, but did")
By("Expect the console phase is Destroyed")
Eventually(func() workloadsv1alpha1.ConsolePhase {
err = kubeClient.Get(context.TODO(), client.ObjectKey{Namespace: namespace, Name: console.Name}, console)
Expect(err).NotTo(HaveOccurred(), "could not find console")
return console.Status.Phase
}).Should(Equal(workloadsv1alpha1.ConsoleDestroyed))
})
})
}
func buildConsoleTemplate(TTLBeforeRunning, TTLAfterFinished *int32, authorised bool) *workloadsv1alpha1.ConsoleTemplate {
var (
defaultAuthorisation *workloadsv1alpha1.ConsoleAuthorisers
authorisationRules []workloadsv1alpha1.ConsoleAuthorisationRule
)
if authorised {
defaultAuthorisation = &workloadsv1alpha1.ConsoleAuthorisers{
AuthorisationsRequired: 1,
Subjects: []rbacv1.Subject{
{Kind: "User", Name: user},
},
}
authorisationRules = []workloadsv1alpha1.ConsoleAuthorisationRule{
{
Name: "no-review",
MatchCommandElements: []string{"sleep", "1"},
ConsoleAuthorisers: workloadsv1alpha1.ConsoleAuthorisers{
AuthorisationsRequired: 0,
Subjects: []rbacv1.Subject{},
},
},
{
Name: "bad-command",
MatchCommandElements: []string{"sleep", "666"},
ConsoleAuthorisers: workloadsv1alpha1.ConsoleAuthorisers{
AuthorisationsRequired: 1,
Subjects: []rbacv1.Subject{
{Kind: "User", Name: user},
},
},
},
}
}
return &workloadsv1alpha1.ConsoleTemplate{
ObjectMeta: metav1.ObjectMeta{
Name: templateName,
Namespace: namespace,
Labels: map[string]string{
"app": "acceptance",
},
},
Spec: workloadsv1alpha1.ConsoleTemplateSpec{
MaxTimeoutSeconds: 60,
DefaultTTLSecondsBeforeRunning: TTLBeforeRunning,
DefaultTTLSecondsAfterFinished: TTLAfterFinished,
AdditionalAttachSubjects: []rbacv1.Subject{{Kind: "User", Name: "[email protected]"}},
AuthorisationRules: authorisationRules,
DefaultAuthorisationRule: defaultAuthorisation,
Template: workloadsv1alpha1.PodTemplatePreserveMetadataSpec{
Spec: corev1.PodSpec{
// Set the grace period to 0, to ensure quick cleanup.
TerminationGracePeriodSeconds: new(int64),
Containers: []corev1.Container{
{
Image: "alpine:latest",
Name: "console-container-0",
Command: []string{"false", "false", "false"},
},
},
RestartPolicy: "Never",
},
},
},
}
}
func buildConsole() *workloadsv1alpha1.Console {
return &workloadsv1alpha1.Console{
ObjectMeta: metav1.ObjectMeta{
Name: consoleName,
Namespace: namespace,
},
Spec: workloadsv1alpha1.ConsoleSpec{
Command: []string{"sleep", "30"},
ConsoleTemplateRef: corev1.LocalObjectReference{Name: templateName},
TimeoutSeconds: 10,
},
}
}