@@ -45,6 +45,57 @@ tests:
45
45
- isNullOrEmpty :
46
46
path : spec.template.spec.volumes
47
47
48
+ # Custom Envs
49
+ - it : Custom Env vars
50
+ set :
51
+ env :
52
+ - name : CUSTOM_ENV_VAR
53
+ value : CUSTOM_ENV_VALUE
54
+ asserts :
55
+ - contains :
56
+ path : spec.template.spec.containers[0].env
57
+ count : 1
58
+ content :
59
+ name : CUSTOM_ENV_VAR
60
+ value : CUSTOM_ENV_VALUE
61
+
62
+ # Param changes
63
+ - it : imageCacheTimeout
64
+ set :
65
+ versionChecker.imageCacheTimeout : 60m
66
+ asserts :
67
+ - contains :
68
+ path : spec.template.spec.containers[0].args
69
+ count : 1
70
+ content : " --image-cache-timeout=60m"
71
+
72
+ - it : logLevel
73
+ set :
74
+ versionChecker.logLevel : debug
75
+ asserts :
76
+ - contains :
77
+ path : spec.template.spec.containers[0].args
78
+ count : 1
79
+ content : " --log-level=debug"
80
+
81
+ - it : metricsServingAddress
82
+ set :
83
+ versionChecker.metricsServingAddress : 0.0.0.0:9999
84
+ asserts :
85
+ - contains :
86
+ path : spec.template.spec.containers[0].args
87
+ count : 1
88
+ content : " --metrics-serving-address=0.0.0.0:9999"
89
+
90
+ - it : testAllContainers
91
+ set :
92
+ versionChecker.testAllContainers : false
93
+ asserts :
94
+ - contains :
95
+ path : spec.template.spec.containers[0].args
96
+ count : 1
97
+ content : " --test-all-containers=false"
98
+
48
99
# ACR
49
100
- it : ACR should work
50
101
set :
@@ -306,3 +357,35 @@ tests:
306
357
name : version-checker
307
358
secret :
308
359
secretName : version-checker
360
+
361
+ - it : Resources are reflected
362
+ set :
363
+ resources :
364
+ limits :
365
+ cpu : 100m
366
+ memory : 512Mi
367
+ asserts :
368
+ - equal :
369
+ path : spec.template.spec.containers[0].resources
370
+ value :
371
+ limits :
372
+ cpu : 100m
373
+ memory : 512Mi
374
+
375
+ - it : Custom Labels to Pod
376
+ set :
377
+ additionalLabels :
378
+ foo : bar
379
+ asserts :
380
+ - equal :
381
+ path : spec.template.metadata.labels["foo"]
382
+ value : bar
383
+
384
+ - it : Custom Annotations to Pod
385
+ set :
386
+ additionalAnnotations :
387
+ foo : bar
388
+ asserts :
389
+ - equal :
390
+ path : spec.template.metadata.annotations["foo"]
391
+ value : bar
0 commit comments