Skip to content

Commit

Permalink
feat: add helmrelease schemas 😍 (#792)
Browse files Browse the repository at this point in the history
  • Loading branch information
cwrau committed Feb 16, 2024
1 parent 1bce1a3 commit 89ed7eb
Show file tree
Hide file tree
Showing 3 changed files with 60 additions and 0 deletions.
20 changes: 20 additions & 0 deletions charts/base-cluster/helmrelease.schema.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
{
"$schema": "http://json-schema.org/draft-07/schema",
"type": "object",
"allOf": [
{
"$ref": "https://raw.githubusercontent.com/fluxcd/helm-controller/main/config/crd/bases/helm.toolkit.fluxcd.io_helmreleases.yaml#/spec.schema.openAPIV3Schema"
},
{
"properties": {
"spec": {
"properties": {
"values": {
"$ref": "./values.schema.json"
}
}
}
}
}
]
}
20 changes: 20 additions & 0 deletions charts/t8s-cluster/helmrelease.schema.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
{
"$schema": "http://json-schema.org/draft-07/schema",
"type": "object",
"allOf": [
{
"$ref": "https://raw.githubusercontent.com/fluxcd/helm-controller/main/config/crd/bases/helm.toolkit.fluxcd.io_helmreleases.yaml#/spec.schema.openAPIV3Schema"
},
{
"properties": {
"spec": {
"properties": {
"values": {
"$ref": "./values.schema.json"
}
}
}
}
}
]
}
20 changes: 20 additions & 0 deletions charts/teuto-portal-k8s-worker/helmrelease.schema.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
{
"$schema": "http://json-schema.org/draft-07/schema",
"type": "object",
"allOf": [
{
"$ref": "https://raw.githubusercontent.com/fluxcd/helm-controller/main/config/crd/bases/helm.toolkit.fluxcd.io_helmreleases.yaml#/spec.schema.openAPIV3Schema"
},
{
"properties": {
"spec": {
"properties": {
"values": {
"$ref": "./values.schema.json"
}
}
}
}
}
]
}

0 comments on commit 89ed7eb

Please sign in to comment.