From c11c084bfed8996268354a8e32c31be5244fc2ea Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julian=20F=C3=B6lsch?= Date: Fri, 3 Jan 2025 15:28:40 +0100 Subject: [PATCH] Fix LDAP values types (#465) --- charts/netbox/Chart.yaml | 2 +- charts/netbox/values.schema.json | 4 ++-- charts/netbox/values.yaml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/charts/netbox/Chart.yaml b/charts/netbox/Chart.yaml index 48a4d295..0eba5b6b 100644 --- a/charts/netbox/Chart.yaml +++ b/charts/netbox/Chart.yaml @@ -1,6 +1,6 @@ apiVersion: v2 name: netbox -version: 5.0.7 +version: 5.0.8 # renovate: image=ghcr.io/netbox-community/netbox appVersion: "v4.1.10" type: application diff --git a/charts/netbox/values.schema.json b/charts/netbox/values.schema.json index ac3b10a3..6919d899 100644 --- a/charts/netbox/values.schema.json +++ b/charts/netbox/values.schema.json @@ -1057,10 +1057,10 @@ "type": "boolean" }, "mirrorGroups": { - "type": "boolean" + "type": ["boolean", "string", "array"] }, "mirrorGroupsExcept": { - "type": "string" + "type": ["null", "string", "array"] }, "cacheTimeout": { "type": "integer" diff --git a/charts/netbox/values.yaml b/charts/netbox/values.yaml index 6a72dd85..71217c2f 100644 --- a/charts/netbox/values.yaml +++ b/charts/netbox/values.yaml @@ -402,7 +402,7 @@ remoteAuth: - CN=Domain Admins,CN=Users,DC=example,dc=com findGroupPerms: true mirrorGroups: true - mirrorGroupsExcept: "" + mirrorGroupsExcept: [] cacheTimeout: 3600 attrFirstName: givenName attrLastName: sn