Skip to content

Commit 35f636c

Browse files
committed
generate schemas
1 parent 1d01ac5 commit 35f636c

File tree

3 files changed

+46
-46
lines changed

3 files changed

+46
-46
lines changed

docs/content/en/schemas/v2beta6.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -1279,8 +1279,8 @@
12791279
],
12801280
"properties": {
12811281
"artifactOverrides": {
1282-
"description": "key value pairs where the key represents the parameter used in the `--set-string` Helm CLI flag to define a container image and the value corresponds to artifact i.e. `ImageName` defined in `Build.Artifacts` section. The resulting command-line is controlled by `ImageStrategy`.",
1283-
"x-intellij-html-description": "key value pairs where the key represents the parameter used in the <code>--set-string</code> Helm CLI flag to define a container image and the value corresponds to artifact i.e. <code>ImageName</code> defined in <code>Build.Artifacts</code> section. The resulting command-line is controlled by <code>ImageStrategy</code>."
1282+
"description": "key value pairs. If present, Skaffold will send `--set-string` flag to Helm CLI and append all pairs after the flag.",
1283+
"x-intellij-html-description": "key value pairs. If present, Skaffold will send <code>--set-string</code> flag to Helm CLI and append all pairs after the flag."
12841284
},
12851285
"chartPath": {
12861286
"type": "string",
@@ -1289,8 +1289,8 @@
12891289
},
12901290
"imageStrategy": {
12911291
"$ref": "#/definitions/HelmImageStrategy",
1292-
"description": "controls how an `ArtifactOverrides` entry is turned into `--set-string` Helm CLI flag or flags.",
1293-
"x-intellij-html-description": "controls how an <code>ArtifactOverrides</code> entry is turned into <code>--set-string</code> Helm CLI flag or flags."
1292+
"description": "adds image configurations to the Helm `values` file.",
1293+
"x-intellij-html-description": "adds image configurations to the Helm <code>values</code> file."
12941294
},
12951295
"name": {
12961296
"type": "string",

docs/content/en/schemas/v2beta7.json

+1-37
Original file line numberDiff line numberDiff line change
@@ -923,11 +923,6 @@
923923
"x-intellij-html-description": "used to pass in --no-cache to docker build to prevent caching.",
924924
"default": "false"
925925
},
926-
"secret": {
927-
"$ref": "#/definitions/DockerSecret",
928-
"description": "contains information about a local secret passed to `docker build`, along with optional destination information.",
929-
"x-intellij-html-description": "contains information about a local secret passed to <code>docker build</code>, along with optional destination information."
930-
},
931926
"target": {
932927
"type": "string",
933928
"description": "Dockerfile target name to build.",
@@ -940,8 +935,7 @@
940935
"buildArgs",
941936
"network",
942937
"cacheFrom",
943-
"noCache",
944-
"secret"
938+
"noCache"
945939
],
946940
"additionalProperties": false,
947941
"description": "describes an artifact built from a Dockerfile, usually using `docker build`.",
@@ -968,36 +962,6 @@
968962
"description": "contains information about the docker `config.json` to mount.",
969963
"x-intellij-html-description": "contains information about the docker <code>config.json</code> to mount."
970964
},
971-
"DockerSecret": {
972-
"required": [
973-
"id"
974-
],
975-
"properties": {
976-
"dst": {
977-
"type": "string",
978-
"description": "path in the container to mount the secret.",
979-
"x-intellij-html-description": "path in the container to mount the secret."
980-
},
981-
"id": {
982-
"type": "string",
983-
"description": "id of the secret.",
984-
"x-intellij-html-description": "id of the secret."
985-
},
986-
"src": {
987-
"type": "string",
988-
"description": "path to the secret on the host machine.",
989-
"x-intellij-html-description": "path to the secret on the host machine."
990-
}
991-
},
992-
"preferredOrder": [
993-
"id",
994-
"src",
995-
"dst"
996-
],
997-
"additionalProperties": false,
998-
"description": "contains information about a local secret passed to `docker build`, along with optional destination information.",
999-
"x-intellij-html-description": "contains information about a local secret passed to <code>docker build</code>, along with optional destination information."
1000-
},
1001965
"DockerfileDependency": {
1002966
"properties": {
1003967
"buildArgs": {

docs/content/en/schemas/v2beta8.json

+41-5
Original file line numberDiff line numberDiff line change
@@ -923,6 +923,11 @@
923923
"x-intellij-html-description": "used to pass in --no-cache to docker build to prevent caching.",
924924
"default": "false"
925925
},
926+
"secret": {
927+
"$ref": "#/definitions/DockerSecret",
928+
"description": "contains information about a local secret passed to `docker build`, along with optional destination information.",
929+
"x-intellij-html-description": "contains information about a local secret passed to <code>docker build</code>, along with optional destination information."
930+
},
926931
"target": {
927932
"type": "string",
928933
"description": "Dockerfile target name to build.",
@@ -935,7 +940,8 @@
935940
"buildArgs",
936941
"network",
937942
"cacheFrom",
938-
"noCache"
943+
"noCache",
944+
"secret"
939945
],
940946
"additionalProperties": false,
941947
"description": "describes an artifact built from a Dockerfile, usually using `docker build`.",
@@ -962,6 +968,36 @@
962968
"description": "contains information about the docker `config.json` to mount.",
963969
"x-intellij-html-description": "contains information about the docker <code>config.json</code> to mount."
964970
},
971+
"DockerSecret": {
972+
"required": [
973+
"id"
974+
],
975+
"properties": {
976+
"dst": {
977+
"type": "string",
978+
"description": "path in the container to mount the secret.",
979+
"x-intellij-html-description": "path in the container to mount the secret."
980+
},
981+
"id": {
982+
"type": "string",
983+
"description": "id of the secret.",
984+
"x-intellij-html-description": "id of the secret."
985+
},
986+
"src": {
987+
"type": "string",
988+
"description": "path to the secret on the host machine.",
989+
"x-intellij-html-description": "path to the secret on the host machine."
990+
}
991+
},
992+
"preferredOrder": [
993+
"id",
994+
"src",
995+
"dst"
996+
],
997+
"additionalProperties": false,
998+
"description": "contains information about a local secret passed to `docker build`, along with optional destination information.",
999+
"x-intellij-html-description": "contains information about a local secret passed to <code>docker build</code>, along with optional destination information."
1000+
},
9651001
"DockerfileDependency": {
9661002
"properties": {
9671003
"buildArgs": {
@@ -1285,8 +1321,8 @@
12851321
],
12861322
"properties": {
12871323
"artifactOverrides": {
1288-
"description": "key value pairs. If present, Skaffold will send `--set-string` flag to Helm CLI and append all pairs after the flag.",
1289-
"x-intellij-html-description": "key value pairs. If present, Skaffold will send <code>--set-string</code> flag to Helm CLI and append all pairs after the flag."
1324+
"description": "key value pairs where the key represents the parameter used in the `--set-string` Helm CLI flag to define a container image and the value corresponds to artifact i.e. `ImageName` defined in `Build.Artifacts` section. The resulting command-line is controlled by `ImageStrategy`.",
1325+
"x-intellij-html-description": "key value pairs where the key represents the parameter used in the <code>--set-string</code> Helm CLI flag to define a container image and the value corresponds to artifact i.e. <code>ImageName</code> defined in <code>Build.Artifacts</code> section. The resulting command-line is controlled by <code>ImageStrategy</code>."
12901326
},
12911327
"chartPath": {
12921328
"type": "string",
@@ -1295,8 +1331,8 @@
12951331
},
12961332
"imageStrategy": {
12971333
"$ref": "#/definitions/HelmImageStrategy",
1298-
"description": "adds image configurations to the Helm `values` file.",
1299-
"x-intellij-html-description": "adds image configurations to the Helm <code>values</code> file."
1334+
"description": "controls how an `ArtifactOverrides` entry is turned into `--set-string` Helm CLI flag or flags.",
1335+
"x-intellij-html-description": "controls how an <code>ArtifactOverrides</code> entry is turned into <code>--set-string</code> Helm CLI flag or flags."
13001336
},
13011337
"name": {
13021338
"type": "string",

0 commit comments

Comments
 (0)