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:
Sol Roberts 2024-02-06 12:21:26 +01:00 committed by GitHub
parent e60fa67109
commit 5401c63c9e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -77,6 +77,7 @@ import io.quarkiverse.operatorsdk.annotations.SharedCSVMetadata;
capabilities = "Deep Insights",
categories = "Security",
certified = false,
// language=JSON
almExamples =
"[\n" +
" {\n" +
@ -90,9 +91,12 @@ import io.quarkiverse.operatorsdk.annotations.SharedCSVMetadata;
" },\n" +
" \"spec\": {\n" +
" \"instances\": 1,\n" +
" \"hostname\": \"example.org\",\n" +
" \"http\":\n {" +
" \"tlsSecret\": \"my-tls-secret\" } \n" +
" \"hostname\": {\n" +
" \"hostname\": \"example.org\"\n" +
" },\n" +
" \"http\": {\n" +
" \"tlsSecret\": \"my-tls-secret\"\n" +
" }\n" +
" }\n" +
" },\n" +
" {\n" +