Add global to possible values
This commit is contained in:
@ -2,7 +2,7 @@ apiVersion: v2
|
||||
name: softplayer-lib-crd
|
||||
description: A library to be reused accross softplayer charts
|
||||
type: library
|
||||
version: 0.1.0
|
||||
version: 0.1.1
|
||||
maintainers:
|
||||
- name: allanger
|
||||
email: allanger@badhouseplants.net
|
||||
|
12
charts/crds/values.schema.json
Normal file
12
charts/crds/values.schema.json
Normal file
@ -0,0 +1,12 @@
|
||||
{
|
||||
"additionalProperties": false,
|
||||
"properties": {
|
||||
"global": {
|
||||
"description": "Global values are values that can be accessed from any chart or subchart by exactly the same name.",
|
||||
"title": "global",
|
||||
"type": "object"
|
||||
}
|
||||
},
|
||||
"$schema": "http://json-schema.org/draft-07/schema#",
|
||||
"type": "object"
|
||||
}
|
@ -2,7 +2,7 @@ apiVersion: v2
|
||||
name: softplayer-lib-workload
|
||||
description: A library to be reused accross softplayer charts
|
||||
type: library
|
||||
version: 0.1.0
|
||||
version: 0.1.1
|
||||
maintainers:
|
||||
- name: allanger
|
||||
email: allanger@badhouseplants.net
|
||||
|
15
charts/workload/values.schema.json
Normal file
15
charts/workload/values.schema.json
Normal file
@ -0,0 +1,15 @@
|
||||
{
|
||||
"additionalProperties": false,
|
||||
"properties": {
|
||||
"global": {
|
||||
"additionalProperties": false,
|
||||
"title": "global",
|
||||
"type": "object"
|
||||
}
|
||||
},
|
||||
"$schema": "http://json-schema.org/draft-07/schema#",
|
||||
"type": "object",
|
||||
"required": [
|
||||
"global"
|
||||
]
|
||||
}
|
@ -1 +1 @@
|
||||
~
|
||||
global: {}
|
||||
|
Reference in New Issue
Block a user