diff --git a/docs-v2/content/en/schemas/v4beta9.json b/docs-v2/content/en/schemas/v4beta9.json
index 0e8eedfac80..7468392d852 100755
--- a/docs-v2/content/en/schemas/v4beta9.json
+++ b/docs-v2/content/en/schemas/v4beta9.json
@@ -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 helm
."
},
@@ -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 (helm dep build
).",
+ "default": "[]"
+ },
"global": {
"items": {
"type": "string"
@@ -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 helm
."
+ "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 helm
on deploy."
},
"HelmPackaged": {
"properties": {
@@ -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 (helm dep build
).",
+ "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 (helm template
).",
+ "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 helm
on render."
+ },
"HostHook": {
"required": [
"command"