You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Sep 9, 2020. It is now read-only.
Is this a BUG REPORT or FEATURE REQUEST?:
/kind bug
What happened:
ks param list command shows error if components/params.libsonnet has null or array.
vim components/params.libsonnet
{
global: {
},
components: {
‘test-v1': {
envs: null,
},
},
}
$ ks param list
ERROR get all component params for : Found an unsupported param AST node type: *ast.LiteralNull
vim components/params.libsonnet
{
global: {
},
components: {
‘test-v1': {
envs: [],
},
},
}
$ ks param list
ERROR get all component params for : Found an unsupported param AST node type: *ast.Array
Environment:
ksonnet version (use ks version):
$ ks version
ksonnet version: 0.9.2
jsonnet version: v0.9.5