@@ -21,47 +21,43 @@ def test_read():
21
21
result ["objects" ] = sorted (result ["objects" ], key = lambda item : item .get ("kind" ))
22
22
result ["templates" ] = sorted (result ["templates" ], key = lambda item : item .get ("path" ))
23
23
assert_that (result , has_entries (
24
- {
25
- 'name' : 'test-chart' ,
26
- 'appVersion' : '1.16.0' ,
27
- 'apiVersion' : 'v2' ,
28
- 'version' : '0.1.0' ,
29
- 'description' : 'A Helm chart for Kubernetes' ,
30
- 'type' : 'application' ,
31
- 'dependencies' : [
32
- {'name' : 'postgresql' , 'condition' : 'postgresql.enabled' , 'version' : '1.2.3' ,
33
- 'repository' : 'https://lol.de/repo/' },
34
- {'name' : 'mysql' , 'condition' : 'mysql.enabled' , 'version' : '1.2.3' , 'repository' : 'https://lol.de/repo/' }
35
- ],
36
- 'values' : [
37
- {'name' : 'replicaCount' , 'description' : 'how many replicas to deploy\n ' , 'default' : 1 , 'example' : '' },
38
- {'name' : 'image' , 'description' : 'which image to deploy\n ' , 'default' : {'repository' : 'nginx' , 'pullPolicy' : 'IfNotPresent' , 'tag' : '' }, 'example' : '\n image:\n repository: very-doge-wow/stella\n pullPolicy: IfNotPresent\n tag: "latest"\n ' },
39
- {'name' : 'imagePullSecrets' , 'description' : '' , 'default' : [], 'example' : '' },
40
- {'name' : 'nameOverride' , 'description' : '' , 'default' : '' , 'example' : '' },
41
- {'name' : 'fullnameOverride' , 'description' : '' , 'default' : '' , 'example' : '' },
42
- {'name' : 'serviceAccount' , 'description' : '' , 'default' : {'create' : True , 'annotations' : {}, 'name' : '' }, 'example' : '' }, {'name' : 'podAnnotations' , 'description' : '' , 'default' : {}, 'example' : '' },
43
- {'name' : 'podSecurityContext' , 'description' : '' , 'default' : {}, 'example' : '' },
44
- {'name' : 'securityContext' , 'description' : '' , 'default' : {}, 'example' : '' },
45
- {'name' : 'service' , 'description' : '' , 'default' : {'type' : 'ClusterIP' , 'port' : 80 }, 'example' : '' },
46
- {'name' : 'ingress' , 'description' : '' , 'default' : {'enabled' : False , 'className' : '' , 'annotations' : {}, 'hosts' : [{'host' : 'chart-example.local' , 'paths' : [{'path' : '/' , 'pathType' : 'ImplementationSpecific' }]}], 'tls' : []}, 'example' : '' },
47
- {'name' : 'resources' , 'description' : '' , 'default' : {}, 'example' : '' },
48
- {'name' : 'autoscaling' , 'description' : '' , 'default' : {'enabled' : False , 'minReplicas' : 1 , 'maxReplicas' : 100 , 'targetCPUUtilizationPercentage' : 80 }, 'example' : '' }, {'name' : 'nodeSelector' , 'description' : '' , 'default' : {}, 'example' : '' },
49
- {'name' : 'tolerations' , 'description' : '' , 'default' : [], 'example' : '' },
50
- {'name' : 'affinity' , 'description' : '' , 'default' : {}, 'example' : '' }],
51
- 'templates' : [
52
- {'path' : 'deployment.yaml' },
53
- {'path' : 'hpa.yaml' },
54
- {'path' : 'ingress.yaml' },
55
- {'path' : 'service.yaml' },
56
- {'path' : 'serviceaccount.yaml' }
57
- ],
58
- 'objects' : [
59
- {'kind' : 'Deployment' , 'from Template' : 'deployment.yaml' },
60
- {'kind' : 'HorizontalPodAutoscaler' , 'from Template' : 'hpa.yaml' },
61
- {'kind' : 'Ingress' , 'from Template' : 'ingress.yaml' },
62
- {'kind' : 'Service' , 'from Template' : 'service.yaml' },
63
- {'kind' : 'ServiceAccount' , 'from Template' : 'serviceaccount.yaml' },
64
- ],
24
+ {'name' : 'test-chart' , 'appVersion' : '1.16.0' , 'apiVersion' : 'v2' , 'version' : '0.1.0' ,
25
+ 'description' : 'A Helm chart for Kubernetes' , 'type' : 'application' , 'dependencies' : [
26
+ {'name' : 'postgresql' , 'condition' : 'postgresql.enabled' , 'version' : '1.2.3' ,
27
+ 'repository' : 'https://lol.de/repo/' },
28
+ {'name' : 'mysql' , 'condition' : 'mysql.enabled' , 'version' : '1.2.3' , 'repository' : 'https://lol.de/repo/' }],
29
+ 'values' : [
30
+ {'name' : 'replicaCount' , 'description' : 'how many replicas to deploy\n ' , 'default' : {'replicaCount' : 1 },
31
+ 'example' : '' }, {'name' : 'image' , 'description' : 'which image to deploy\n ' ,
32
+ 'default' : {'image' : {'repository' : 'nginx' , 'pullPolicy' : 'IfNotPresent' , 'tag' : '' }},
33
+ 'example' : '\n image:\n repository: very-doge-wow/stella\n pullPolicy: IfNotPresent\n tag: "latest"\n ' },
34
+ {'name' : 'imagePullSecrets' , 'description' : '' , 'default' : {'imagePullSecrets' : []}, 'example' : '' },
35
+ {'name' : 'nameOverride' , 'description' : '' , 'default' : {'nameOverride' : '' }, 'example' : '' },
36
+ {'name' : 'fullnameOverride' , 'description' : '' , 'default' : {'fullnameOverride' : '' }, 'example' : '' },
37
+ {'name' : 'serviceAccount' , 'description' : '' ,
38
+ 'default' : {'serviceAccount' : {'create' : True , 'annotations' : {}, 'name' : '' }}, 'example' : '' },
39
+ {'name' : 'podAnnotations' , 'description' : '' , 'default' : {'podAnnotations' : {}}, 'example' : '' },
40
+ {'name' : 'podSecurityContext' , 'description' : '' , 'default' : {'podSecurityContext' : {}}, 'example' : '' },
41
+ {'name' : 'securityContext' , 'description' : '' , 'default' : {'securityContext' : {}}, 'example' : '' },
42
+ {'name' : 'service' , 'description' : '' , 'default' : {'service' : {'type' : 'ClusterIP' , 'port' : 80 }},
43
+ 'example' : '' }, {'name' : 'ingress' , 'description' : '' , 'default' : {
44
+ 'ingress' : {'enabled' : False , 'className' : '' , 'annotations' : {}, 'hosts' : [
45
+ {'host' : 'chart-example.local' , 'paths' : [{'path' : '/' , 'pathType' : 'ImplementationSpecific' }]}],
46
+ 'tls' : []}}, 'example' : '' },
47
+ {'name' : 'resources' , 'description' : '' , 'default' : {'resources' : {}}, 'example' : '' },
48
+ {'name' : 'autoscaling' , 'description' : '' , 'default' : {
49
+ 'autoscaling' : {'enabled' : False , 'minReplicas' : 1 , 'maxReplicas' : 100 ,
50
+ 'targetCPUUtilizationPercentage' : 80 }}, 'example' : '' },
51
+ {'name' : 'nodeSelector' , 'description' : '' , 'default' : {'nodeSelector' : {}}, 'example' : '' },
52
+ {'name' : 'tolerations' , 'description' : '' , 'default' : {'tolerations' : []}, 'example' : '' },
53
+ {'name' : 'affinity' , 'description' : '' , 'default' : {'affinity' : {}}, 'example' : '' }],
54
+ 'templates' : [{'path' : 'deployment.yaml' }, {'path' : 'hpa.yaml' }, {'path' : 'ingress.yaml' },
55
+ {'path' : 'service.yaml' }, {'path' : 'serviceaccount.yaml' }],
56
+ 'objects' : [{'kind' : 'Deployment' , 'from Template' : 'deployment.yaml' },
57
+ {'kind' : 'HorizontalPodAutoscaler' , 'from Template' : 'hpa.yaml' },
58
+ {'kind' : 'Ingress' , 'from Template' : 'ingress.yaml' },
59
+ {'kind' : 'Service' , 'from Template' : 'service.yaml' },
60
+ {'kind' : 'ServiceAccount' , 'from Template' : 'serviceaccount.yaml' }],
65
61
'commands' : [{'description' : '' , 'command' : '' }]}
66
62
))
67
63
@@ -117,12 +113,12 @@ def test_generate_values_doc_and_example():
117
113
{
118
114
'name' : 'replicaCount' ,
119
115
'description' : 'how many replicas to deploy\n ' ,
120
- 'default' : 1 , 'example' : ''
116
+ 'default' : { 'replicaCount' : 1 } , 'example' : ''
121
117
},
122
118
{
123
119
'name' : 'image' ,
124
120
'description' : 'which image to deploy\n ' ,
125
- 'default' : {'repository' : 'nginx' , 'pullPolicy' : 'IfNotPresent' , 'tag' : '' },
121
+ 'default' : {'image' : { ' repository' : 'nginx' , 'pullPolicy' : 'IfNotPresent' , 'tag' : '' } },
126
122
'example' : '\n image:\n repository: very-doge-wow/stella\n pullPolicy: IfNotPresent\n tag: "latest"\n '
127
123
}
128
124
))
@@ -147,11 +143,32 @@ def test_generate_values_doc_only():
147
143
{
148
144
'name' : 'replicaCount' ,
149
145
'description' : 'how many replicas to deploy\n ' ,
150
- 'default' : 1 , 'example' : ''
146
+ 'default' : { 'replicaCount' : 1 } , 'example' : ''
151
147
}
152
148
))
153
149
154
150
151
+ def test_generate_values_pipes_in_tables ():
152
+ doc = {
153
+ "name" : "" ,
154
+ "appVersion" : "" ,
155
+ "apiVersion" : "" ,
156
+ "version" : "" ,
157
+ "description" : "" ,
158
+ "type" : "" ,
159
+ "dependencies" : [],
160
+ "values" : [],
161
+ "templates" : [],
162
+ "objects" : [],
163
+ "commands" : [],
164
+ }
165
+ result = chart_reader .generate_values_doc (doc , "test/values-pipes" )
166
+ print (result )
167
+ assert_that (result ["values" ], contains_inanyorder (
168
+ {'name' : 'customObjects' , 'description' : 'Test for using pipes in examples\n ' , 'default' : {'customObjects' : []}, 'example' : '\n customObjects:\n - \\ |\n best-string\n ' }
169
+ ))
170
+
171
+
155
172
def test_generate_requirements ():
156
173
doc = {
157
174
"name" : "" ,
0 commit comments