From 55f6a935b93ca914923e622cdae78dd0ded7725a Mon Sep 17 00:00:00 2001 From: Maitiu O Ciarain Date: Mon, 17 Aug 2026 13:11:41 +0200 Subject: [PATCH 1/2] Update doc strings and docs with correct quotes --- cli/cmd/template_config.go | 8 ++++---- docs/oms_template_config.md | 6 +++--- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/cli/cmd/template_config.go b/cli/cmd/template_config.go index e2744a19c..37fead88d 100644 --- a/cli/cmd/template_config.go +++ b/cli/cmd/template_config.go @@ -56,14 +56,14 @@ This command prints the rendered configuration to stdout so templating can be te Template syntax in config.yaml: # Inject a secret value (defaults to the "content"/"password" field) - someKey: "{{ secret "mySecret" }}" + someKey: '{{ secret "mySecret" }}' # Select a specific field - username: "{{ secret "mySecret" "fields.username" }}" - password: "{{ secret "mySecret" "fields.password" }}" + username: '{{ secret "mySecret" "fields.username" }}' + password: '{{ secret "mySecret" "fields.password" }}' # Inject a file secret's content - caCert: "{{ secret "caCert" "file.content" }}" + caCert: '{{ secret "caCert" "file.content" }}' Secret names and selectors must match entries in the prod.vault.yaml file.`), Example: util.FormatExamples("template config", []io.Example{ diff --git a/docs/oms_template_config.md b/docs/oms_template_config.md index bd734a4bf..d6fb7b0f3 100644 --- a/docs/oms_template_config.md +++ b/docs/oms_template_config.md @@ -11,11 +11,11 @@ This command prints the rendered configuration to stdout so templating can be te Template syntax in config.yaml: # Inject a secret value (defaults to the "content"/"password" field) - someKey: "{{ secret "mySecret" }}" + someKey: '{{ secret "mySecret" }}' # Select a specific field - username: "{{ secret "mySecret" "fields.username" }}" - password: "{{ secret "mySecret" "fields.password" }}" + username: '{{ secret "mySecret" "fields.username" }}' + password: '{{ secret "mySecret" "fields.password" }}' # Inject a file secret's content caCert: "{{ secret "caCert" "file.content" }}" From 37a57b06a2e5d728467180c7da53ac699cf26076 Mon Sep 17 00:00:00 2001 From: mociarain <20353159+mociarain@users.noreply.github.com> Date: Mon, 17 Aug 2026 11:15:53 +0000 Subject: [PATCH 2/2] chore(docs): Auto-update docs and licenses Signed-off-by: mociarain <20353159+mociarain@users.noreply.github.com> --- docs/oms_template_config.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/oms_template_config.md b/docs/oms_template_config.md index d6fb7b0f3..8a8967e8e 100644 --- a/docs/oms_template_config.md +++ b/docs/oms_template_config.md @@ -18,7 +18,7 @@ Template syntax in config.yaml: password: '{{ secret "mySecret" "fields.password" }}' # Inject a file secret's content - caCert: "{{ secret "caCert" "file.content" }}" + caCert: '{{ secret "caCert" "file.content" }}' Secret names and selectors must match entries in the prod.vault.yaml file.