From 51d8b580ae63ec3d30b9f8d9bea0a14322d336e8 Mon Sep 17 00:00:00 2001 From: Stefan Grosser <13567009+Bierchermuesli@users.noreply.github.com> Date: Tue, 5 May 2026 11:46:11 +0200 Subject: [PATCH] fix(docs): add user field to SNMPv3 device_auth examples MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The SNMPv3 example in values.yaml was missing the user field, and values-vault-eso.yaml used 'username' (not accepted by netdisco's config loader). Use 'user' consistently — that's what netdisco expects. No behavior change, comment-only fix. --- charts/netdisco/values-vault-eso.yaml | 2 +- charts/netdisco/values.yaml | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/charts/netdisco/values-vault-eso.yaml b/charts/netdisco/values-vault-eso.yaml index a3ca1c9..7ae3e56 100644 --- a/charts/netdisco/values-vault-eso.yaml +++ b/charts/netdisco/values-vault-eso.yaml @@ -37,7 +37,7 @@ eso: # SNMPv3 authPriv example (keys: snmp_v3_user, snmp_v3_auth, snmp_v3_priv) # - tag: default_v3 - # username: '{{ .snmp_v3_user }}' + # user: '{{ .snmp_v3_user }}' # auth_password: '{{ .snmp_v3_auth }}' # priv_password: '{{ .snmp_v3_priv }}' # auth_protocol: SHA diff --git a/charts/netdisco/values.yaml b/charts/netdisco/values.yaml index 4497377..9fcd1c1 100644 --- a/charts/netdisco/values.yaml +++ b/charts/netdisco/values.yaml @@ -148,6 +148,7 @@ eso: write: false # SNMPv3 example: # - tag: core_v3 + # user: '{{ .core_v3_user }}' # auth_password: '{{ .core_v3_password }}' # priv_password: '{{ .core_v3_key }}' # auth_protocol: SHA