Skip to content

Commit c0870e0

Browse files
authored
Helm Chart: Ensure mariadb port value can be set (#4844)
* 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
1 parent 94d1947 commit c0870e0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

deploy/kubernetes/console/values.schema.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -300,7 +300,7 @@
300300
}
301301
},
302302
"port": {
303-
"type": "null"
303+
"type": ["integer", "null"]
304304
},
305305
"resources": {
306306
"type": "object",

0 commit comments

Comments
 (0)