From fc6af2429998b7172d537ffff706f561cf0e8421 Mon Sep 17 00:00:00 2001 From: devasmith <60352859+devasmith@users.noreply.github.com> Date: Wed, 11 Dec 2024 08:14:08 +0100 Subject: [PATCH 1/5] Fix wrong type userDnTemplate in values.schema.json --- charts/netbox/Chart.yaml | 2 +- charts/netbox/values.schema.json | 2 +- charts/netbox/values.yaml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/charts/netbox/Chart.yaml b/charts/netbox/Chart.yaml index 751f575c..6e269d0a 100644 --- a/charts/netbox/Chart.yaml +++ b/charts/netbox/Chart.yaml @@ -1,6 +1,6 @@ apiVersion: v2 name: netbox -version: 5.0.0-beta.161 +version: 5.0.0-beta.162 appVersion: "v4.1.7" type: application kubeVersion: ^1.25.0-0 diff --git a/charts/netbox/values.schema.json b/charts/netbox/values.schema.json index 7f71438b..58963e8c 100644 --- a/charts/netbox/values.schema.json +++ b/charts/netbox/values.schema.json @@ -1021,7 +1021,7 @@ "type": "string" }, "userDnTemplate": { - "type": "null" + "type": "string" }, "userSearchBaseDn": { "type": "string" diff --git a/charts/netbox/values.yaml b/charts/netbox/values.yaml index b60fc66a..8ea66663 100644 --- a/charts/netbox/values.yaml +++ b/charts/netbox/values.yaml @@ -387,7 +387,7 @@ remoteAuth: caCertData: "" bindDn: CN=Netbox,OU=EmbeddedDevices,OU=MyCompany,DC=example,dc=com bindPassword: "" - userDnTemplate: null + userDnTemplate: "" userSearchBaseDn: OU=Users,OU=MyCompany,DC=example,dc=com userSearchAttr: sAMAccountName groupSearchBaseDn: OU=Groups,OU=MyCompany,DC=example,dc=com From 04c18cd203cf3d6641235feb164e43ca83a634c2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=A9o=20Colombaro?= Date: Wed, 11 Dec 2024 11:21:53 +0100 Subject: [PATCH 2/5] Additional schema fixes --- charts/netbox/values.schema.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/charts/netbox/values.schema.json b/charts/netbox/values.schema.json index 58963e8c..cb3ae013 100644 --- a/charts/netbox/values.schema.json +++ b/charts/netbox/values.schema.json @@ -1063,7 +1063,7 @@ "type": "boolean" }, "mirrorGroupsExcept": { - "type": "null" + "type": "string" }, "cacheTimeout": { "type": "integer" @@ -1364,7 +1364,7 @@ "type": "object" }, "terminationGracePeriodSeconds": { - "type": "null" + "type": ["null", "number"] }, "test": { "properties": { @@ -1610,7 +1610,7 @@ "type": "array" }, "terminationGracePeriodSeconds": { - "type": "null" + "type": ["null", "number"] }, "tolerations": { "type": "array" From f8b46285ec5f763f9c84c76fe69637193c1ec009 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=A9o=20Colombaro?= Date: Wed, 11 Dec 2024 11:22:29 +0100 Subject: [PATCH 3/5] Matching values types --- charts/netbox/values.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/charts/netbox/values.yaml b/charts/netbox/values.yaml index 8ea66663..c18993e8 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: null + mirrorGroupsExcept: "" cacheTimeout: 3600 attrFirstName: givenName attrLastName: sn From 32980469cd0dc3ade97d19198ef6ebfe6d95f641 Mon Sep 17 00:00:00 2001 From: Ben Hughes Date: Sat, 14 Dec 2024 17:02:48 +0000 Subject: [PATCH 4/5] Fix deployment `extraEnvs` template indent (#448) --- charts/netbox/Chart.yaml | 2 +- charts/netbox/templates/deployment.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/charts/netbox/Chart.yaml b/charts/netbox/Chart.yaml index eaeaf4d2..15620bf3 100644 --- a/charts/netbox/Chart.yaml +++ b/charts/netbox/Chart.yaml @@ -1,6 +1,6 @@ apiVersion: v2 name: netbox -version: 5.0.0-beta.165 +version: 5.0.0-beta.166 appVersion: "v4.1.8" type: application kubeVersion: ^1.25.0-0 diff --git a/charts/netbox/templates/deployment.yaml b/charts/netbox/templates/deployment.yaml index 28c40d58..50c6b4e2 100644 --- a/charts/netbox/templates/deployment.yaml +++ b/charts/netbox/templates/deployment.yaml @@ -97,7 +97,7 @@ spec: fieldPath: status.podIP {{- end }} {{- if .Values.extraEnvs }} - {{- include "common.tplvalues.render" (dict "value" .Values.extraEnvs "context" $) | nindent 10 }} + {{- include "common.tplvalues.render" (dict "value" .Values.extraEnvs "context" $) | nindent 8 }} {{- end }} {{- if or .Values.extraEnvVarsCM .Values.extraEnvVarsSecret }} envFrom: From 70c340aa64f29c4b65ef1053a28559f61ca99017 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sat, 14 Dec 2024 18:08:20 +0000 Subject: [PATCH 5/5] chore(deps): update postgresql docker tag to v16.3.1 (#445) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * chore(deps): update postgresql docker tag to v16.3.1 * Update Chart.yaml --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Léo Colombaro --- charts/netbox/Chart.lock | 6 +++--- charts/netbox/Chart.yaml | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/charts/netbox/Chart.lock b/charts/netbox/Chart.lock index 5b0b1fb1..5d774724 100644 --- a/charts/netbox/Chart.lock +++ b/charts/netbox/Chart.lock @@ -4,9 +4,9 @@ dependencies: version: 2.28.0 - name: postgresql repository: oci://registry-1.docker.io/bitnamicharts - version: 16.3.0 + version: 16.3.1 - name: redis repository: oci://registry-1.docker.io/bitnamicharts version: 20.5.0 -digest: sha256:4f157b4d0e685c54e9870ca0eae7e2f9e28269198b8476b774678a25601f7ccf -generated: "2024-12-11T18:30:29.549414123Z" +digest: sha256:f9b8822eb0e304d3dc575376b38bd37105a81b63eefe462866d4297d6e48cacd +generated: "2024-12-14T17:03:06.853506283Z" diff --git a/charts/netbox/Chart.yaml b/charts/netbox/Chart.yaml index 15620bf3..12602adb 100644 --- a/charts/netbox/Chart.yaml +++ b/charts/netbox/Chart.yaml @@ -1,6 +1,6 @@ apiVersion: v2 name: netbox -version: 5.0.0-beta.166 +version: 5.0.0-beta.167 appVersion: "v4.1.8" type: application kubeVersion: ^1.25.0-0 @@ -22,7 +22,7 @@ dependencies: tags: - bitnami-common - name: postgresql - version: ^16.3.0 + version: ^16.3.1 repository: oci://registry-1.docker.io/bitnamicharts condition: postgresql.enabled - name: redis