Skip to content

Commit

Permalink
Merge pull request #442 from devasmith/develop
Browse files Browse the repository at this point in the history
Fix wrong types in `values.schema.json`

Merged despite build failures because of an incompatible upgrade.
  • Loading branch information
RangerRick authored Dec 16, 2024
2 parents 70c340a + 2fbb280 commit 344f8be
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 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.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

0 comments on commit 344f8be

Please sign in to comment.