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
set {
name = "cluster.enabled"
value = "true"
}
or
postrender {
binary_path = "/usr/local/bin/kustomize"
args = ["build", "."]
}
are now invalid blocks and should be set as:
set = [
{
name = "cluster.enabled"
value = "true"
},
{
name = "metrics.enabled"
value = "true"
}
]
and
postrender =[{
binary_path = "/usr/local/bin/kustomize"
args = ["build", "."]
}]