Skip to content

Commit

Permalink
Fix LDAP values types (#465)
Browse files Browse the repository at this point in the history
  • Loading branch information
Paktosan authored Jan 3, 2025
1 parent 6ebcfef commit c11c084
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion charts/netbox/Chart.yaml
Original file line number Diff line number Diff line change
@@ -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
Expand Down
4 changes: 2 additions & 2 deletions charts/netbox/values.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -1057,10 +1057,10 @@
"type": "boolean"
},
"mirrorGroups": {
"type": "boolean"
"type": ["boolean", "string", "array"]
},
"mirrorGroupsExcept": {
"type": "string"
"type": ["null", "string", "array"]
},
"cacheTimeout": {
"type": "integer"
Expand Down
2 changes: 1 addition & 1 deletion charts/netbox/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit c11c084

Please sign in to comment.