Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix wrong types in values.schema.json #442

Merged
merged 4 commits into from
Dec 16, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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.0-beta.167
version: 5.0.0-beta.168
appVersion: "v4.1.8"
type: application
kubeVersion: ^1.25.0-0
Expand Down
8 changes: 4 additions & 4 deletions charts/netbox/values.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -1021,7 +1021,7 @@
"type": "string"
},
"userDnTemplate": {
"type": "null"
"type": "string"
},
"userSearchBaseDn": {
"type": "string"
Expand Down Expand Up @@ -1063,7 +1063,7 @@
"type": "boolean"
},
"mirrorGroupsExcept": {
"type": "null"
"type": "string"
},
"cacheTimeout": {
"type": "integer"
Expand Down Expand Up @@ -1364,7 +1364,7 @@
"type": "object"
},
"terminationGracePeriodSeconds": {
"type": "null"
"type": ["null", "number"]
},
"test": {
"properties": {
Expand Down Expand Up @@ -1610,7 +1610,7 @@
"type": "array"
},
"terminationGracePeriodSeconds": {
"type": "null"
"type": ["null", "number"]
},
"tolerations": {
"type": "array"
Expand Down
4 changes: 2 additions & 2 deletions charts/netbox/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down
Loading