Skip to content

Commit

Permalink
Helm Chart: Ensure mariadb port value can be set (#4844)
Browse files Browse the repository at this point in the history
* Helm Chart: Ensure mariadb port value can be set
- fixes #4843

* Allow for missing mariadb.port
Without this we get the opposite error
```
Error: values don't meet the specifications of the schema(s) in the following chart(s):
console:
- mariadb.port: Invalid type. Expected: integer, given: null
```
have now tested with and without mariadb.port and now in both cases we get the expected `DB_PORT` value in the rendered template
  • Loading branch information
richard-cox authored Dec 18, 2020
1 parent 94d1947 commit c0870e0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion deploy/kubernetes/console/values.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -300,7 +300,7 @@
}
},
"port": {
"type": "null"
"type": ["integer", "null"]
},
"resources": {
"type": "object",
Expand Down

0 comments on commit c0870e0

Please sign in to comment.