Skip to content

Commit 8063bc9

Browse files
authored
Fix wrong JSON bool value in a imagestream trigger example annotation
JSON boolean type can be true/false, not "true"/"false", replace "false" with false. This wrong example causes an error to convert JSON data type in "openshift-controller" pod of "openshift-controller-manager" project, it also ignores image triger events.
1 parent dbf6f1b commit 8063bc9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

modules/images-triggering-updates-imagestream-changes-kubernetes-about.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Value:
2222
"namespace": "myapp" <3>
2323
},
2424
"fieldPath": "spec.template.spec.containers[?(@.name==\"web\")].image", <4>
25-
"paused": "false" <5>
25+
"paused": false <5>
2626
},
2727
...
2828
]

0 commit comments

Comments
 (0)