Add global to possible values

This commit is contained in:
2024-05-19 20:24:23 +02:00
parent 0ca48c8cd1
commit 9b3fd3c895
7 changed files with 44 additions and 3 deletions

View File

@ -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

View 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"
}

View File

@ -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

View 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"
]
}

View File

@ -1 +1 @@
~
global: {}