Skip to content

Commit

Permalink
docs: update docs with new fields
Browse files Browse the repository at this point in the history
  • Loading branch information
renzodavid9 committed Dec 5, 2023
1 parent 00797c8 commit d295ecf
Showing 1 changed file with 54 additions and 4 deletions.
58 changes: 54 additions & 4 deletions docs-v2/content/en/schemas/v4beta9.json
Original file line number Diff line number Diff line change
Expand Up @@ -2167,7 +2167,7 @@
],
"properties": {
"flags": {
"$ref": "#/definitions/HelmDeployFlags",
"$ref": "#/definitions/HelmRenderFlags",
"description": "additional option flags that are passed on the command line to `helm`.",
"x-intellij-html-description": "additional option flags that are passed on the command line to <code>helm</code>."
},
Expand All @@ -2191,6 +2191,15 @@
},
"HelmDeployFlags": {
"properties": {
"depBuild": {
"items": {
"type": "string"
},
"type": "array",
"description": "additional flags passed to (`helm dep build`).",
"x-intellij-html-description": "additional flags passed to (<code>helm dep build</code>).",
"default": "[]"
},
"global": {
"items": {
"type": "string"
Expand Down Expand Up @@ -2222,12 +2231,13 @@
"preferredOrder": [
"global",
"install",
"upgrade"
"upgrade",
"depBuild"
],
"additionalProperties": false,
"type": "object",
"description": "additional option flags that are passed on the command line to `helm`.",
"x-intellij-html-description": "additional option flags that are passed on the command line to <code>helm</code>."
"description": "additional option flags that are passed on the command line to `helm` on deploy.",
"x-intellij-html-description": "additional option flags that are passed on the command line to <code>helm</code> on deploy."
},
"HelmPackaged": {
"properties": {
Expand Down Expand Up @@ -2388,6 +2398,46 @@
"description": "describes a helm release to be deployed.",
"x-intellij-html-description": "describes a helm release to be deployed."
},
"HelmRenderFlags": {
"properties": {
"depBuild": {
"items": {
"type": "string"
},
"type": "array",
"description": "additional flags passed to (`helm dep build`).",
"x-intellij-html-description": "additional flags passed to (<code>helm dep build</code>).",
"default": "[]"
},
"global": {
"items": {
"type": "string"
},
"type": "array",
"description": "additional flags passed on every command.",
"x-intellij-html-description": "additional flags passed on every command.",
"default": "[]"
},
"template": {
"items": {
"type": "string"
},
"type": "array",
"description": "additional flags passed to (`helm template`).",
"x-intellij-html-description": "additional flags passed to (<code>helm template</code>).",
"default": "[]"
}
},
"preferredOrder": [
"global",
"template",
"depBuild"
],
"additionalProperties": false,
"type": "object",
"description": "additional option flags that are passed on the command line to `helm` on render.",
"x-intellij-html-description": "additional option flags that are passed on the command line to <code>helm</code> on render."
},
"HostHook": {
"required": [
"command"
Expand Down

0 comments on commit d295ecf

Please sign in to comment.