From c535337f80df657ec4c56a619a5031670cf270b8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20D=C3=B6ll?= Date: Mon, 16 Sep 2024 19:49:03 +0000 Subject: [PATCH] wip: add value override --- examples/values.yaml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 examples/values.yaml diff --git a/examples/values.yaml b/examples/values.yaml new file mode 100644 index 0000000..7eb7de0 --- /dev/null +++ b/examples/values.yaml @@ -0,0 +1,19 @@ +config: + merge: + 00$include: "../custom-auth/auth.conf" +container: + patch: + - op: add + path: "/volumeMounts/-" + value: + name: auth-config + mountPath: "/etc/custom-auth" +statefulSet: + patch: + - op: add + path: /spec/template/spec/volumes/- + value: + name: "auth-config" + secret: + defaultMode: 420 + secretName: "natsoperator-sample-server-config" \ No newline at end of file