mirror of
https://github.com/kubernetes-sigs/kustomize.git
synced 2026-06-11 17:12:51 +00:00
Fixing cmd/config/internal/commands/e2e/e2e_test.go
This commit is contained in:
@@ -87,8 +87,18 @@ metadata:
|
|||||||
expectedFiles: func(d string) map[string]string {
|
expectedFiles: func(d string) map[string]string {
|
||||||
return map[string]string{
|
return map[string]string{
|
||||||
"deployment.json": `
|
"deployment.json": `
|
||||||
{"apiVersion": "apps/v1", "kind": "Deployment", "metadata": {"name": "foo", annotations: {
|
{
|
||||||
a-string-value: '', a-int-value: '0', a-bool-value: 'false'}}}
|
"apiVersion": "apps/v1",
|
||||||
|
"kind": "Deployment",
|
||||||
|
"metadata": {
|
||||||
|
"annotations": {
|
||||||
|
"a-bool-value": "false",
|
||||||
|
"a-int-value": "0",
|
||||||
|
"a-string-value": ""
|
||||||
|
},
|
||||||
|
"name": "foo"
|
||||||
|
}
|
||||||
|
}
|
||||||
`,
|
`,
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|||||||
Reference in New Issue
Block a user