Update Keycloak operator example with correct hostname syntax (#26796)
* Update Keycloak operator example with correct hostname syntax Closes #26281 Signed-off-by: badgerops <github@badgerops.net> * Adding missing ',' to ensure valid JSON structure Closes #26281 Signed-off-by: Alexander Schwartz <aschwart@redhat.com> --------- Signed-off-by: badgerops <github@badgerops.net> Signed-off-by: Alexander Schwartz <aschwart@redhat.com> Co-authored-by: Alexander Schwartz <aschwart@redhat.com>
This commit is contained in:
parent
e60fa67109
commit
5401c63c9e
1 changed files with 7 additions and 3 deletions
|
@ -77,6 +77,7 @@ import io.quarkiverse.operatorsdk.annotations.SharedCSVMetadata;
|
||||||
capabilities = "Deep Insights",
|
capabilities = "Deep Insights",
|
||||||
categories = "Security",
|
categories = "Security",
|
||||||
certified = false,
|
certified = false,
|
||||||
|
// language=JSON
|
||||||
almExamples =
|
almExamples =
|
||||||
"[\n" +
|
"[\n" +
|
||||||
" {\n" +
|
" {\n" +
|
||||||
|
@ -90,9 +91,12 @@ import io.quarkiverse.operatorsdk.annotations.SharedCSVMetadata;
|
||||||
" },\n" +
|
" },\n" +
|
||||||
" \"spec\": {\n" +
|
" \"spec\": {\n" +
|
||||||
" \"instances\": 1,\n" +
|
" \"instances\": 1,\n" +
|
||||||
" \"hostname\": \"example.org\",\n" +
|
" \"hostname\": {\n" +
|
||||||
" \"http\":\n {" +
|
" \"hostname\": \"example.org\"\n" +
|
||||||
" \"tlsSecret\": \"my-tls-secret\" } \n" +
|
" },\n" +
|
||||||
|
" \"http\": {\n" +
|
||||||
|
" \"tlsSecret\": \"my-tls-secret\"\n" +
|
||||||
|
" }\n" +
|
||||||
" }\n" +
|
" }\n" +
|
||||||
" },\n" +
|
" },\n" +
|
||||||
" {\n" +
|
" {\n" +
|
||||||
|
|
Loading…
Reference in a new issue