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:
parent
06db774cdd
commit
bfaeefafd3
1 changed files with 2 additions and 2 deletions
|
@ -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)
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue