1
0
Fork 0
mirror of https://github.com/kyverno/kyverno.git synced 2025-03-31 03:45:17 +00:00

print mutated policy as yaml (#995)

This commit is contained in:
Pooja Singh 2020-07-15 20:46:49 +05:30 committed by GitHub
parent 06db774cdd
commit bfaeefafd3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -134,8 +134,8 @@ func Command() *cobra.Command {
var p v1.ClusterPolicy
json.Unmarshal(modifiedPolicy, &p)
fmt.Printf("\nmutated %s policy after mutation:\n\n", p.Name)
indentedPolicy, _ := json.MarshalIndent(p, "", " ")
fmt.Println(string(indentedPolicy))
yamlPolicy, _ := yamlv2.Marshal(p)
fmt.Println(string(yamlPolicy))
fmt.Println("___________________________________________________________________________")
newPolicies = append(newPolicies, &p)
}