diff --git a/docs/config.toml b/docs/config.toml
index ebcca7c884d..308373452b2 100644
--- a/docs/config.toml
+++ b/docs/config.toml
@@ -70,7 +70,7 @@ weight = 1
copyright = "Skaffold Authors"
privacy_policy = "https://policies.google.com/privacy"
github_repo = "https://github.com/GoogleContainerTools/skaffold"
-skaffold_version = "skaffold/v1beta15"
+skaffold_version = "skaffold/v1beta16"
# Google Custom Search Engine ID. Remove or comment out to disable search.
gcs_engine_id = "013756393218025596041:3nojel67sum"
diff --git a/docs/content/en/schemas/v1beta16.json b/docs/content/en/schemas/v1beta16.json
new file mode 100755
index 00000000000..15910ea91df
--- /dev/null
+++ b/docs/content/en/schemas/v1beta16.json
@@ -0,0 +1,1891 @@
+{
+ "type": "object",
+ "anyOf": [
+ {
+ "$ref": "#/definitions/SkaffoldConfig"
+ }
+ ],
+ "$schema": "http://json-schema-org/draft-07/schema#",
+ "definitions": {
+ "Activation": {
+ "properties": {
+ "command": {
+ "type": "string",
+ "description": "a Skaffold command for which the profile is auto-activated.",
+ "x-intellij-html-description": "a Skaffold command for which the profile is auto-activated.",
+ "examples": [
+ "dev"
+ ]
+ },
+ "env": {
+ "type": "string",
+ "description": "a `key=pattern` pair. The profile is auto-activated if an Environment Variable `key` matches the pattern. If the pattern starts with `!`, activation happens if the remaining pattern is _not_ matched. The pattern matches if the Environment Variable value is exactly `pattern`, or the regex `pattern` is found in it. An empty `pattern` (e.g. `env: \"key=\"`) always only matches if the Environment Variable is undefined or empty.",
+ "x-intellij-html-description": "a key=pattern
pair. The profile is auto-activated if an Environment Variable key
matches the pattern. If the pattern starts with !
, activation happens if the remaining pattern is not matched. The pattern matches if the Environment Variable value is exactly pattern
, or the regex pattern
is found in it. An empty pattern
(e.g. env: "key="
) always only matches if the Environment Variable is undefined or empty.",
+ "examples": [
+ "ENV=production"
+ ]
+ },
+ "kubeContext": {
+ "type": "string",
+ "description": "a Kubernetes context for which the profile is auto-activated.",
+ "x-intellij-html-description": "a Kubernetes context for which the profile is auto-activated.",
+ "examples": [
+ "minikube"
+ ]
+ }
+ },
+ "preferredOrder": [
+ "env",
+ "kubeContext",
+ "command"
+ ],
+ "additionalProperties": false,
+ "description": "criteria by which a profile is auto-activated.",
+ "x-intellij-html-description": "criteria by which a profile is auto-activated."
+ },
+ "Artifact": {
+ "required": [
+ "image"
+ ],
+ "anyOf": [
+ {
+ "properties": {
+ "context": {
+ "type": "string",
+ "description": "directory containing the artifact's sources.",
+ "x-intellij-html-description": "directory containing the artifact's sources.",
+ "default": "."
+ },
+ "image": {
+ "type": "string",
+ "description": "name of the image to be built.",
+ "x-intellij-html-description": "name of the image to be built.",
+ "examples": [
+ "gcr.io/k8s-skaffold/example"
+ ]
+ },
+ "sync": {
+ "$ref": "#/definitions/Sync",
+ "description": "*alpha* local files synced to pods instead of triggering an image build when modified.",
+ "x-intellij-html-description": "alpha local files synced to pods instead of triggering an image build when modified."
+ }
+ },
+ "preferredOrder": [
+ "image",
+ "context",
+ "sync"
+ ],
+ "additionalProperties": false
+ },
+ {
+ "properties": {
+ "context": {
+ "type": "string",
+ "description": "directory containing the artifact's sources.",
+ "x-intellij-html-description": "directory containing the artifact's sources.",
+ "default": "."
+ },
+ "docker": {
+ "$ref": "#/definitions/DockerArtifact",
+ "description": "*beta* describes an artifact built from a Dockerfile.",
+ "x-intellij-html-description": "beta describes an artifact built from a Dockerfile."
+ },
+ "image": {
+ "type": "string",
+ "description": "name of the image to be built.",
+ "x-intellij-html-description": "name of the image to be built.",
+ "examples": [
+ "gcr.io/k8s-skaffold/example"
+ ]
+ },
+ "sync": {
+ "$ref": "#/definitions/Sync",
+ "description": "*alpha* local files synced to pods instead of triggering an image build when modified.",
+ "x-intellij-html-description": "alpha local files synced to pods instead of triggering an image build when modified."
+ }
+ },
+ "preferredOrder": [
+ "image",
+ "context",
+ "sync",
+ "docker"
+ ],
+ "additionalProperties": false
+ },
+ {
+ "properties": {
+ "bazel": {
+ "$ref": "#/definitions/BazelArtifact",
+ "description": "*beta* requires bazel CLI to be installed and the sources to contain [Bazel](https://bazel.build/) configuration files.",
+ "x-intellij-html-description": "beta requires bazel CLI to be installed and the sources to contain Bazel configuration files."
+ },
+ "context": {
+ "type": "string",
+ "description": "directory containing the artifact's sources.",
+ "x-intellij-html-description": "directory containing the artifact's sources.",
+ "default": "."
+ },
+ "image": {
+ "type": "string",
+ "description": "name of the image to be built.",
+ "x-intellij-html-description": "name of the image to be built.",
+ "examples": [
+ "gcr.io/k8s-skaffold/example"
+ ]
+ },
+ "sync": {
+ "$ref": "#/definitions/Sync",
+ "description": "*alpha* local files synced to pods instead of triggering an image build when modified.",
+ "x-intellij-html-description": "alpha local files synced to pods instead of triggering an image build when modified."
+ }
+ },
+ "preferredOrder": [
+ "image",
+ "context",
+ "sync",
+ "bazel"
+ ],
+ "additionalProperties": false
+ },
+ {
+ "properties": {
+ "context": {
+ "type": "string",
+ "description": "directory containing the artifact's sources.",
+ "x-intellij-html-description": "directory containing the artifact's sources.",
+ "default": "."
+ },
+ "image": {
+ "type": "string",
+ "description": "name of the image to be built.",
+ "x-intellij-html-description": "name of the image to be built.",
+ "examples": [
+ "gcr.io/k8s-skaffold/example"
+ ]
+ },
+ "jib": {
+ "$ref": "#/definitions/JibArtifact",
+ "description": "*alpha* builds images using the [Jib plugins for Maven or Gradle](https://github.com/GoogleContainerTools/jib/).",
+ "x-intellij-html-description": "alpha builds images using the Jib plugins for Maven or Gradle."
+ },
+ "sync": {
+ "$ref": "#/definitions/Sync",
+ "description": "*alpha* local files synced to pods instead of triggering an image build when modified.",
+ "x-intellij-html-description": "alpha local files synced to pods instead of triggering an image build when modified."
+ }
+ },
+ "preferredOrder": [
+ "image",
+ "context",
+ "sync",
+ "jib"
+ ],
+ "additionalProperties": false
+ },
+ {
+ "properties": {
+ "context": {
+ "type": "string",
+ "description": "directory containing the artifact's sources.",
+ "x-intellij-html-description": "directory containing the artifact's sources.",
+ "default": "."
+ },
+ "image": {
+ "type": "string",
+ "description": "name of the image to be built.",
+ "x-intellij-html-description": "name of the image to be built.",
+ "examples": [
+ "gcr.io/k8s-skaffold/example"
+ ]
+ },
+ "kaniko": {
+ "$ref": "#/definitions/KanikoArtifact",
+ "description": "*alpha* builds images using [kaniko](https://github.com/GoogleContainerTools/kaniko).",
+ "x-intellij-html-description": "alpha builds images using kaniko."
+ },
+ "sync": {
+ "$ref": "#/definitions/Sync",
+ "description": "*alpha* local files synced to pods instead of triggering an image build when modified.",
+ "x-intellij-html-description": "alpha local files synced to pods instead of triggering an image build when modified."
+ }
+ },
+ "preferredOrder": [
+ "image",
+ "context",
+ "sync",
+ "kaniko"
+ ],
+ "additionalProperties": false
+ },
+ {
+ "properties": {
+ "context": {
+ "type": "string",
+ "description": "directory containing the artifact's sources.",
+ "x-intellij-html-description": "directory containing the artifact's sources.",
+ "default": "."
+ },
+ "custom": {
+ "$ref": "#/definitions/CustomArtifact",
+ "description": "*alpha* builds images using a custom build script written by the user.",
+ "x-intellij-html-description": "alpha builds images using a custom build script written by the user."
+ },
+ "image": {
+ "type": "string",
+ "description": "name of the image to be built.",
+ "x-intellij-html-description": "name of the image to be built.",
+ "examples": [
+ "gcr.io/k8s-skaffold/example"
+ ]
+ },
+ "sync": {
+ "$ref": "#/definitions/Sync",
+ "description": "*alpha* local files synced to pods instead of triggering an image build when modified.",
+ "x-intellij-html-description": "alpha local files synced to pods instead of triggering an image build when modified."
+ }
+ },
+ "preferredOrder": [
+ "image",
+ "context",
+ "sync",
+ "custom"
+ ],
+ "additionalProperties": false
+ }
+ ],
+ "description": "items that need to be built, along with the context in which they should be built.",
+ "x-intellij-html-description": "items that need to be built, along with the context in which they should be built."
+ },
+ "BazelArtifact": {
+ "required": [
+ "target"
+ ],
+ "properties": {
+ "args": {
+ "items": {
+ "type": "string"
+ },
+ "type": "array",
+ "description": "additional args to pass to `bazel build`.",
+ "x-intellij-html-description": "additional args to pass to bazel build
.",
+ "default": "[]",
+ "examples": [
+ "[\"-flag\", \"--otherflag\"]"
+ ]
+ },
+ "target": {
+ "type": "string",
+ "description": "`bazel build` target to run.",
+ "x-intellij-html-description": "bazel build
target to run.",
+ "examples": [
+ "//:skaffold_example.tar"
+ ]
+ }
+ },
+ "preferredOrder": [
+ "target",
+ "args"
+ ],
+ "additionalProperties": false,
+ "description": "*beta* describes an artifact built with [Bazel](https://bazel.build/).",
+ "x-intellij-html-description": "beta describes an artifact built with Bazel."
+ },
+ "BuildConfig": {
+ "anyOf": [
+ {
+ "properties": {
+ "artifacts": {
+ "items": {
+ "$ref": "#/definitions/Artifact"
+ },
+ "type": "array",
+ "description": "the images you're going to be building.",
+ "x-intellij-html-description": "the images you're going to be building."
+ },
+ "insecureRegistries": {
+ "items": {
+ "type": "string"
+ },
+ "type": "array",
+ "description": "a list of registries declared by the user to be insecure. These registries will be connected to via HTTP instead of HTTPS.",
+ "x-intellij-html-description": "a list of registries declared by the user to be insecure. These registries will be connected to via HTTP instead of HTTPS.",
+ "default": "[]"
+ },
+ "tagPolicy": {
+ "$ref": "#/definitions/TagPolicy",
+ "description": "*beta* determines how images are tagged. A few strategies are provided here, although you most likely won't need to care! If not specified, it defaults to `gitCommit: {variant: Tags}`.",
+ "x-intellij-html-description": "beta determines how images are tagged. A few strategies are provided here, although you most likely won't need to care! If not specified, it defaults to gitCommit: {variant: Tags}
."
+ }
+ },
+ "preferredOrder": [
+ "artifacts",
+ "insecureRegistries",
+ "tagPolicy"
+ ],
+ "additionalProperties": false
+ },
+ {
+ "properties": {
+ "artifacts": {
+ "items": {
+ "$ref": "#/definitions/Artifact"
+ },
+ "type": "array",
+ "description": "the images you're going to be building.",
+ "x-intellij-html-description": "the images you're going to be building."
+ },
+ "insecureRegistries": {
+ "items": {
+ "type": "string"
+ },
+ "type": "array",
+ "description": "a list of registries declared by the user to be insecure. These registries will be connected to via HTTP instead of HTTPS.",
+ "x-intellij-html-description": "a list of registries declared by the user to be insecure. These registries will be connected to via HTTP instead of HTTPS.",
+ "default": "[]"
+ },
+ "local": {
+ "$ref": "#/definitions/LocalBuild",
+ "description": "*beta* describes how to do a build on the local docker daemon and optionally push to a repository.",
+ "x-intellij-html-description": "beta describes how to do a build on the local docker daemon and optionally push to a repository."
+ },
+ "tagPolicy": {
+ "$ref": "#/definitions/TagPolicy",
+ "description": "*beta* determines how images are tagged. A few strategies are provided here, although you most likely won't need to care! If not specified, it defaults to `gitCommit: {variant: Tags}`.",
+ "x-intellij-html-description": "beta determines how images are tagged. A few strategies are provided here, although you most likely won't need to care! If not specified, it defaults to gitCommit: {variant: Tags}
."
+ }
+ },
+ "preferredOrder": [
+ "artifacts",
+ "insecureRegistries",
+ "tagPolicy",
+ "local"
+ ],
+ "additionalProperties": false
+ },
+ {
+ "properties": {
+ "artifacts": {
+ "items": {
+ "$ref": "#/definitions/Artifact"
+ },
+ "type": "array",
+ "description": "the images you're going to be building.",
+ "x-intellij-html-description": "the images you're going to be building."
+ },
+ "googleCloudBuild": {
+ "$ref": "#/definitions/GoogleCloudBuild",
+ "description": "*beta* describes how to do a remote build on [Google Cloud Build](https://cloud.google.com/cloud-build/).",
+ "x-intellij-html-description": "beta describes how to do a remote build on Google Cloud Build."
+ },
+ "insecureRegistries": {
+ "items": {
+ "type": "string"
+ },
+ "type": "array",
+ "description": "a list of registries declared by the user to be insecure. These registries will be connected to via HTTP instead of HTTPS.",
+ "x-intellij-html-description": "a list of registries declared by the user to be insecure. These registries will be connected to via HTTP instead of HTTPS.",
+ "default": "[]"
+ },
+ "tagPolicy": {
+ "$ref": "#/definitions/TagPolicy",
+ "description": "*beta* determines how images are tagged. A few strategies are provided here, although you most likely won't need to care! If not specified, it defaults to `gitCommit: {variant: Tags}`.",
+ "x-intellij-html-description": "beta determines how images are tagged. A few strategies are provided here, although you most likely won't need to care! If not specified, it defaults to gitCommit: {variant: Tags}
."
+ }
+ },
+ "preferredOrder": [
+ "artifacts",
+ "insecureRegistries",
+ "tagPolicy",
+ "googleCloudBuild"
+ ],
+ "additionalProperties": false
+ },
+ {
+ "properties": {
+ "artifacts": {
+ "items": {
+ "$ref": "#/definitions/Artifact"
+ },
+ "type": "array",
+ "description": "the images you're going to be building.",
+ "x-intellij-html-description": "the images you're going to be building."
+ },
+ "cluster": {
+ "$ref": "#/definitions/ClusterDetails",
+ "description": "*beta* describes how to do an on-cluster build.",
+ "x-intellij-html-description": "beta describes how to do an on-cluster build."
+ },
+ "insecureRegistries": {
+ "items": {
+ "type": "string"
+ },
+ "type": "array",
+ "description": "a list of registries declared by the user to be insecure. These registries will be connected to via HTTP instead of HTTPS.",
+ "x-intellij-html-description": "a list of registries declared by the user to be insecure. These registries will be connected to via HTTP instead of HTTPS.",
+ "default": "[]"
+ },
+ "tagPolicy": {
+ "$ref": "#/definitions/TagPolicy",
+ "description": "*beta* determines how images are tagged. A few strategies are provided here, although you most likely won't need to care! If not specified, it defaults to `gitCommit: {variant: Tags}`.",
+ "x-intellij-html-description": "beta determines how images are tagged. A few strategies are provided here, although you most likely won't need to care! If not specified, it defaults to gitCommit: {variant: Tags}
."
+ }
+ },
+ "preferredOrder": [
+ "artifacts",
+ "insecureRegistries",
+ "tagPolicy",
+ "cluster"
+ ],
+ "additionalProperties": false
+ }
+ ],
+ "description": "contains all the configuration for the build steps.",
+ "x-intellij-html-description": "contains all the configuration for the build steps."
+ },
+ "ClusterDetails": {
+ "properties": {
+ "HTTPS_PROXY": {
+ "type": "string",
+ "description": "for kaniko pod.",
+ "x-intellij-html-description": "for kaniko pod."
+ },
+ "HTTP_PROXY": {
+ "type": "string",
+ "description": "for kaniko pod.",
+ "x-intellij-html-description": "for kaniko pod."
+ },
+ "concurrency": {
+ "type": "integer",
+ "description": "how many artifacts can be built concurrently. 0 means \"no-limit\" Defaults to 0.",
+ "x-intellij-html-description": "how many artifacts can be built concurrently. 0 means "no-limit" Defaults to 0."
+ },
+ "dockerConfig": {
+ "$ref": "#/definitions/DockerConfig",
+ "description": "describes how to mount the local Docker configuration into a pod.",
+ "x-intellij-html-description": "describes how to mount the local Docker configuration into a pod."
+ },
+ "namespace": {
+ "type": "string",
+ "description": "Kubernetes namespace. Defaults to current namespace in Kubernetes configuration.",
+ "x-intellij-html-description": "Kubernetes namespace. Defaults to current namespace in Kubernetes configuration."
+ },
+ "pullSecret": {
+ "type": "string",
+ "description": "path to the Google Cloud service account secret key file.",
+ "x-intellij-html-description": "path to the Google Cloud service account secret key file."
+ },
+ "pullSecretName": {
+ "type": "string",
+ "description": "name of the Kubernetes secret for pulling the files from the build context and pushing the final image. If given, the secret needs to contain the Google Cloud service account secret key under the key `kaniko-secret`.",
+ "x-intellij-html-description": "name of the Kubernetes secret for pulling the files from the build context and pushing the final image. If given, the secret needs to contain the Google Cloud service account secret key under the key kaniko-secret
.",
+ "default": "kaniko-secret"
+ },
+ "resources": {
+ "$ref": "#/definitions/ResourceRequirements",
+ "description": "define the resource requirements for the kaniko pod.",
+ "x-intellij-html-description": "define the resource requirements for the kaniko pod."
+ },
+ "timeout": {
+ "type": "string",
+ "description": "amount of time (in seconds) that this build is allowed to run. Defaults to 20 minutes (`20m`).",
+ "x-intellij-html-description": "amount of time (in seconds) that this build is allowed to run. Defaults to 20 minutes (20m
)."
+ }
+ },
+ "preferredOrder": [
+ "HTTP_PROXY",
+ "HTTPS_PROXY",
+ "pullSecret",
+ "pullSecretName",
+ "namespace",
+ "timeout",
+ "dockerConfig",
+ "resources",
+ "concurrency"
+ ],
+ "additionalProperties": false,
+ "description": "*beta* describes how to do an on-cluster build.",
+ "x-intellij-html-description": "beta describes how to do an on-cluster build."
+ },
+ "CustomArtifact": {
+ "properties": {
+ "buildCommand": {
+ "type": "string",
+ "description": "command executed to build the image.",
+ "x-intellij-html-description": "command executed to build the image."
+ },
+ "dependencies": {
+ "$ref": "#/definitions/CustomDependencies",
+ "description": "file dependencies that skaffold should watch for both rebuilding and file syncing for this artifact.",
+ "x-intellij-html-description": "file dependencies that skaffold should watch for both rebuilding and file syncing for this artifact."
+ }
+ },
+ "preferredOrder": [
+ "buildCommand",
+ "dependencies"
+ ],
+ "additionalProperties": false,
+ "description": "*alpha* describes an artifact built from a custom build script written by the user. It can be used to build images with builders that aren't directly integrated with skaffold.",
+ "x-intellij-html-description": "alpha describes an artifact built from a custom build script written by the user. It can be used to build images with builders that aren't directly integrated with skaffold."
+ },
+ "CustomDependencies": {
+ "properties": {
+ "command": {
+ "type": "string",
+ "description": "represents a custom command that skaffold executes to obtain dependencies. The output of this command *must* be a valid JSON array.",
+ "x-intellij-html-description": "represents a custom command that skaffold executes to obtain dependencies. The output of this command must be a valid JSON array."
+ },
+ "dockerfile": {
+ "$ref": "#/definitions/DockerfileDependency",
+ "description": "should be set if the artifact is built from a Dockerfile, from which skaffold can determine dependencies.",
+ "x-intellij-html-description": "should be set if the artifact is built from a Dockerfile, from which skaffold can determine dependencies."
+ },
+ "ignore": {
+ "items": {
+ "type": "string"
+ },
+ "type": "array",
+ "description": "specifies the paths that should be ignored by skaffold's file watcher. If a file exists in both `paths` and in `ignore`, it will be ignored, and will be excluded from both rebuilds and file synchronization. Will only work in conjunction with `paths`.",
+ "x-intellij-html-description": "specifies the paths that should be ignored by skaffold's file watcher. If a file exists in both paths
and in ignore
, it will be ignored, and will be excluded from both rebuilds and file synchronization. Will only work in conjunction with paths
.",
+ "default": "[]"
+ },
+ "paths": {
+ "items": {
+ "type": "string"
+ },
+ "type": "array",
+ "description": "should be set to the file dependencies for this artifact, so that the skaffold file watcher knows when to rebuild and perform file synchronization.",
+ "x-intellij-html-description": "should be set to the file dependencies for this artifact, so that the skaffold file watcher knows when to rebuild and perform file synchronization.",
+ "default": "[]"
+ }
+ },
+ "preferredOrder": [
+ "dockerfile",
+ "command",
+ "paths",
+ "ignore"
+ ],
+ "additionalProperties": false,
+ "description": "*alpha* used to specify dependencies for an artifact built by a custom build script. Either `dockerfile` or `paths` should be specified for file watching to work as expected.",
+ "x-intellij-html-description": "alpha used to specify dependencies for an artifact built by a custom build script. Either dockerfile
or paths
should be specified for file watching to work as expected."
+ },
+ "DateTimeTagger": {
+ "properties": {
+ "format": {
+ "type": "string",
+ "description": "formats the date and time. See [#Time.Format](https://golang.org/pkg/time/#Time.Format).",
+ "x-intellij-html-description": "formats the date and time. See #Time.Format.",
+ "default": "2006-01-02_15-04-05.999_MST"
+ },
+ "timezone": {
+ "type": "string",
+ "description": "sets the timezone for the date and time. See [Time.LoadLocation](https://golang.org/pkg/time/#Time.LoadLocation). Defaults to the local timezone.",
+ "x-intellij-html-description": "sets the timezone for the date and time. See Time.LoadLocation. Defaults to the local timezone."
+ }
+ },
+ "preferredOrder": [
+ "format",
+ "timezone"
+ ],
+ "additionalProperties": false,
+ "description": "*beta* tags images with the build timestamp.",
+ "x-intellij-html-description": "beta tags images with the build timestamp."
+ },
+ "DeployConfig": {
+ "anyOf": [
+ {
+ "properties": {
+ "statusCheckDeadlineSeconds": {
+ "type": "integer",
+ "description": "*beta* deadline for deployments to stabilize in seconds.",
+ "x-intellij-html-description": "beta deadline for deployments to stabilize in seconds."
+ }
+ },
+ "preferredOrder": [
+ "statusCheckDeadlineSeconds"
+ ],
+ "additionalProperties": false
+ },
+ {
+ "properties": {
+ "helm": {
+ "$ref": "#/definitions/HelmDeploy",
+ "description": "*beta* uses the `helm` CLI to apply the charts to the cluster.",
+ "x-intellij-html-description": "beta uses the helm
CLI to apply the charts to the cluster."
+ },
+ "statusCheckDeadlineSeconds": {
+ "type": "integer",
+ "description": "*beta* deadline for deployments to stabilize in seconds.",
+ "x-intellij-html-description": "beta deadline for deployments to stabilize in seconds."
+ }
+ },
+ "preferredOrder": [
+ "statusCheckDeadlineSeconds",
+ "helm"
+ ],
+ "additionalProperties": false
+ },
+ {
+ "properties": {
+ "kubectl": {
+ "$ref": "#/definitions/KubectlDeploy",
+ "description": "*beta* uses a client side `kubectl apply` to deploy manifests. You'll need a `kubectl` CLI version installed that's compatible with your cluster.",
+ "x-intellij-html-description": "beta uses a client side kubectl apply
to deploy manifests. You'll need a kubectl
CLI version installed that's compatible with your cluster."
+ },
+ "statusCheckDeadlineSeconds": {
+ "type": "integer",
+ "description": "*beta* deadline for deployments to stabilize in seconds.",
+ "x-intellij-html-description": "beta deadline for deployments to stabilize in seconds."
+ }
+ },
+ "preferredOrder": [
+ "statusCheckDeadlineSeconds",
+ "kubectl"
+ ],
+ "additionalProperties": false
+ },
+ {
+ "properties": {
+ "kustomize": {
+ "$ref": "#/definitions/KustomizeDeploy",
+ "description": "*beta* uses the `kustomize` CLI to \"patch\" a deployment for a target environment.",
+ "x-intellij-html-description": "beta uses the kustomize
CLI to "patch" a deployment for a target environment."
+ },
+ "statusCheckDeadlineSeconds": {
+ "type": "integer",
+ "description": "*beta* deadline for deployments to stabilize in seconds.",
+ "x-intellij-html-description": "beta deadline for deployments to stabilize in seconds."
+ }
+ },
+ "preferredOrder": [
+ "statusCheckDeadlineSeconds",
+ "kustomize"
+ ],
+ "additionalProperties": false
+ }
+ ],
+ "description": "contains all the configuration needed by the deploy steps.",
+ "x-intellij-html-description": "contains all the configuration needed by the deploy steps."
+ },
+ "DockerArtifact": {
+ "properties": {
+ "buildArgs": {
+ "additionalProperties": {
+ "type": "string"
+ },
+ "type": "object",
+ "description": "arguments passed to the docker build.",
+ "x-intellij-html-description": "arguments passed to the docker build.",
+ "default": "{}",
+ "examples": [
+ "{\"key1\": \"value1\", \"key2\": \"value2\"}"
+ ]
+ },
+ "cacheFrom": {
+ "items": {
+ "type": "string"
+ },
+ "type": "array",
+ "description": "the Docker images used as cache sources.",
+ "x-intellij-html-description": "the Docker images used as cache sources.",
+ "default": "[]",
+ "examples": [
+ "[\"golang:1.10.1-alpine3.7\", \"alpine:3.7\"]"
+ ]
+ },
+ "dockerfile": {
+ "type": "string",
+ "description": "locates the Dockerfile relative to workspace.",
+ "x-intellij-html-description": "locates the Dockerfile relative to workspace.",
+ "default": "Dockerfile"
+ },
+ "network": {
+ "type": "string",
+ "description": "passed through to docker and overrides the network configuration of docker builder. If unset, use whatever is configured in the underlying docker daemon. Valid modes are `host`: use the host's networking stack. `bridge`: use the bridged network configuration. `none`: no networking in the container.",
+ "x-intellij-html-description": "passed through to docker and overrides the network configuration of docker builder. If unset, use whatever is configured in the underlying docker daemon. Valid modes are host
: use the host's networking stack. bridge
: use the bridged network configuration. none
: no networking in the container."
+ },
+ "noCache": {
+ "type": "boolean",
+ "description": "used to pass in --no-cache to docker build to prevent caching.",
+ "x-intellij-html-description": "used to pass in --no-cache to docker build to prevent caching.",
+ "default": "false"
+ },
+ "target": {
+ "type": "string",
+ "description": "Dockerfile target name to build.",
+ "x-intellij-html-description": "Dockerfile target name to build."
+ }
+ },
+ "preferredOrder": [
+ "dockerfile",
+ "target",
+ "buildArgs",
+ "network",
+ "cacheFrom",
+ "noCache"
+ ],
+ "additionalProperties": false,
+ "description": "*beta* describes an artifact built from a Dockerfile, usually using `docker build`.",
+ "x-intellij-html-description": "beta describes an artifact built from a Dockerfile, usually using docker build
."
+ },
+ "DockerConfig": {
+ "properties": {
+ "path": {
+ "type": "string",
+ "description": "path to the docker `config.json`.",
+ "x-intellij-html-description": "path to the docker config.json
."
+ },
+ "secretName": {
+ "type": "string",
+ "description": "Kubernetes secret that contains the `config.json` Docker configuration. Note that the expected secret type is not 'kubernetes.io/dockerconfigjson' but 'Opaque'.",
+ "x-intellij-html-description": "Kubernetes secret that contains the config.json
Docker configuration. Note that the expected secret type is not 'kubernetes.io/dockerconfigjson' but 'Opaque'."
+ }
+ },
+ "preferredOrder": [
+ "path",
+ "secretName"
+ ],
+ "additionalProperties": false,
+ "description": "contains information about the docker `config.json` to mount.",
+ "x-intellij-html-description": "contains information about the docker config.json
to mount."
+ },
+ "DockerfileDependency": {
+ "properties": {
+ "buildArgs": {
+ "additionalProperties": {
+ "type": "string"
+ },
+ "type": "object",
+ "description": "arguments passed to the docker build. It also accepts environment variables via the go template syntax.",
+ "x-intellij-html-description": "arguments passed to the docker build. It also accepts environment variables via the go template syntax.",
+ "default": "{}",
+ "examples": [
+ "{\"key1\": \"value1\", \"key2\": \"value2\", \"key3\": \"{{.ENV_VARIABLE}}\"}"
+ ]
+ },
+ "path": {
+ "type": "string",
+ "description": "locates the Dockerfile relative to workspace.",
+ "x-intellij-html-description": "locates the Dockerfile relative to workspace."
+ }
+ },
+ "preferredOrder": [
+ "path",
+ "buildArgs"
+ ],
+ "additionalProperties": false,
+ "description": "*alpha* used to specify a custom build artifact that is built from a Dockerfile. This allows skaffold to determine dependencies from the Dockerfile.",
+ "x-intellij-html-description": "alpha used to specify a custom build artifact that is built from a Dockerfile. This allows skaffold to determine dependencies from the Dockerfile."
+ },
+ "EnvTemplateTagger": {
+ "required": [
+ "template"
+ ],
+ "properties": {
+ "template": {
+ "type": "string",
+ "description": "used to produce the image name and tag. See golang [text/template](https://golang.org/pkg/text/template/). The template is executed against the current environment, with those variables injected: IMAGE_NAME | Name of the image being built, as supplied in the artifacts section.",
+ "x-intellij-html-description": "used to produce the image name and tag. See golang text/template. The template is executed against the current environment, with those variables injected: IMAGE_NAME | Name of the image being built, as supplied in the artifacts section.",
+ "examples": [
+ "{{.RELEASE}}-{{.IMAGE_NAME}}"
+ ]
+ }
+ },
+ "preferredOrder": [
+ "template"
+ ],
+ "additionalProperties": false,
+ "description": "*beta* tags images with a configurable template string.",
+ "x-intellij-html-description": "beta tags images with a configurable template string."
+ },
+ "GitTagger": {
+ "properties": {
+ "variant": {
+ "type": "string",
+ "description": "determines the behavior of the git tagger. Valid variants are `Tags` (default): use git tags or fall back to abbreviated commit hash. `CommitSha`: use the full git commit sha. `AbbrevCommitSha`: use the abbreviated git commit sha. `TreeSha`: use the full tree hash of the artifact workingdir. `AbbrevTreeSha`: use the abbreviated tree hash of the artifact workingdir.",
+ "x-intellij-html-description": "determines the behavior of the git tagger. Valid variants are Tags
(default): use git tags or fall back to abbreviated commit hash. CommitSha
: use the full git commit sha. AbbrevCommitSha
: use the abbreviated git commit sha. TreeSha
: use the full tree hash of the artifact workingdir. AbbrevTreeSha
: use the abbreviated tree hash of the artifact workingdir."
+ }
+ },
+ "preferredOrder": [
+ "variant"
+ ],
+ "additionalProperties": false,
+ "description": "*beta* tags images with the git tag or commit of the artifact's workspace.",
+ "x-intellij-html-description": "beta tags images with the git tag or commit of the artifact's workspace."
+ },
+ "GoogleCloudBuild": {
+ "properties": {
+ "concurrency": {
+ "type": "integer",
+ "description": "how many artifacts can be built concurrently. 0 means \"no-limit\" Defaults to 0.",
+ "x-intellij-html-description": "how many artifacts can be built concurrently. 0 means "no-limit" Defaults to 0."
+ },
+ "diskSizeGb": {
+ "type": "integer",
+ "description": "disk size of the VM that runs the build. See [Cloud Build Reference](https://cloud.google.com/cloud-build/docs/api/reference/rest/v1/projects.builds#buildoptions).",
+ "x-intellij-html-description": "disk size of the VM that runs the build. See Cloud Build Reference."
+ },
+ "dockerImage": {
+ "type": "string",
+ "description": "image that runs a Docker build. See [Cloud Builders](https://cloud.google.com/cloud-build/docs/cloud-builders).",
+ "x-intellij-html-description": "image that runs a Docker build. See Cloud Builders.",
+ "default": "gcr.io/cloud-builders/docker"
+ },
+ "gradleImage": {
+ "type": "string",
+ "description": "image that runs a Gradle build. See [Cloud Builders](https://cloud.google.com/cloud-build/docs/cloud-builders).",
+ "x-intellij-html-description": "image that runs a Gradle build. See Cloud Builders.",
+ "default": "gcr.io/cloud-builders/gradle"
+ },
+ "kanikoImage": {
+ "type": "string",
+ "description": "image that runs a Kaniko build. See [Cloud Builders](https://cloud.google.com/cloud-build/docs/cloud-builders).",
+ "x-intellij-html-description": "image that runs a Kaniko build. See Cloud Builders.",
+ "default": "gcr.io/kaniko-project/executor"
+ },
+ "machineType": {
+ "type": "string",
+ "description": "type of the VM that runs the build. See [Cloud Build Reference](https://cloud.google.com/cloud-build/docs/api/reference/rest/v1/projects.builds#buildoptions).",
+ "x-intellij-html-description": "type of the VM that runs the build. See Cloud Build Reference."
+ },
+ "mavenImage": {
+ "type": "string",
+ "description": "image that runs a Maven build. See [Cloud Builders](https://cloud.google.com/cloud-build/docs/cloud-builders).",
+ "x-intellij-html-description": "image that runs a Maven build. See Cloud Builders.",
+ "default": "gcr.io/cloud-builders/mvn"
+ },
+ "projectId": {
+ "type": "string",
+ "description": "ID of your Cloud Platform Project. If it is not provided, Skaffold will guess it from the image name. For example, given the artifact image name `gcr.io/myproject/image`, Skaffold will use the `myproject` GCP project.",
+ "x-intellij-html-description": "ID of your Cloud Platform Project. If it is not provided, Skaffold will guess it from the image name. For example, given the artifact image name gcr.io/myproject/image
, Skaffold will use the myproject
GCP project."
+ },
+ "timeout": {
+ "type": "string",
+ "description": "amount of time (in seconds) that this build should be allowed to run. See [Cloud Build Reference](https://cloud.google.com/cloud-build/docs/api/reference/rest/v1/projects.builds#resource-build).",
+ "x-intellij-html-description": "amount of time (in seconds) that this build should be allowed to run. See Cloud Build Reference."
+ }
+ },
+ "preferredOrder": [
+ "projectId",
+ "diskSizeGb",
+ "machineType",
+ "timeout",
+ "dockerImage",
+ "kanikoImage",
+ "mavenImage",
+ "gradleImage",
+ "concurrency"
+ ],
+ "additionalProperties": false,
+ "description": "*beta* describes how to do a remote build on [Google Cloud Build](https://cloud.google.com/cloud-build/docs/). Docker and Jib artifacts can be built on Cloud Build. The `projectId` needs to be provided and the currently logged in user should be given permissions to trigger new builds.",
+ "x-intellij-html-description": "beta describes how to do a remote build on Google Cloud Build. Docker and Jib artifacts can be built on Cloud Build. The projectId
needs to be provided and the currently logged in user should be given permissions to trigger new builds."
+ },
+ "HelmConventionConfig": {
+ "properties": {
+ "explicitRegistry": {
+ "type": "boolean",
+ "description": "separates `image.registry` to the image config syntax. Useful for some charts e.g. `postgresql`.",
+ "x-intellij-html-description": "separates image.registry
to the image config syntax. Useful for some charts e.g. postgresql
.",
+ "default": "false"
+ }
+ },
+ "preferredOrder": [
+ "explicitRegistry"
+ ],
+ "additionalProperties": false,
+ "description": "image config in the syntax of image.repository and image.tag.",
+ "x-intellij-html-description": "image config in the syntax of image.repository and image.tag."
+ },
+ "HelmDeploy": {
+ "required": [
+ "releases"
+ ],
+ "properties": {
+ "flags": {
+ "$ref": "#/definitions/HelmDeployFlags",
+ "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
."
+ },
+ "releases": {
+ "items": {
+ "$ref": "#/definitions/HelmRelease"
+ },
+ "type": "array",
+ "description": "a list of Helm releases.",
+ "x-intellij-html-description": "a list of Helm releases."
+ }
+ },
+ "preferredOrder": [
+ "releases",
+ "flags"
+ ],
+ "additionalProperties": false,
+ "description": "*beta* uses the `helm` CLI to apply the charts to the cluster.",
+ "x-intellij-html-description": "beta uses the helm
CLI to apply the charts to the cluster."
+ },
+ "HelmDeployFlags": {
+ "properties": {
+ "global": {
+ "items": {
+ "type": "string"
+ },
+ "type": "array",
+ "description": "additional flags passed on every command.",
+ "x-intellij-html-description": "additional flags passed on every command.",
+ "default": "[]"
+ },
+ "install": {
+ "items": {
+ "type": "string"
+ },
+ "type": "array",
+ "description": "additional flags passed to (`helm install`).",
+ "x-intellij-html-description": "additional flags passed to (helm install
).",
+ "default": "[]"
+ },
+ "upgrade": {
+ "items": {
+ "type": "string"
+ },
+ "type": "array",
+ "description": "additional flags passed to (`helm upgrade`).",
+ "x-intellij-html-description": "additional flags passed to (helm upgrade
).",
+ "default": "[]"
+ }
+ },
+ "preferredOrder": [
+ "global",
+ "install",
+ "upgrade"
+ ],
+ "additionalProperties": false,
+ "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
."
+ },
+ "HelmFQNConfig": {
+ "properties": {
+ "property": {
+ "type": "string",
+ "description": "defines the image config.",
+ "x-intellij-html-description": "defines the image config."
+ }
+ },
+ "preferredOrder": [
+ "property"
+ ],
+ "additionalProperties": false,
+ "description": "image config to use the FullyQualifiedImageName as param to set.",
+ "x-intellij-html-description": "image config to use the FullyQualifiedImageName as param to set."
+ },
+ "HelmImageStrategy": {
+ "anyOf": [
+ {
+ "additionalProperties": false
+ },
+ {
+ "properties": {
+ "fqn": {
+ "$ref": "#/definitions/HelmFQNConfig",
+ "description": "image configuration uses the syntax `IMAGE-NAME=IMAGE-REPOSITORY:IMAGE-TAG`.",
+ "x-intellij-html-description": "image configuration uses the syntax IMAGE-NAME=IMAGE-REPOSITORY:IMAGE-TAG
."
+ }
+ },
+ "preferredOrder": [
+ "fqn"
+ ],
+ "additionalProperties": false
+ },
+ {
+ "properties": {
+ "helm": {
+ "$ref": "#/definitions/HelmConventionConfig",
+ "description": "image configuration uses the syntax `IMAGE-NAME.repository=IMAGE-REPOSITORY, IMAGE-NAME.tag=IMAGE-TAG`.",
+ "x-intellij-html-description": "image configuration uses the syntax IMAGE-NAME.repository=IMAGE-REPOSITORY, IMAGE-NAME.tag=IMAGE-TAG
."
+ }
+ },
+ "preferredOrder": [
+ "helm"
+ ],
+ "additionalProperties": false
+ }
+ ],
+ "description": "adds image configurations to the Helm `values` file.",
+ "x-intellij-html-description": "adds image configurations to the Helm values
file."
+ },
+ "HelmPackaged": {
+ "properties": {
+ "appVersion": {
+ "type": "string",
+ "description": "sets the `appVersion` on the chart to this version.",
+ "x-intellij-html-description": "sets the appVersion
on the chart to this version."
+ },
+ "version": {
+ "type": "string",
+ "description": "sets the `version` on the chart to this semver version.",
+ "x-intellij-html-description": "sets the version
on the chart to this semver version."
+ }
+ },
+ "preferredOrder": [
+ "version",
+ "appVersion"
+ ],
+ "additionalProperties": false,
+ "description": "parameters for packaging helm chart (`helm package`).",
+ "x-intellij-html-description": "parameters for packaging helm chart (helm package
)."
+ },
+ "HelmRelease": {
+ "required": [
+ "name",
+ "chartPath"
+ ],
+ "properties": {
+ "chartPath": {
+ "type": "string",
+ "description": "path to the Helm chart.",
+ "x-intellij-html-description": "path to the Helm chart."
+ },
+ "imageStrategy": {
+ "$ref": "#/definitions/HelmImageStrategy",
+ "description": "adds image configurations to the Helm `values` file.",
+ "x-intellij-html-description": "adds image configurations to the Helm values
file."
+ },
+ "name": {
+ "type": "string",
+ "description": "name of the Helm release.",
+ "x-intellij-html-description": "name of the Helm release."
+ },
+ "namespace": {
+ "type": "string",
+ "description": "Kubernetes namespace.",
+ "x-intellij-html-description": "Kubernetes namespace."
+ },
+ "overrides": {
+ "description": "key-value pairs. If present, Skaffold will build a Helm `values` file that overrides the original and use it to call Helm CLI (`--f` flag).",
+ "x-intellij-html-description": "key-value pairs. If present, Skaffold will build a Helm values
file that overrides the original and use it to call Helm CLI (--f
flag)."
+ },
+ "packaged": {
+ "$ref": "#/definitions/HelmPackaged",
+ "description": "parameters for packaging helm chart (`helm package`).",
+ "x-intellij-html-description": "parameters for packaging helm chart (helm package
)."
+ },
+ "recreatePods": {
+ "type": "boolean",
+ "description": "if `true`, Skaffold will send `--recreate-pods` flag to Helm CLI when upgrading a new version of a chart in subsequent dev loop deploy.",
+ "x-intellij-html-description": "if true
, Skaffold will send --recreate-pods
flag to Helm CLI when upgrading a new version of a chart in subsequent dev loop deploy.",
+ "default": "false"
+ },
+ "remote": {
+ "type": "boolean",
+ "description": "specifies whether the chart path is remote, or exists on the host filesystem. `remote: true` implies `skipBuildDependencies: true`.",
+ "x-intellij-html-description": "specifies whether the chart path is remote, or exists on the host filesystem. remote: true
implies skipBuildDependencies: true
.",
+ "default": "false"
+ },
+ "setFiles": {
+ "additionalProperties": {
+ "type": "string"
+ },
+ "type": "object",
+ "description": "key-value pairs. If present, Skaffold will send `--set-file` flag to Helm CLI and append all pairs after the flag.",
+ "x-intellij-html-description": "key-value pairs. If present, Skaffold will send --set-file
flag to Helm CLI and append all pairs after the flag.",
+ "default": "{}"
+ },
+ "setValueTemplates": {
+ "additionalProperties": {
+ "type": "string"
+ },
+ "type": "object",
+ "description": "key-value pairs. If present, Skaffold will try to parse the value part of each key-value pair using environment variables in the system, then send `--set` flag to Helm CLI and append all parsed pairs after the flag.",
+ "x-intellij-html-description": "key-value pairs. If present, Skaffold will try to parse the value part of each key-value pair using environment variables in the system, then send --set
flag to Helm CLI and append all parsed pairs after the flag.",
+ "default": "{}"
+ },
+ "setValues": {
+ "additionalProperties": {
+ "type": "string"
+ },
+ "type": "object",
+ "description": "key-value pairs. If present, Skaffold will send `--set` flag to Helm CLI and append all pairs after the flag.",
+ "x-intellij-html-description": "key-value pairs. If present, Skaffold will send --set
flag to Helm CLI and append all pairs after the flag.",
+ "default": "{}"
+ },
+ "skipBuildDependencies": {
+ "type": "boolean",
+ "description": "should build dependencies be skipped.",
+ "x-intellij-html-description": "should build dependencies be skipped.",
+ "default": "false"
+ },
+ "useHelmSecrets": {
+ "type": "boolean",
+ "description": "instructs skaffold to use secrets plugin on deployment.",
+ "x-intellij-html-description": "instructs skaffold to use secrets plugin on deployment.",
+ "default": "false"
+ },
+ "values": {
+ "additionalProperties": {
+ "type": "string"
+ },
+ "type": "object",
+ "description": "key-value pairs supplementing the Helm `values` file.",
+ "x-intellij-html-description": "key-value pairs supplementing the Helm values
file.",
+ "default": "{}"
+ },
+ "valuesFiles": {
+ "items": {
+ "type": "string"
+ },
+ "type": "array",
+ "description": "paths to the Helm `values` files.",
+ "x-intellij-html-description": "paths to the Helm values
files.",
+ "default": "[]"
+ },
+ "version": {
+ "type": "string",
+ "description": "version of the chart.",
+ "x-intellij-html-description": "version of the chart."
+ },
+ "wait": {
+ "type": "boolean",
+ "description": "if `true`, Skaffold will send `--wait` flag to Helm CLI.",
+ "x-intellij-html-description": "if true
, Skaffold will send --wait
flag to Helm CLI.",
+ "default": "false"
+ }
+ },
+ "preferredOrder": [
+ "name",
+ "chartPath",
+ "valuesFiles",
+ "values",
+ "namespace",
+ "version",
+ "setValues",
+ "setValueTemplates",
+ "setFiles",
+ "wait",
+ "recreatePods",
+ "skipBuildDependencies",
+ "useHelmSecrets",
+ "remote",
+ "overrides",
+ "packaged",
+ "imageStrategy"
+ ],
+ "additionalProperties": false,
+ "description": "describes a helm release to be deployed.",
+ "x-intellij-html-description": "describes a helm release to be deployed."
+ },
+ "JSONPatch": {
+ "required": [
+ "path"
+ ],
+ "properties": {
+ "from": {
+ "type": "string",
+ "description": "source position in the yaml, used for `copy` or `move` operations.",
+ "x-intellij-html-description": "source position in the yaml, used for copy
or move
operations."
+ },
+ "op": {
+ "type": "string",
+ "description": "operation carried by the patch: `add`, `remove`, `replace`, `move`, `copy` or `test`.",
+ "x-intellij-html-description": "operation carried by the patch: add
, remove
, replace
, move
, copy
or test
.",
+ "default": "replace"
+ },
+ "path": {
+ "type": "string",
+ "description": "position in the yaml where the operation takes place. For example, this targets the `dockerfile` of the first artifact built.",
+ "x-intellij-html-description": "position in the yaml where the operation takes place. For example, this targets the dockerfile
of the first artifact built.",
+ "examples": [
+ "/build/artifacts/0/docker/dockerfile"
+ ]
+ },
+ "value": {
+ "type": "object",
+ "description": "value to apply. Can be any portion of yaml.",
+ "x-intellij-html-description": "value to apply. Can be any portion of yaml."
+ }
+ },
+ "preferredOrder": [
+ "op",
+ "path",
+ "from",
+ "value"
+ ],
+ "additionalProperties": false,
+ "description": "patch to be applied by a profile.",
+ "x-intellij-html-description": "patch to be applied by a profile."
+ },
+ "JibArtifact": {
+ "properties": {
+ "args": {
+ "items": {
+ "type": "string"
+ },
+ "type": "array",
+ "description": "additional build flags passed to the builder.",
+ "x-intellij-html-description": "additional build flags passed to the builder.",
+ "default": "[]",
+ "examples": [
+ "[\"--no-build-cache\"]"
+ ]
+ },
+ "project": {
+ "type": "string",
+ "description": "selects which sub-project to build for multi-module builds.",
+ "x-intellij-html-description": "selects which sub-project to build for multi-module builds."
+ }
+ },
+ "preferredOrder": [
+ "project",
+ "args"
+ ],
+ "additionalProperties": false,
+ "description": "*alpha* builds images using the [Jib plugins for Maven and Gradle](https://github.com/GoogleContainerTools/jib/).",
+ "x-intellij-html-description": "alpha builds images using the Jib plugins for Maven and Gradle."
+ },
+ "KanikoArtifact": {
+ "properties": {
+ "buildArgs": {
+ "additionalProperties": {
+ "type": "string"
+ },
+ "type": "object",
+ "description": "arguments passed to the docker build. It also accepts environment variables via the go template syntax.",
+ "x-intellij-html-description": "arguments passed to the docker build. It also accepts environment variables via the go template syntax.",
+ "default": "{}",
+ "examples": [
+ "{\"key1\": \"value1\", \"key2\": \"value2\", \"key3\": \"{{.ENV_VARIABLE}}\"}"
+ ]
+ },
+ "buildContext": {
+ "$ref": "#/definitions/KanikoBuildContext",
+ "description": "where the build context for this artifact resides.",
+ "x-intellij-html-description": "where the build context for this artifact resides."
+ },
+ "cache": {
+ "$ref": "#/definitions/KanikoCache",
+ "description": "configures Kaniko caching. If a cache is specified, Kaniko will use a remote cache which will speed up builds.",
+ "x-intellij-html-description": "configures Kaniko caching. If a cache is specified, Kaniko will use a remote cache which will speed up builds."
+ },
+ "dockerfile": {
+ "type": "string",
+ "description": "locates the Dockerfile relative to workspace.",
+ "x-intellij-html-description": "locates the Dockerfile relative to workspace.",
+ "default": "Dockerfile"
+ },
+ "flags": {
+ "items": {
+ "type": "string"
+ },
+ "type": "array",
+ "description": "additional flags to be passed to Kaniko command line. See [Kaniko Additional Flags](https://github.com/GoogleContainerTools/kaniko#additional-flags). Deprecated - instead the named, unique fields should be used, e.g. `buildArgs`, `cache`, `target`.",
+ "x-intellij-html-description": "additional flags to be passed to Kaniko command line. See Kaniko Additional Flags. Deprecated - instead the named, unique fields should be used, e.g. buildArgs
, cache
, target
.",
+ "default": "[]"
+ },
+ "image": {
+ "type": "string",
+ "description": "Docker image used by the Kaniko pod. Defaults to the latest released version of `gcr.io/kaniko-project/executor`.",
+ "x-intellij-html-description": "Docker image used by the Kaniko pod. Defaults to the latest released version of gcr.io/kaniko-project/executor
."
+ },
+ "reproducible": {
+ "type": "boolean",
+ "description": "used to strip timestamps out of the built image.",
+ "x-intellij-html-description": "used to strip timestamps out of the built image.",
+ "default": "false"
+ },
+ "target": {
+ "type": "string",
+ "description": "Dockerfile target name to build.",
+ "x-intellij-html-description": "Dockerfile target name to build."
+ }
+ },
+ "preferredOrder": [
+ "flags",
+ "dockerfile",
+ "target",
+ "buildArgs",
+ "buildContext",
+ "image",
+ "cache",
+ "reproducible"
+ ],
+ "additionalProperties": false,
+ "description": "*alpha* describes an artifact built from a Dockerfile, with kaniko.",
+ "x-intellij-html-description": "alpha describes an artifact built from a Dockerfile, with kaniko."
+ },
+ "KanikoBuildContext": {
+ "properties": {
+ "gcsBucket": {
+ "type": "string",
+ "description": "GCS bucket to which sources are uploaded. Kaniko will need access to that bucket to download the sources.",
+ "x-intellij-html-description": "GCS bucket to which sources are uploaded. Kaniko will need access to that bucket to download the sources."
+ },
+ "localDir": {
+ "$ref": "#/definitions/LocalDir",
+ "description": "configures how Kaniko mounts sources directly via an `emptyDir` volume.",
+ "x-intellij-html-description": "configures how Kaniko mounts sources directly via an emptyDir
volume."
+ }
+ },
+ "preferredOrder": [
+ "gcsBucket",
+ "localDir"
+ ],
+ "additionalProperties": false,
+ "description": "contains the different fields available to specify a Kaniko build context.",
+ "x-intellij-html-description": "contains the different fields available to specify a Kaniko build context."
+ },
+ "KanikoCache": {
+ "properties": {
+ "hostPath": {
+ "type": "string",
+ "description": "specifies a path on the host that is mounted to each pod as read only cache volume containing base images. If set, must exist on each node and prepopulated with kaniko-warmer.",
+ "x-intellij-html-description": "specifies a path on the host that is mounted to each pod as read only cache volume containing base images. If set, must exist on each node and prepopulated with kaniko-warmer."
+ },
+ "repo": {
+ "type": "string",
+ "description": "a remote repository to store cached layers. If none is specified, one will be inferred from the image name. See [Kaniko Caching](https://github.com/GoogleContainerTools/kaniko#caching).",
+ "x-intellij-html-description": "a remote repository to store cached layers. If none is specified, one will be inferred from the image name. See Kaniko Caching."
+ }
+ },
+ "preferredOrder": [
+ "repo",
+ "hostPath"
+ ],
+ "additionalProperties": false,
+ "description": "configures Kaniko caching. If a cache is specified, Kaniko will use a remote cache which will speed up builds.",
+ "x-intellij-html-description": "configures Kaniko caching. If a cache is specified, Kaniko will use a remote cache which will speed up builds."
+ },
+ "KubectlDeploy": {
+ "properties": {
+ "flags": {
+ "$ref": "#/definitions/KubectlFlags",
+ "description": "additional flags passed to `kubectl`.",
+ "x-intellij-html-description": "additional flags passed to kubectl
."
+ },
+ "manifests": {
+ "items": {
+ "type": "string"
+ },
+ "type": "array",
+ "description": "the Kubernetes yaml or json manifests.",
+ "x-intellij-html-description": "the Kubernetes yaml or json manifests.",
+ "default": "[\"k8s/*.yaml\"]"
+ },
+ "remoteManifests": {
+ "items": {
+ "type": "string"
+ },
+ "type": "array",
+ "description": "Kubernetes manifests in remote clusters.",
+ "x-intellij-html-description": "Kubernetes manifests in remote clusters.",
+ "default": "[]"
+ }
+ },
+ "preferredOrder": [
+ "manifests",
+ "remoteManifests",
+ "flags"
+ ],
+ "additionalProperties": false,
+ "description": "*beta* uses a client side `kubectl apply` to deploy manifests. You'll need a `kubectl` CLI version installed that's compatible with your cluster.",
+ "x-intellij-html-description": "beta uses a client side kubectl apply
to deploy manifests. You'll need a kubectl
CLI version installed that's compatible with your cluster."
+ },
+ "KubectlFlags": {
+ "properties": {
+ "apply": {
+ "items": {
+ "type": "string"
+ },
+ "type": "array",
+ "description": "additional flags passed on creations (`kubectl apply`).",
+ "x-intellij-html-description": "additional flags passed on creations (kubectl apply
).",
+ "default": "[]"
+ },
+ "delete": {
+ "items": {
+ "type": "string"
+ },
+ "type": "array",
+ "description": "additional flags passed on deletions (`kubectl delete`).",
+ "x-intellij-html-description": "additional flags passed on deletions (kubectl delete
).",
+ "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": "[]"
+ }
+ },
+ "preferredOrder": [
+ "global",
+ "apply",
+ "delete"
+ ],
+ "additionalProperties": false,
+ "description": "additional flags passed on the command line to kubectl either on every command (Global), on creations (Apply) or deletions (Delete).",
+ "x-intellij-html-description": "additional flags passed on the command line to kubectl either on every command (Global), on creations (Apply) or deletions (Delete)."
+ },
+ "KustomizeDeploy": {
+ "properties": {
+ "buildArgs": {
+ "items": {
+ "type": "string"
+ },
+ "type": "array",
+ "description": "additional args passed to `kustomize build`.",
+ "x-intellij-html-description": "additional args passed to kustomize build
.",
+ "default": "[]"
+ },
+ "flags": {
+ "$ref": "#/definitions/KubectlFlags",
+ "description": "additional flags passed to `kubectl`.",
+ "x-intellij-html-description": "additional flags passed to kubectl
."
+ },
+ "path": {
+ "type": "string",
+ "description": "path to Kustomization files.",
+ "x-intellij-html-description": "path to Kustomization files.",
+ "default": "."
+ }
+ },
+ "preferredOrder": [
+ "path",
+ "flags",
+ "buildArgs"
+ ],
+ "additionalProperties": false,
+ "description": "*beta* uses the `kustomize` CLI to \"patch\" a deployment for a target environment.",
+ "x-intellij-html-description": "beta uses the kustomize
CLI to "patch" a deployment for a target environment."
+ },
+ "LocalBuild": {
+ "properties": {
+ "push": {
+ "type": "boolean",
+ "description": "should images be pushed to a registry. If not specified, images are pushed only if the current Kubernetes context connects to a remote cluster.",
+ "x-intellij-html-description": "should images be pushed to a registry. If not specified, images are pushed only if the current Kubernetes context connects to a remote cluster."
+ },
+ "useBuildkit": {
+ "type": "boolean",
+ "description": "use BuildKit to build Docker images.",
+ "x-intellij-html-description": "use BuildKit to build Docker images.",
+ "default": "false"
+ },
+ "useDockerCLI": {
+ "type": "boolean",
+ "description": "use `docker` command-line interface instead of Docker Engine APIs.",
+ "x-intellij-html-description": "use docker
command-line interface instead of Docker Engine APIs.",
+ "default": "false"
+ }
+ },
+ "preferredOrder": [
+ "push",
+ "useDockerCLI",
+ "useBuildkit"
+ ],
+ "additionalProperties": false,
+ "description": "*beta* describes how to do a build on the local docker daemon and optionally push to a repository.",
+ "x-intellij-html-description": "beta describes how to do a build on the local docker daemon and optionally push to a repository."
+ },
+ "LocalDir": {
+ "properties": {
+ "initImage": {
+ "type": "string",
+ "description": "image used to run init container which mounts kaniko context.",
+ "x-intellij-html-description": "image used to run init container which mounts kaniko context."
+ }
+ },
+ "preferredOrder": [
+ "initImage"
+ ],
+ "additionalProperties": false,
+ "description": "configures how Kaniko mounts sources directly via an `emptyDir` volume.",
+ "x-intellij-html-description": "configures how Kaniko mounts sources directly via an emptyDir
volume."
+ },
+ "Metadata": {
+ "properties": {
+ "name": {
+ "type": "string",
+ "description": "an identifier for the project.",
+ "x-intellij-html-description": "an identifier for the project."
+ }
+ },
+ "preferredOrder": [
+ "name"
+ ],
+ "additionalProperties": false,
+ "description": "holds an optional name of the project.",
+ "x-intellij-html-description": "holds an optional name of the project."
+ },
+ "PortForwardResource": {
+ "properties": {
+ "localPort": {
+ "type": "integer",
+ "description": "local port to forward to. If the port is unavailable, Skaffold will choose a random open port to forward to. *Optional*.",
+ "x-intellij-html-description": "local port to forward to. If the port is unavailable, Skaffold will choose a random open port to forward to. Optional."
+ },
+ "namespace": {
+ "type": "string",
+ "description": "namespace of the resource to port forward.",
+ "x-intellij-html-description": "namespace of the resource to port forward."
+ },
+ "port": {
+ "type": "integer",
+ "description": "resource port that will be forwarded.",
+ "x-intellij-html-description": "resource port that will be forwarded."
+ },
+ "resourceName": {
+ "type": "string",
+ "description": "name of the Kubernetes resource to port forward.",
+ "x-intellij-html-description": "name of the Kubernetes resource to port forward."
+ },
+ "resourceType": {
+ "$ref": "#/definitions/ResourceType",
+ "description": "Kubernetes type that should be port forwarded. Acceptable resource types include: `Service`, `Pod` and Controller resource type that has a pod spec: `ReplicaSet`, `ReplicationController`, `Deployment`, `StatefulSet`, `DaemonSet`, `Job`, `CronJob`.",
+ "x-intellij-html-description": "Kubernetes type that should be port forwarded. Acceptable resource types include: Service
, Pod
and Controller resource type that has a pod spec: ReplicaSet
, ReplicationController
, Deployment
, StatefulSet
, DaemonSet
, Job
, CronJob
."
+ }
+ },
+ "preferredOrder": [
+ "resourceType",
+ "resourceName",
+ "namespace",
+ "port",
+ "localPort"
+ ],
+ "additionalProperties": false,
+ "description": "describes a resource to port forward.",
+ "x-intellij-html-description": "describes a resource to port forward."
+ },
+ "Profile": {
+ "required": [
+ "name"
+ ],
+ "properties": {
+ "activation": {
+ "items": {
+ "$ref": "#/definitions/Activation"
+ },
+ "type": "array",
+ "description": "criteria by which a profile can be auto-activated. The profile is auto-activated if any one of the activations are triggered. An activation is triggered if all of the criteria (env, kubeContext, command) are triggered.",
+ "x-intellij-html-description": "criteria by which a profile can be auto-activated. The profile is auto-activated if any one of the activations are triggered. An activation is triggered if all of the criteria (env, kubeContext, command) are triggered."
+ },
+ "build": {
+ "$ref": "#/definitions/BuildConfig",
+ "description": "describes how images are built.",
+ "x-intellij-html-description": "describes how images are built."
+ },
+ "deploy": {
+ "$ref": "#/definitions/DeployConfig",
+ "description": "describes how images are deployed.",
+ "x-intellij-html-description": "describes how images are deployed."
+ },
+ "name": {
+ "type": "string",
+ "description": "a unique profile name.",
+ "x-intellij-html-description": "a unique profile name.",
+ "examples": [
+ "profile-prod"
+ ]
+ },
+ "patches": {
+ "items": {
+ "$ref": "#/definitions/JSONPatch"
+ },
+ "type": "array",
+ "description": "patches applied to the configuration. Patches use the JSON patch notation.",
+ "x-intellij-html-description": "patches applied to the configuration. Patches use the JSON patch notation."
+ },
+ "portForward": {
+ "items": {
+ "$ref": "#/definitions/PortForwardResource"
+ },
+ "type": "array",
+ "description": "describes user defined resources to port-forward.",
+ "x-intellij-html-description": "describes user defined resources to port-forward."
+ },
+ "test": {
+ "items": {
+ "$ref": "#/definitions/TestCase"
+ },
+ "type": "array",
+ "description": "describes how images are tested.",
+ "x-intellij-html-description": "describes how images are tested."
+ }
+ },
+ "preferredOrder": [
+ "name",
+ "build",
+ "test",
+ "deploy",
+ "portForward",
+ "patches",
+ "activation"
+ ],
+ "additionalProperties": false,
+ "description": "*beta* profiles are used to override any `build`, `test` or `deploy` configuration.",
+ "x-intellij-html-description": "beta profiles are used to override any build
, test
or deploy
configuration."
+ },
+ "ResourceRequirement": {
+ "properties": {
+ "cpu": {
+ "type": "string",
+ "description": "the number cores to be used.",
+ "x-intellij-html-description": "the number cores to be used.",
+ "examples": [
+ "2`, `2.0` or `200m"
+ ]
+ },
+ "memory": {
+ "type": "string",
+ "description": "the amount of memory to allocate to the pod.",
+ "x-intellij-html-description": "the amount of memory to allocate to the pod.",
+ "examples": [
+ "1Gi` or `1000Mi"
+ ]
+ }
+ },
+ "preferredOrder": [
+ "cpu",
+ "memory"
+ ],
+ "additionalProperties": false,
+ "description": "stores the CPU/Memory requirements for the pod.",
+ "x-intellij-html-description": "stores the CPU/Memory requirements for the pod."
+ },
+ "ResourceRequirements": {
+ "properties": {
+ "limits": {
+ "$ref": "#/definitions/ResourceRequirement",
+ "description": "[resource limits](https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/#resource-requests-and-limits-of-pod-and-container) for the Kaniko pod.",
+ "x-intellij-html-description": "resource limits for the Kaniko pod."
+ },
+ "requests": {
+ "$ref": "#/definitions/ResourceRequirement",
+ "description": "[resource requests](https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/#resource-requests-and-limits-of-pod-and-container) for the Kaniko pod.",
+ "x-intellij-html-description": "resource requests for the Kaniko pod."
+ }
+ },
+ "preferredOrder": [
+ "requests",
+ "limits"
+ ],
+ "additionalProperties": false,
+ "description": "describes the resource requirements for the kaniko pod.",
+ "x-intellij-html-description": "describes the resource requirements for the kaniko pod."
+ },
+ "ResourceType": {
+ "type": "string",
+ "description": "describes the Kubernetes resource types used for port forwarding.",
+ "x-intellij-html-description": "describes the Kubernetes resource types used for port forwarding."
+ },
+ "ShaTagger": {
+ "description": "*beta* tags images with their sha256 digest.",
+ "x-intellij-html-description": "beta tags images with their sha256 digest."
+ },
+ "SkaffoldConfig": {
+ "required": [
+ "apiVersion",
+ "kind"
+ ],
+ "properties": {
+ "apiVersion": {
+ "type": "string",
+ "description": "version of the configuration.",
+ "x-intellij-html-description": "version of the configuration."
+ },
+ "build": {
+ "$ref": "#/definitions/BuildConfig",
+ "description": "describes how images are built.",
+ "x-intellij-html-description": "describes how images are built."
+ },
+ "deploy": {
+ "$ref": "#/definitions/DeployConfig",
+ "description": "describes how images are deployed.",
+ "x-intellij-html-description": "describes how images are deployed."
+ },
+ "kind": {
+ "type": "string",
+ "description": "always `Config`.",
+ "x-intellij-html-description": "always Config
.",
+ "default": "Config"
+ },
+ "metadata": {
+ "$ref": "#/definitions/Metadata",
+ "description": "holds additional information about the config.",
+ "x-intellij-html-description": "holds additional information about the config."
+ },
+ "portForward": {
+ "items": {
+ "$ref": "#/definitions/PortForwardResource"
+ },
+ "type": "array",
+ "description": "describes user defined resources to port-forward.",
+ "x-intellij-html-description": "describes user defined resources to port-forward."
+ },
+ "profiles": {
+ "items": {
+ "$ref": "#/definitions/Profile"
+ },
+ "type": "array",
+ "description": "*beta* can override be used to `build`, `test` or `deploy` configuration.",
+ "x-intellij-html-description": "beta can override be used to build
, test
or deploy
configuration."
+ },
+ "test": {
+ "items": {
+ "$ref": "#/definitions/TestCase"
+ },
+ "type": "array",
+ "description": "describes how images are tested.",
+ "x-intellij-html-description": "describes how images are tested."
+ }
+ },
+ "preferredOrder": [
+ "apiVersion",
+ "kind",
+ "metadata",
+ "build",
+ "test",
+ "deploy",
+ "portForward",
+ "profiles"
+ ],
+ "additionalProperties": false,
+ "description": "holds the fields parsed from the Skaffold configuration file (skaffold.yaml).",
+ "x-intellij-html-description": "holds the fields parsed from the Skaffold configuration file (skaffold.yaml)."
+ },
+ "Sync": {
+ "properties": {
+ "infer": {
+ "items": {
+ "type": "string"
+ },
+ "type": "array",
+ "description": "file patterns which may be synced into the container. The container destination is inferred by the builder. Currently only available for docker artifacts.",
+ "x-intellij-html-description": "file patterns which may be synced into the container. The container destination is inferred by the builder. Currently only available for docker artifacts.",
+ "default": "[]"
+ },
+ "manual": {
+ "items": {
+ "$ref": "#/definitions/SyncRule"
+ },
+ "type": "array",
+ "description": "manual sync rules indicating the source and destination.",
+ "x-intellij-html-description": "manual sync rules indicating the source and destination."
+ }
+ },
+ "preferredOrder": [
+ "manual",
+ "infer"
+ ],
+ "additionalProperties": false,
+ "description": "*alpha* specifies what files to sync into the container. This is a list of sync rules indicating the intent to sync for source files.",
+ "x-intellij-html-description": "alpha specifies what files to sync into the container. This is a list of sync rules indicating the intent to sync for source files."
+ },
+ "SyncRule": {
+ "required": [
+ "src",
+ "dest"
+ ],
+ "properties": {
+ "dest": {
+ "type": "string",
+ "description": "destination path in the container where the files should be synced to.",
+ "x-intellij-html-description": "destination path in the container where the files should be synced to.",
+ "examples": [
+ "\"app/\""
+ ]
+ },
+ "src": {
+ "type": "string",
+ "description": "a glob pattern to match local paths against. Directories should be delimited by `/` on all platforms.",
+ "x-intellij-html-description": "a glob pattern to match local paths against. Directories should be delimited by /
on all platforms.",
+ "examples": [
+ "\"css/**/*.css\""
+ ]
+ },
+ "strip": {
+ "type": "string",
+ "description": "specifies the path prefix to remove from the source path when transplanting the files into the destination folder.",
+ "x-intellij-html-description": "specifies the path prefix to remove from the source path when transplanting the files into the destination folder.",
+ "examples": [
+ "\"css/\""
+ ]
+ }
+ },
+ "preferredOrder": [
+ "src",
+ "dest",
+ "strip"
+ ],
+ "additionalProperties": false,
+ "description": "specifies which local files to sync to remote folders.",
+ "x-intellij-html-description": "specifies which local files to sync to remote folders."
+ },
+ "TagPolicy": {
+ "properties": {
+ "dateTime": {
+ "$ref": "#/definitions/DateTimeTagger",
+ "description": "*beta* tags images with the build timestamp.",
+ "x-intellij-html-description": "beta tags images with the build timestamp."
+ },
+ "envTemplate": {
+ "$ref": "#/definitions/EnvTemplateTagger",
+ "description": "*beta* tags images with a configurable template string.",
+ "x-intellij-html-description": "beta tags images with a configurable template string."
+ },
+ "gitCommit": {
+ "$ref": "#/definitions/GitTagger",
+ "description": "*beta* tags images with the git tag or commit of the artifact's workspace.",
+ "x-intellij-html-description": "beta tags images with the git tag or commit of the artifact's workspace."
+ },
+ "sha256": {
+ "$ref": "#/definitions/ShaTagger",
+ "description": "*beta* tags images with their sha256 digest.",
+ "x-intellij-html-description": "beta tags images with their sha256 digest."
+ }
+ },
+ "preferredOrder": [
+ "gitCommit",
+ "sha256",
+ "envTemplate",
+ "dateTime"
+ ],
+ "additionalProperties": false,
+ "description": "contains all the configuration for the tagging step.",
+ "x-intellij-html-description": "contains all the configuration for the tagging step."
+ },
+ "TestCase": {
+ "required": [
+ "image"
+ ],
+ "properties": {
+ "image": {
+ "type": "string",
+ "description": "artifact on which to run those tests.",
+ "x-intellij-html-description": "artifact on which to run those tests.",
+ "examples": [
+ "gcr.io/k8s-skaffold/example"
+ ]
+ },
+ "structureTests": {
+ "items": {
+ "type": "string"
+ },
+ "type": "array",
+ "description": "the [Container Structure Tests](https://github.com/GoogleContainerTools/container-structure-test) to run on that artifact.",
+ "x-intellij-html-description": "the Container Structure Tests to run on that artifact.",
+ "default": "[]",
+ "examples": [
+ "[\"./test/*\"]"
+ ]
+ }
+ },
+ "preferredOrder": [
+ "image",
+ "structureTests"
+ ],
+ "additionalProperties": false,
+ "description": "a list of structure tests to run on images that Skaffold builds.",
+ "x-intellij-html-description": "a list of structure tests to run on images that Skaffold builds."
+ }
+ }
+}
diff --git a/hack/versions/cmd/new/version.go b/hack/versions/cmd/new/version.go
index 62f386420af..f19ae93e25f 100644
--- a/hack/versions/cmd/new/version.go
+++ b/hack/versions/cmd/new/version.go
@@ -73,7 +73,7 @@ func main() {
// Latest uses the new version
sed(path("latest", "config.go"), current, next)
- hackschema.UpdateVersionComment(path(current, "config.go"), true)
+ hackschema.UpdateVersionComment(path("latest", "config.go"), false)
// Update skaffold.yaml in integration tests
walk("integration", func(path string, info os.FileInfo) {
diff --git a/integration/examples/bazel/skaffold.yaml b/integration/examples/bazel/skaffold.yaml
index e015f95f8e1..2b0761f2841 100644
--- a/integration/examples/bazel/skaffold.yaml
+++ b/integration/examples/bazel/skaffold.yaml
@@ -1,4 +1,4 @@
-apiVersion: skaffold/v1beta15
+apiVersion: skaffold/v1beta16
kind: Config
build:
artifacts:
diff --git a/integration/examples/gcb-kaniko/skaffold.yaml b/integration/examples/gcb-kaniko/skaffold.yaml
index e266184f75d..ef7a565d9ae 100644
--- a/integration/examples/gcb-kaniko/skaffold.yaml
+++ b/integration/examples/gcb-kaniko/skaffold.yaml
@@ -1,4 +1,4 @@
-apiVersion: skaffold/v1beta15
+apiVersion: skaffold/v1beta16
kind: Config
build:
googleCloudBuild:
diff --git a/integration/examples/generate-pipeline/skaffold.yaml b/integration/examples/generate-pipeline/skaffold.yaml
index d5f85703c5c..9e4bdd57f12 100644
--- a/integration/examples/generate-pipeline/skaffold.yaml
+++ b/integration/examples/generate-pipeline/skaffold.yaml
@@ -1,4 +1,4 @@
-apiVersion: skaffold/v1beta15
+apiVersion: skaffold/v1beta16
kind: Config
build:
artifacts:
diff --git a/integration/examples/getting-started/skaffold.yaml b/integration/examples/getting-started/skaffold.yaml
index ff54fc0d420..08dee75c288 100644
--- a/integration/examples/getting-started/skaffold.yaml
+++ b/integration/examples/getting-started/skaffold.yaml
@@ -1,4 +1,4 @@
-apiVersion: skaffold/v1beta15
+apiVersion: skaffold/v1beta16
kind: Config
build:
artifacts:
diff --git a/integration/examples/google-cloud-build/skaffold.yaml b/integration/examples/google-cloud-build/skaffold.yaml
index bac89c29b65..fab1e6f5193 100644
--- a/integration/examples/google-cloud-build/skaffold.yaml
+++ b/integration/examples/google-cloud-build/skaffold.yaml
@@ -1,4 +1,4 @@
-apiVersion: skaffold/v1beta15
+apiVersion: skaffold/v1beta16
kind: Config
build:
googleCloudBuild:
diff --git a/integration/examples/helm-deployment-dependencies/skaffold.yaml b/integration/examples/helm-deployment-dependencies/skaffold.yaml
index 8f61f76ab05..ed05152e906 100644
--- a/integration/examples/helm-deployment-dependencies/skaffold.yaml
+++ b/integration/examples/helm-deployment-dependencies/skaffold.yaml
@@ -1,4 +1,4 @@
-apiVersion: skaffold/v1beta15
+apiVersion: skaffold/v1beta16
kind: Config
build:
tagPolicy:
diff --git a/integration/examples/helm-deployment/skaffold.yaml b/integration/examples/helm-deployment/skaffold.yaml
index 49a8cfe7884..8cf5d747278 100644
--- a/integration/examples/helm-deployment/skaffold.yaml
+++ b/integration/examples/helm-deployment/skaffold.yaml
@@ -1,4 +1,4 @@
-apiVersion: skaffold/v1beta15
+apiVersion: skaffold/v1beta16
kind: Config
build:
tagPolicy:
diff --git a/integration/examples/hot-reload/skaffold.yaml b/integration/examples/hot-reload/skaffold.yaml
index 414a24193d9..166c47f901f 100644
--- a/integration/examples/hot-reload/skaffold.yaml
+++ b/integration/examples/hot-reload/skaffold.yaml
@@ -1,4 +1,4 @@
-apiVersion: skaffold/v1beta15
+apiVersion: skaffold/v1beta16
kind: Config
build:
artifacts:
diff --git a/integration/examples/jib-gradle/skaffold.yaml b/integration/examples/jib-gradle/skaffold.yaml
index a4d2c5d2b54..ec6c4bf556e 100644
--- a/integration/examples/jib-gradle/skaffold.yaml
+++ b/integration/examples/jib-gradle/skaffold.yaml
@@ -1,4 +1,4 @@
-apiVersion: skaffold/v1beta15
+apiVersion: skaffold/v1beta16
kind: Config
build:
artifacts:
diff --git a/integration/examples/jib-multimodule/skaffold.yaml b/integration/examples/jib-multimodule/skaffold.yaml
index 0118c5d3df2..490310c047d 100644
--- a/integration/examples/jib-multimodule/skaffold.yaml
+++ b/integration/examples/jib-multimodule/skaffold.yaml
@@ -1,4 +1,4 @@
-apiVersion: skaffold/v1beta15
+apiVersion: skaffold/v1beta16
kind: Config
build:
artifacts:
diff --git a/integration/examples/jib/skaffold.yaml b/integration/examples/jib/skaffold.yaml
index 230a3d78921..d3459fc33ce 100644
--- a/integration/examples/jib/skaffold.yaml
+++ b/integration/examples/jib/skaffold.yaml
@@ -1,4 +1,4 @@
-apiVersion: skaffold/v1beta15
+apiVersion: skaffold/v1beta16
kind: Config
build:
artifacts:
diff --git a/integration/examples/kaniko-local/skaffold.yaml b/integration/examples/kaniko-local/skaffold.yaml
index d2c78d1d394..a218fc36618 100644
--- a/integration/examples/kaniko-local/skaffold.yaml
+++ b/integration/examples/kaniko-local/skaffold.yaml
@@ -1,4 +1,4 @@
-apiVersion: skaffold/v1beta15
+apiVersion: skaffold/v1beta16
kind: Config
build:
artifacts:
diff --git a/integration/examples/kaniko/skaffold.yaml b/integration/examples/kaniko/skaffold.yaml
index 5cde54c451c..c18242b2dee 100644
--- a/integration/examples/kaniko/skaffold.yaml
+++ b/integration/examples/kaniko/skaffold.yaml
@@ -1,4 +1,4 @@
-apiVersion: skaffold/v1beta15
+apiVersion: skaffold/v1beta16
kind: Config
build:
artifacts:
diff --git a/integration/examples/kustomize/skaffold.yaml b/integration/examples/kustomize/skaffold.yaml
index 152342103df..01dc8781308 100644
--- a/integration/examples/kustomize/skaffold.yaml
+++ b/integration/examples/kustomize/skaffold.yaml
@@ -1,4 +1,4 @@
-apiVersion: skaffold/v1beta15
+apiVersion: skaffold/v1beta16
kind: Config
deploy:
kustomize: {}
diff --git a/integration/examples/microservices/skaffold.yaml b/integration/examples/microservices/skaffold.yaml
index b0bc83813b9..50f5f3950f6 100644
--- a/integration/examples/microservices/skaffold.yaml
+++ b/integration/examples/microservices/skaffold.yaml
@@ -1,4 +1,4 @@
-apiVersion: skaffold/v1beta15
+apiVersion: skaffold/v1beta16
kind: Config
build:
artifacts:
diff --git a/integration/examples/nodejs/skaffold.yaml b/integration/examples/nodejs/skaffold.yaml
index 3479e9565be..46b10f0e525 100644
--- a/integration/examples/nodejs/skaffold.yaml
+++ b/integration/examples/nodejs/skaffold.yaml
@@ -1,4 +1,4 @@
-apiVersion: skaffold/v1beta15
+apiVersion: skaffold/v1beta16
kind: Config
build:
artifacts:
diff --git a/integration/examples/react-reload/skaffold.yaml b/integration/examples/react-reload/skaffold.yaml
index ce537a78686..48e9d47a6b5 100644
--- a/integration/examples/react-reload/skaffold.yaml
+++ b/integration/examples/react-reload/skaffold.yaml
@@ -1,4 +1,4 @@
-apiVersion: skaffold/v1beta15
+apiVersion: skaffold/v1beta16
kind: Config
build:
artifacts:
diff --git a/integration/examples/structure-tests/skaffold.yaml b/integration/examples/structure-tests/skaffold.yaml
index e9ce7440e6e..86ec7e38b09 100644
--- a/integration/examples/structure-tests/skaffold.yaml
+++ b/integration/examples/structure-tests/skaffold.yaml
@@ -1,4 +1,4 @@
-apiVersion: skaffold/v1beta15
+apiVersion: skaffold/v1beta16
kind: Config
build:
artifacts:
diff --git a/integration/examples/tagging-with-environment-variables/skaffold.yaml b/integration/examples/tagging-with-environment-variables/skaffold.yaml
index bfb562dd081..2c43dc99a44 100644
--- a/integration/examples/tagging-with-environment-variables/skaffold.yaml
+++ b/integration/examples/tagging-with-environment-variables/skaffold.yaml
@@ -1,4 +1,4 @@
-apiVersion: skaffold/v1beta15
+apiVersion: skaffold/v1beta16
kind: Config
build:
artifacts:
diff --git a/integration/testdata/build/skaffold.yaml b/integration/testdata/build/skaffold.yaml
index b2a2952481b..ddf622d2f5a 100644
--- a/integration/testdata/build/skaffold.yaml
+++ b/integration/testdata/build/skaffold.yaml
@@ -1,4 +1,4 @@
-apiVersion: skaffold/v1beta15
+apiVersion: skaffold/v1beta16
kind: Config
build:
local:
diff --git a/integration/testdata/custom/skaffold.yaml b/integration/testdata/custom/skaffold.yaml
index 80d8dbcb6e3..683ce476c9d 100644
--- a/integration/testdata/custom/skaffold.yaml
+++ b/integration/testdata/custom/skaffold.yaml
@@ -1,4 +1,4 @@
-apiVersion: skaffold/v1beta15
+apiVersion: skaffold/v1beta16
kind: Config
build:
artifacts:
diff --git a/integration/testdata/debug/skaffold.yaml b/integration/testdata/debug/skaffold.yaml
index 64926665399..3b7ba193f4a 100644
--- a/integration/testdata/debug/skaffold.yaml
+++ b/integration/testdata/debug/skaffold.yaml
@@ -1,4 +1,4 @@
-apiVersion: skaffold/v1beta15
+apiVersion: skaffold/v1beta16
kind: Config
build:
artifacts:
diff --git a/integration/testdata/dev/skaffold.yaml b/integration/testdata/dev/skaffold.yaml
index 1361e2a0954..135961fc377 100644
--- a/integration/testdata/dev/skaffold.yaml
+++ b/integration/testdata/dev/skaffold.yaml
@@ -1,4 +1,4 @@
-apiVersion: skaffold/v1beta15
+apiVersion: skaffold/v1beta16
kind: Config
build:
artifacts:
diff --git a/integration/testdata/gke_loadbalancer/skaffold.yaml b/integration/testdata/gke_loadbalancer/skaffold.yaml
index f4181266b2a..5b1434137a6 100644
--- a/integration/testdata/gke_loadbalancer/skaffold.yaml
+++ b/integration/testdata/gke_loadbalancer/skaffold.yaml
@@ -1,4 +1,4 @@
-apiVersion: skaffold/v1beta15
+apiVersion: skaffold/v1beta16
kind: Config
build:
artifacts:
diff --git a/integration/testdata/jib-gradle/skaffold.yaml b/integration/testdata/jib-gradle/skaffold.yaml
index 2e51dd6e648..0caf4d5b3fb 100644
--- a/integration/testdata/jib-gradle/skaffold.yaml
+++ b/integration/testdata/jib-gradle/skaffold.yaml
@@ -1,4 +1,4 @@
-apiVersion: skaffold/v1beta15
+apiVersion: skaffold/v1beta16
kind: Config
build:
artifacts:
diff --git a/integration/testdata/jib/skaffold.yaml b/integration/testdata/jib/skaffold.yaml
index c64ee6280d7..2c244b4effc 100644
--- a/integration/testdata/jib/skaffold.yaml
+++ b/integration/testdata/jib/skaffold.yaml
@@ -1,4 +1,4 @@
-apiVersion: skaffold/v1beta15
+apiVersion: skaffold/v1beta16
kind: Config
build:
artifacts:
diff --git a/integration/testdata/kaniko-microservices/skaffold.yaml b/integration/testdata/kaniko-microservices/skaffold.yaml
index 3f1f9079487..b24c4bda745 100644
--- a/integration/testdata/kaniko-microservices/skaffold.yaml
+++ b/integration/testdata/kaniko-microservices/skaffold.yaml
@@ -1,4 +1,4 @@
-apiVersion: skaffold/v1beta15
+apiVersion: skaffold/v1beta16
kind: Config
build:
artifacts:
diff --git a/integration/testdata/kaniko-sub-folder/skaffold.yaml b/integration/testdata/kaniko-sub-folder/skaffold.yaml
index d6814dd10d4..8a1d9a4ddeb 100644
--- a/integration/testdata/kaniko-sub-folder/skaffold.yaml
+++ b/integration/testdata/kaniko-sub-folder/skaffold.yaml
@@ -1,4 +1,4 @@
-apiVersion: skaffold/v1beta15
+apiVersion: skaffold/v1beta16
kind: Config
build:
artifacts:
diff --git a/integration/testdata/kaniko-target/skaffold.yaml b/integration/testdata/kaniko-target/skaffold.yaml
index 0a8322d50fc..abf80889618 100644
--- a/integration/testdata/kaniko-target/skaffold.yaml
+++ b/integration/testdata/kaniko-target/skaffold.yaml
@@ -1,4 +1,4 @@
-apiVersion: skaffold/v1beta15
+apiVersion: skaffold/v1beta16
kind: Config
build:
artifacts:
diff --git a/integration/testdata/tagPolicy/skaffold.yaml b/integration/testdata/tagPolicy/skaffold.yaml
index 491475759a4..32384c8429f 100644
--- a/integration/testdata/tagPolicy/skaffold.yaml
+++ b/integration/testdata/tagPolicy/skaffold.yaml
@@ -1,4 +1,4 @@
-apiVersion: skaffold/v1beta15
+apiVersion: skaffold/v1beta16
kind: Config
build:
artifacts:
diff --git a/pkg/skaffold/schema/latest/config.go b/pkg/skaffold/schema/latest/config.go
index 24f2ac04136..e0108b0b4d8 100644
--- a/pkg/skaffold/schema/latest/config.go
+++ b/pkg/skaffold/schema/latest/config.go
@@ -20,8 +20,8 @@ import (
"github.com/GoogleContainerTools/skaffold/pkg/skaffold/schema/util"
)
-// !!! WARNING !!! This config version is already released, please DO NOT MODIFY the structs in this file.
-const Version string = "skaffold/v1beta15"
+// This config version is not yet released, it is SAFE TO MODIFY the structs in this file.
+const Version string = "skaffold/v1beta16"
// NewSkaffoldConfig creates a SkaffoldConfig
func NewSkaffoldConfig() util.VersionedConfig {
diff --git a/pkg/skaffold/schema/v1beta14/upgrade.go b/pkg/skaffold/schema/v1beta14/upgrade.go
index d0d875ce7b4..acbff7d6b47 100755
--- a/pkg/skaffold/schema/v1beta14/upgrade.go
+++ b/pkg/skaffold/schema/v1beta14/upgrade.go
@@ -17,8 +17,8 @@ limitations under the License.
package v1beta14
import (
- next "github.com/GoogleContainerTools/skaffold/pkg/skaffold/schema/latest"
"github.com/GoogleContainerTools/skaffold/pkg/skaffold/schema/util"
+ next "github.com/GoogleContainerTools/skaffold/pkg/skaffold/schema/v1beta15"
pkgutil "github.com/GoogleContainerTools/skaffold/pkg/skaffold/util"
)
diff --git a/pkg/skaffold/schema/v1beta14/upgrade_test.go b/pkg/skaffold/schema/v1beta14/upgrade_test.go
index 33be0f29328..548837b8ced 100755
--- a/pkg/skaffold/schema/v1beta14/upgrade_test.go
+++ b/pkg/skaffold/schema/v1beta14/upgrade_test.go
@@ -19,7 +19,7 @@ package v1beta14
import (
"testing"
- next "github.com/GoogleContainerTools/skaffold/pkg/skaffold/schema/latest"
+ next "github.com/GoogleContainerTools/skaffold/pkg/skaffold/schema/v1beta15"
"github.com/GoogleContainerTools/skaffold/testutil"
yaml "gopkg.in/yaml.v2"
)
diff --git a/pkg/skaffold/schema/v1beta15/config.go b/pkg/skaffold/schema/v1beta15/config.go
new file mode 100755
index 00000000000..82059db7ade
--- /dev/null
+++ b/pkg/skaffold/schema/v1beta15/config.go
@@ -0,0 +1,783 @@
+/*
+Copyright 2019 The Skaffold Authors
+
+Licensed under the Apache License, Version 2.0 (the "License");
+you may not use this file except in compliance with the License.
+You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing, software
+distributed under the License is distributed on an "AS IS" BASIS,
+WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+See the License for the specific language governing permissions and
+limitations under the License.
+*/
+
+package v1beta15
+
+import (
+ "github.com/GoogleContainerTools/skaffold/pkg/skaffold/schema/util"
+)
+
+// !!! WARNING !!! This config version is already released, please DO NOT MODIFY the structs in this file.
+const Version string = "skaffold/v1beta15"
+
+// NewSkaffoldConfig creates a SkaffoldConfig
+func NewSkaffoldConfig() util.VersionedConfig {
+ return new(SkaffoldConfig)
+}
+
+// SkaffoldConfig holds the fields parsed from the Skaffold configuration file (skaffold.yaml).
+type SkaffoldConfig struct {
+ // APIVersion is the version of the configuration.
+ APIVersion string `yaml:"apiVersion" yamltags:"required"`
+
+ // Kind is always `Config`. Defaults to `Config`.
+ Kind string `yaml:"kind" yamltags:"required"`
+
+ // Metadata holds additional information about the config.
+ Metadata Metadata `yaml:"metadata,omitempty"`
+
+ // Pipeline defines the Build/Test/Deploy phases.
+ Pipeline `yaml:",inline"`
+
+ // Profiles *beta* can override be used to `build`, `test` or `deploy` configuration.
+ Profiles []Profile `yaml:"profiles,omitempty"`
+}
+
+// Metadata holds an optional name of the project.
+type Metadata struct {
+ // Name is an identifier for the project.
+ Name string `yaml:"name,omitempty"`
+}
+
+// Pipeline describes a Skaffold pipeline.
+type Pipeline struct {
+ // Build describes how images are built.
+ Build BuildConfig `yaml:"build,omitempty"`
+
+ // Test describes how images are tested.
+ Test []*TestCase `yaml:"test,omitempty"`
+
+ // Deploy describes how images are deployed.
+ Deploy DeployConfig `yaml:"deploy,omitempty"`
+
+ // PortForward describes user defined resources to port-forward.
+ PortForward []*PortForwardResource `yaml:"portForward,omitempty"`
+}
+
+func (c *SkaffoldConfig) GetVersion() string {
+ return c.APIVersion
+}
+
+// ResourceType describes the Kubernetes resource types used for port forwarding.
+type ResourceType string
+
+// PortForwardResource describes a resource to port forward.
+type PortForwardResource struct {
+ // Type is the Kubernetes type that should be port forwarded.
+ // Acceptable resource types include: `Service`, `Pod` and Controller resource type that has a pod spec: `ReplicaSet`, `ReplicationController`, `Deployment`, `StatefulSet`, `DaemonSet`, `Job`, `CronJob`.
+ Type ResourceType `yaml:"resourceType,omitempty"`
+
+ // Name is the name of the Kubernetes resource to port forward.
+ Name string `yaml:"resourceName,omitempty"`
+
+ // Namespace is the namespace of the resource to port forward.
+ Namespace string `yaml:"namespace,omitempty"`
+
+ // Port is the resource port that will be forwarded.
+ Port int `yaml:"port,omitempty"`
+
+ // LocalPort is the local port to forward to. If the port is unavailable, Skaffold will choose a random open port to forward to. *Optional*.
+ LocalPort int `yaml:"localPort,omitempty"`
+}
+
+// BuildConfig contains all the configuration for the build steps.
+type BuildConfig struct {
+ // Artifacts lists the images you're going to be building.
+ Artifacts []*Artifact `yaml:"artifacts,omitempty"`
+
+ // InsecureRegistries is a list of registries declared by the user to be insecure.
+ // These registries will be connected to via HTTP instead of HTTPS.
+ InsecureRegistries []string `yaml:"insecureRegistries,omitempty"`
+
+ // TagPolicy *beta* determines how images are tagged.
+ // A few strategies are provided here, although you most likely won't need to care!
+ // If not specified, it defaults to `gitCommit: {variant: Tags}`.
+ TagPolicy TagPolicy `yaml:"tagPolicy,omitempty"`
+
+ BuildType `yaml:",inline"`
+}
+
+// TagPolicy contains all the configuration for the tagging step.
+type TagPolicy struct {
+ // GitTagger *beta* tags images with the git tag or commit of the artifact's workspace.
+ GitTagger *GitTagger `yaml:"gitCommit,omitempty" yamltags:"oneOf=tag"`
+
+ // ShaTagger *beta* tags images with their sha256 digest.
+ ShaTagger *ShaTagger `yaml:"sha256,omitempty" yamltags:"oneOf=tag"`
+
+ // EnvTemplateTagger *beta* tags images with a configurable template string.
+ EnvTemplateTagger *EnvTemplateTagger `yaml:"envTemplate,omitempty" yamltags:"oneOf=tag"`
+
+ // DateTimeTagger *beta* tags images with the build timestamp.
+ DateTimeTagger *DateTimeTagger `yaml:"dateTime,omitempty" yamltags:"oneOf=tag"`
+}
+
+// ShaTagger *beta* tags images with their sha256 digest.
+type ShaTagger struct{}
+
+// GitTagger *beta* tags images with the git tag or commit of the artifact's workspace.
+type GitTagger struct {
+ // Variant determines the behavior of the git tagger. Valid variants are
+ // `Tags` (default): use git tags or fall back to abbreviated commit hash.
+ // `CommitSha`: use the full git commit sha.
+ // `AbbrevCommitSha`: use the abbreviated git commit sha.
+ // `TreeSha`: use the full tree hash of the artifact workingdir.
+ // `AbbrevTreeSha`: use the abbreviated tree hash of the artifact workingdir.
+ Variant string `yaml:"variant,omitempty"`
+}
+
+// EnvTemplateTagger *beta* tags images with a configurable template string.
+type EnvTemplateTagger struct {
+ // Template used to produce the image name and tag.
+ // See golang [text/template](https://golang.org/pkg/text/template/).
+ // The template is executed against the current environment,
+ // with those variables injected:
+ // IMAGE_NAME | Name of the image being built, as supplied in the artifacts section.
+ // For example: `{{.RELEASE}}-{{.IMAGE_NAME}}`.
+ Template string `yaml:"template,omitempty" yamltags:"required"`
+}
+
+// DateTimeTagger *beta* tags images with the build timestamp.
+type DateTimeTagger struct {
+ // Format formats the date and time.
+ // See [#Time.Format](https://golang.org/pkg/time/#Time.Format).
+ // Defaults to `2006-01-02_15-04-05.999_MST`.
+ Format string `yaml:"format,omitempty"`
+
+ // TimeZone sets the timezone for the date and time.
+ // See [Time.LoadLocation](https://golang.org/pkg/time/#Time.LoadLocation).
+ // Defaults to the local timezone.
+ TimeZone string `yaml:"timezone,omitempty"`
+}
+
+// BuildType contains the specific implementation and parameters needed
+// for the build step. Only one field should be populated.
+type BuildType struct {
+ // LocalBuild *beta* describes how to do a build on the local docker daemon
+ // and optionally push to a repository.
+ LocalBuild *LocalBuild `yaml:"local,omitempty" yamltags:"oneOf=build"`
+
+ // GoogleCloudBuild *beta* describes how to do a remote build on
+ // [Google Cloud Build](https://cloud.google.com/cloud-build/).
+ GoogleCloudBuild *GoogleCloudBuild `yaml:"googleCloudBuild,omitempty" yamltags:"oneOf=build"`
+
+ // Cluster *beta* describes how to do an on-cluster build.
+ Cluster *ClusterDetails `yaml:"cluster,omitempty" yamltags:"oneOf=build"`
+}
+
+// LocalBuild *beta* describes how to do a build on the local docker daemon
+// and optionally push to a repository.
+type LocalBuild struct {
+ // Push should images be pushed to a registry.
+ // If not specified, images are pushed only if the current Kubernetes context
+ // connects to a remote cluster.
+ Push *bool `yaml:"push,omitempty"`
+
+ // UseDockerCLI use `docker` command-line interface instead of Docker Engine APIs.
+ UseDockerCLI bool `yaml:"useDockerCLI,omitempty"`
+
+ // UseBuildkit use BuildKit to build Docker images.
+ UseBuildkit bool `yaml:"useBuildkit,omitempty"`
+}
+
+// GoogleCloudBuild *beta* describes how to do a remote build on
+// [Google Cloud Build](https://cloud.google.com/cloud-build/docs/).
+// Docker and Jib artifacts can be built on Cloud Build. The `projectId` needs
+// to be provided and the currently logged in user should be given permissions to trigger
+// new builds.
+type GoogleCloudBuild struct {
+ // ProjectID is the ID of your Cloud Platform Project.
+ // If it is not provided, Skaffold will guess it from the image name.
+ // For example, given the artifact image name `gcr.io/myproject/image`, Skaffold
+ // will use the `myproject` GCP project.
+ ProjectID string `yaml:"projectId,omitempty"`
+
+ // DiskSizeGb is the disk size of the VM that runs the build.
+ // See [Cloud Build Reference](https://cloud.google.com/cloud-build/docs/api/reference/rest/v1/projects.builds#buildoptions).
+ DiskSizeGb int64 `yaml:"diskSizeGb,omitempty"`
+
+ // MachineType is the type of the VM that runs the build.
+ // See [Cloud Build Reference](https://cloud.google.com/cloud-build/docs/api/reference/rest/v1/projects.builds#buildoptions).
+ MachineType string `yaml:"machineType,omitempty"`
+
+ // Timeout is the amount of time (in seconds) that this build should be allowed to run.
+ // See [Cloud Build Reference](https://cloud.google.com/cloud-build/docs/api/reference/rest/v1/projects.builds#resource-build).
+ Timeout string `yaml:"timeout,omitempty"`
+
+ // DockerImage is the image that runs a Docker build.
+ // See [Cloud Builders](https://cloud.google.com/cloud-build/docs/cloud-builders).
+ // Defaults to `gcr.io/cloud-builders/docker`.
+ DockerImage string `yaml:"dockerImage,omitempty"`
+
+ // KanikoImage is the image that runs a Kaniko build.
+ // See [Cloud Builders](https://cloud.google.com/cloud-build/docs/cloud-builders).
+ // Defaults to `gcr.io/kaniko-project/executor`.
+ KanikoImage string `yaml:"kanikoImage,omitempty"`
+
+ // MavenImage is the image that runs a Maven build.
+ // See [Cloud Builders](https://cloud.google.com/cloud-build/docs/cloud-builders).
+ // Defaults to `gcr.io/cloud-builders/mvn`.
+ MavenImage string `yaml:"mavenImage,omitempty"`
+
+ // GradleImage is the image that runs a Gradle build.
+ // See [Cloud Builders](https://cloud.google.com/cloud-build/docs/cloud-builders).
+ // Defaults to `gcr.io/cloud-builders/gradle`.
+ GradleImage string `yaml:"gradleImage,omitempty"`
+
+ // Concurrency is how many artifacts can be built concurrently. 0 means "no-limit"
+ // Defaults to 0.
+ Concurrency int `yaml:"concurrency,omitempty"`
+}
+
+// LocalDir configures how Kaniko mounts sources directly via an `emptyDir` volume.
+type LocalDir struct {
+ // InitImage is the image used to run init container which mounts kaniko context.
+ InitImage string `yaml:"initImage,omitempty"`
+}
+
+// KanikoBuildContext contains the different fields available to specify
+// a Kaniko build context.
+type KanikoBuildContext struct {
+ // GCSBucket is the GCS bucket to which sources are uploaded.
+ // Kaniko will need access to that bucket to download the sources.
+ GCSBucket string `yaml:"gcsBucket,omitempty" yamltags:"oneOf=buildContext"`
+
+ // LocalDir configures how Kaniko mounts sources directly via an `emptyDir` volume.
+ LocalDir *LocalDir `yaml:"localDir,omitempty" yamltags:"oneOf=buildContext"`
+}
+
+// KanikoCache configures Kaniko caching. If a cache is specified, Kaniko will
+// use a remote cache which will speed up builds.
+type KanikoCache struct {
+ // Repo is a remote repository to store cached layers. If none is specified, one will be
+ // inferred from the image name. See [Kaniko Caching](https://github.com/GoogleContainerTools/kaniko#caching).
+ Repo string `yaml:"repo,omitempty"`
+ // HostPath specifies a path on the host that is mounted to each pod as read only cache volume containing base images.
+ // If set, must exist on each node and prepopulated with kaniko-warmer.
+ HostPath string `yaml:"hostPath,omitempty"`
+}
+
+// ClusterDetails *beta* describes how to do an on-cluster build.
+type ClusterDetails struct {
+ // HTTPProxy for kaniko pod.
+ HTTPProxy string `yaml:"HTTP_PROXY,omitempty"`
+
+ // HTTPSProxy for kaniko pod.
+ HTTPSProxy string `yaml:"HTTPS_PROXY,omitempty"`
+
+ // PullSecret is the path to the Google Cloud service account secret key file.
+ PullSecret string `yaml:"pullSecret,omitempty"`
+
+ // PullSecretName is the name of the Kubernetes secret for pulling the files
+ // from the build context and pushing the final image. If given, the secret needs to
+ // contain the Google Cloud service account secret key under the key `kaniko-secret`.
+ // Defaults to `kaniko-secret`.
+ PullSecretName string `yaml:"pullSecretName,omitempty"`
+
+ // Namespace is the Kubernetes namespace.
+ // Defaults to current namespace in Kubernetes configuration.
+ Namespace string `yaml:"namespace,omitempty"`
+
+ // Timeout is the amount of time (in seconds) that this build is allowed to run.
+ // Defaults to 20 minutes (`20m`).
+ Timeout string `yaml:"timeout,omitempty"`
+
+ // DockerConfig describes how to mount the local Docker configuration into a pod.
+ DockerConfig *DockerConfig `yaml:"dockerConfig,omitempty"`
+
+ // Resources define the resource requirements for the kaniko pod.
+ Resources *ResourceRequirements `yaml:"resources,omitempty"`
+
+ // Concurrency is how many artifacts can be built concurrently. 0 means "no-limit"
+ // Defaults to 0.
+ Concurrency int `yaml:"concurrency,omitempty"`
+}
+
+// DockerConfig contains information about the docker `config.json` to mount.
+type DockerConfig struct {
+ // Path is the path to the docker `config.json`.
+ Path string `yaml:"path,omitempty"`
+
+ // SecretName is the Kubernetes secret that contains the `config.json` Docker configuration.
+ // Note that the expected secret type is not 'kubernetes.io/dockerconfigjson' but 'Opaque'.
+ SecretName string `yaml:"secretName,omitempty"`
+}
+
+// ResourceRequirements describes the resource requirements for the kaniko pod.
+type ResourceRequirements struct {
+ // Requests [resource requests](https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/#resource-requests-and-limits-of-pod-and-container) for the Kaniko pod.
+ Requests *ResourceRequirement `yaml:"requests,omitempty"`
+
+ // Limits [resource limits](https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/#resource-requests-and-limits-of-pod-and-container) for the Kaniko pod.
+ Limits *ResourceRequirement `yaml:"limits,omitempty"`
+}
+
+// ResourceRequirement stores the CPU/Memory requirements for the pod.
+type ResourceRequirement struct {
+ // CPU the number cores to be used.
+ // For example: `2`, `2.0` or `200m`.
+ CPU string `yaml:"cpu,omitempty"`
+
+ // Memory the amount of memory to allocate to the pod.
+ // For example: `1Gi` or `1000Mi`.
+ Memory string `yaml:"memory,omitempty"`
+}
+
+// TestCase is a list of structure tests to run on images that Skaffold builds.
+type TestCase struct {
+ // ImageName is the artifact on which to run those tests.
+ // For example: `gcr.io/k8s-skaffold/example`.
+ ImageName string `yaml:"image" yamltags:"required"`
+
+ // StructureTests lists the [Container Structure Tests](https://github.com/GoogleContainerTools/container-structure-test)
+ // to run on that artifact.
+ // For example: `["./test/*"]`.
+ StructureTests []string `yaml:"structureTests,omitempty"`
+}
+
+// DeployConfig contains all the configuration needed by the deploy steps.
+type DeployConfig struct {
+ // StatusCheckDeadlineSeconds *beta* is the deadline for deployments to stabilize in seconds.
+ StatusCheckDeadlineSeconds int `yaml:"statusCheckDeadlineSeconds,omitempty"`
+ DeployType `yaml:",inline"`
+}
+
+// DeployType contains the specific implementation and parameters needed
+// for the deploy step. Only one field should be populated.
+type DeployType struct {
+ // HelmDeploy *beta* uses the `helm` CLI to apply the charts to the cluster.
+ HelmDeploy *HelmDeploy `yaml:"helm,omitempty" yamltags:"oneOf=deploy"`
+
+ // KubectlDeploy *beta* uses a client side `kubectl apply` to deploy manifests.
+ // You'll need a `kubectl` CLI version installed that's compatible with your cluster.
+ KubectlDeploy *KubectlDeploy `yaml:"kubectl,omitempty" yamltags:"oneOf=deploy"`
+
+ // KustomizeDeploy *beta* uses the `kustomize` CLI to "patch" a deployment for a target environment.
+ KustomizeDeploy *KustomizeDeploy `yaml:"kustomize,omitempty" yamltags:"oneOf=deploy"`
+}
+
+// KubectlDeploy *beta* uses a client side `kubectl apply` to deploy manifests.
+// You'll need a `kubectl` CLI version installed that's compatible with your cluster.
+type KubectlDeploy struct {
+ // Manifests lists the Kubernetes yaml or json manifests.
+ // Defaults to `["k8s/*.yaml"]`.
+ Manifests []string `yaml:"manifests,omitempty"`
+
+ // RemoteManifests lists Kubernetes manifests in remote clusters.
+ RemoteManifests []string `yaml:"remoteManifests,omitempty"`
+
+ // Flags are additional flags passed to `kubectl`.
+ Flags KubectlFlags `yaml:"flags,omitempty"`
+}
+
+// KubectlFlags are additional flags passed on the command
+// line to kubectl either on every command (Global), on creations (Apply)
+// or deletions (Delete).
+type KubectlFlags struct {
+ // Global are additional flags passed on every command.
+ Global []string `yaml:"global,omitempty"`
+
+ // Apply are additional flags passed on creations (`kubectl apply`).
+ Apply []string `yaml:"apply,omitempty"`
+
+ // Delete are additional flags passed on deletions (`kubectl delete`).
+ Delete []string `yaml:"delete,omitempty"`
+}
+
+// HelmDeploy *beta* uses the `helm` CLI to apply the charts to the cluster.
+type HelmDeploy struct {
+ // Releases is a list of Helm releases.
+ Releases []HelmRelease `yaml:"releases,omitempty" yamltags:"required"`
+
+ // Flags are additional option flags that are passed on the command
+ // line to `helm`.
+ Flags HelmDeployFlags `yaml:"flags,omitempty"`
+}
+
+// HelmDeployFlags are additional option flags that are passed on the command
+// line to `helm`.
+type HelmDeployFlags struct {
+ // Global are additional flags passed on every command.
+ Global []string `yaml:"global,omitempty"`
+
+ // Install are additional flags passed to (`helm install`).
+ Install []string `yaml:"install,omitempty"`
+
+ // Upgrade are additional flags passed to (`helm upgrade`).
+ Upgrade []string `yaml:"upgrade,omitempty"`
+}
+
+// KustomizeDeploy *beta* uses the `kustomize` CLI to "patch" a deployment for a target environment.
+type KustomizeDeploy struct {
+ // KustomizePath is the path to Kustomization files.
+ // Defaults to `.`.
+ KustomizePath string `yaml:"path,omitempty"`
+
+ // Flags are additional flags passed to `kubectl`.
+ Flags KubectlFlags `yaml:"flags,omitempty"`
+
+ // BuildArgs are additional args passed to `kustomize build`.
+ BuildArgs []string `yaml:"buildArgs,omitempty"`
+}
+
+// HelmRelease describes a helm release to be deployed.
+type HelmRelease struct {
+ // Name is the name of the Helm release.
+ Name string `yaml:"name,omitempty" yamltags:"required"`
+
+ // ChartPath is the path to the Helm chart.
+ ChartPath string `yaml:"chartPath,omitempty" yamltags:"required"`
+
+ // ValuesFiles are the paths to the Helm `values` files.
+ ValuesFiles []string `yaml:"valuesFiles,omitempty"`
+
+ // Values are key-value pairs supplementing the Helm `values` file.
+ Values map[string]string `yaml:"values,omitempty,omitempty"`
+
+ // Namespace is the Kubernetes namespace.
+ Namespace string `yaml:"namespace,omitempty"`
+
+ // Version is the version of the chart.
+ Version string `yaml:"version,omitempty"`
+
+ // SetValues are key-value pairs.
+ // If present, Skaffold will send `--set` flag to Helm CLI and append all pairs after the flag.
+ SetValues map[string]string `yaml:"setValues,omitempty"`
+
+ // SetValueTemplates are key-value pairs.
+ // If present, Skaffold will try to parse the value part of each key-value pair using
+ // environment variables in the system, then send `--set` flag to Helm CLI and append
+ // all parsed pairs after the flag.
+ SetValueTemplates map[string]string `yaml:"setValueTemplates,omitempty"`
+
+ // SetFiles are key-value pairs.
+ // If present, Skaffold will send `--set-file` flag to Helm CLI and append all pairs after the flag.
+ SetFiles map[string]string `yaml:"setFiles,omitempty"`
+
+ // Wait if `true`, Skaffold will send `--wait` flag to Helm CLI.
+ // Defaults to `false`.
+ Wait bool `yaml:"wait,omitempty"`
+
+ // RecreatePods if `true`, Skaffold will send `--recreate-pods` flag to Helm CLI
+ // when upgrading a new version of a chart in subsequent dev loop deploy.
+ // Defaults to `false`.
+ RecreatePods bool `yaml:"recreatePods,omitempty"`
+
+ // SkipBuildDependencies should build dependencies be skipped.
+ SkipBuildDependencies bool `yaml:"skipBuildDependencies,omitempty"`
+
+ // UseHelmSecrets instructs skaffold to use secrets plugin on deployment.
+ UseHelmSecrets bool `yaml:"useHelmSecrets,omitempty"`
+
+ // Remote specifies whether the chart path is remote, or exists on the host filesystem.
+ // `remote: true` implies `skipBuildDependencies: true`.
+ Remote bool `yaml:"remote,omitempty"`
+
+ // Overrides are key-value pairs.
+ // If present, Skaffold will build a Helm `values` file that overrides
+ // the original and use it to call Helm CLI (`--f` flag).
+ Overrides util.HelmOverrides `yaml:"overrides,omitempty"`
+
+ // Packaged parameters for packaging helm chart (`helm package`).
+ Packaged *HelmPackaged `yaml:"packaged,omitempty"`
+
+ // ImageStrategy adds image configurations to the Helm `values` file.
+ ImageStrategy HelmImageStrategy `yaml:"imageStrategy,omitempty"`
+}
+
+// HelmPackaged parameters for packaging helm chart (`helm package`).
+type HelmPackaged struct {
+ // Version sets the `version` on the chart to this semver version.
+ Version string `yaml:"version,omitempty"`
+
+ // AppVersion sets the `appVersion` on the chart to this version.
+ AppVersion string `yaml:"appVersion,omitempty"`
+}
+
+// HelmImageStrategy adds image configurations to the Helm `values` file.
+type HelmImageStrategy struct {
+ HelmImageConfig `yaml:",inline"`
+}
+
+// HelmImageConfig describes an image configuration.
+type HelmImageConfig struct {
+ // HelmFQNConfig is the image configuration uses the syntax `IMAGE-NAME=IMAGE-REPOSITORY:IMAGE-TAG`.
+ HelmFQNConfig *HelmFQNConfig `yaml:"fqn,omitempty" yamltags:"oneOf=helmImageStrategy"`
+
+ // HelmConventionConfig is the image configuration uses the syntax `IMAGE-NAME.repository=IMAGE-REPOSITORY, IMAGE-NAME.tag=IMAGE-TAG`.
+ HelmConventionConfig *HelmConventionConfig `yaml:"helm,omitempty" yamltags:"oneOf=helmImageStrategy"`
+}
+
+// HelmFQNConfig is the image config to use the FullyQualifiedImageName as param to set.
+type HelmFQNConfig struct {
+ // Property defines the image config.
+ Property string `yaml:"property,omitempty"`
+}
+
+// HelmConventionConfig is the image config in the syntax of image.repository and image.tag.
+type HelmConventionConfig struct {
+ // ExplicitRegistry separates `image.registry` to the image config syntax. Useful for some charts e.g. `postgresql`.
+ ExplicitRegistry bool `yaml:"explicitRegistry,omitempty"`
+}
+
+// Artifact are the items that need to be built, along with the context in which
+// they should be built.
+type Artifact struct {
+ // ImageName is the name of the image to be built.
+ // For example: `gcr.io/k8s-skaffold/example`.
+ ImageName string `yaml:"image,omitempty" yamltags:"required"`
+
+ // Workspace is the directory containing the artifact's sources.
+ // Defaults to `.`.
+ Workspace string `yaml:"context,omitempty"`
+
+ // Sync *alpha* lists local files synced to pods instead
+ // of triggering an image build when modified.
+ Sync *Sync `yaml:"sync,omitempty"`
+
+ // ArtifactType describes how to build an artifact.
+ ArtifactType `yaml:",inline"`
+}
+
+// Sync *alpha* specifies what files to sync into the container.
+// This is a list of sync rules indicating the intent to sync for source files.
+type Sync struct {
+ // Manual lists manual sync rules indicating the source and destination.
+ Manual []*SyncRule `yaml:"manual,omitempty" yamltags:"oneOf=sync"`
+
+ // Infer lists file patterns which may be synced into the container.
+ // The container destination is inferred by the builder.
+ // Currently only available for docker artifacts.
+ Infer []string `yaml:"infer,omitempty" yamltags:"oneOf=sync"`
+}
+
+// SyncRule specifies which local files to sync to remote folders.
+type SyncRule struct {
+ // Src is a glob pattern to match local paths against.
+ // Directories should be delimited by `/` on all platforms.
+ // For example: `"css/**/*.css"`.
+ Src string `yaml:"src,omitempty" yamltags:"required"`
+
+ // Dest is the destination path in the container where the files should be synced to.
+ // For example: `"app/"`
+ Dest string `yaml:"dest,omitempty" yamltags:"required"`
+
+ // Strip specifies the path prefix to remove from the source path when
+ // transplanting the files into the destination folder.
+ // For example: `"css/"`
+ Strip string `yaml:"strip,omitempty"`
+}
+
+// Profile *beta* profiles are used to override any `build`, `test` or `deploy` configuration.
+type Profile struct {
+ // Name is a unique profile name.
+ // For example: `profile-prod`.
+ Name string `yaml:"name,omitempty" yamltags:"required"`
+
+ // Pipeline contains the definitions to replace the default skaffold pipeline.
+ Pipeline `yaml:",inline"`
+
+ // Patches lists patches applied to the configuration.
+ // Patches use the JSON patch notation.
+ Patches []JSONPatch `yaml:"patches,omitempty"`
+
+ // Activation criteria by which a profile can be auto-activated.
+ // The profile is auto-activated if any one of the activations are triggered.
+ // An activation is triggered if all of the criteria (env, kubeContext, command) are triggered.
+ Activation []Activation `yaml:"activation,omitempty"`
+}
+
+// JSONPatch patch to be applied by a profile.
+type JSONPatch struct {
+ // Op is the operation carried by the patch: `add`, `remove`, `replace`, `move`, `copy` or `test`.
+ // Defaults to `replace`.
+ Op string `yaml:"op,omitempty"`
+
+ // Path is the position in the yaml where the operation takes place.
+ // For example, this targets the `dockerfile` of the first artifact built.
+ // For example: `/build/artifacts/0/docker/dockerfile`.
+ Path string `yaml:"path,omitempty" yamltags:"required"`
+
+ // From is the source position in the yaml, used for `copy` or `move` operations.
+ From string `yaml:"from,omitempty"`
+
+ // Value is the value to apply. Can be any portion of yaml.
+ Value *util.YamlpatchNode `yaml:"value,omitempty"`
+}
+
+// Activation criteria by which a profile is auto-activated.
+type Activation struct {
+ // Env is a `key=pattern` pair. The profile is auto-activated if an Environment
+ // Variable `key` matches the pattern. If the pattern starts with `!`, activation
+ // happens if the remaining pattern is _not_ matched. The pattern matches if the
+ // Environment Variable value is exactly `pattern`, or the regex `pattern` is
+ // found in it. An empty `pattern` (e.g. `env: "key="`) always only matches if
+ // the Environment Variable is undefined or empty.
+ // For example: `ENV=production`
+ Env string `yaml:"env,omitempty"`
+
+ // KubeContext is a Kubernetes context for which the profile is auto-activated.
+ // For example: `minikube`.
+ KubeContext string `yaml:"kubeContext,omitempty"`
+
+ // Command is a Skaffold command for which the profile is auto-activated.
+ // For example: `dev`.
+ Command string `yaml:"command,omitempty"`
+}
+
+// ArtifactType describes how to build an artifact.
+type ArtifactType struct {
+ // DockerArtifact *beta* describes an artifact built from a Dockerfile.
+ DockerArtifact *DockerArtifact `yaml:"docker,omitempty" yamltags:"oneOf=artifact"`
+
+ // BazelArtifact *beta* requires bazel CLI to be installed and the sources to
+ // contain [Bazel](https://bazel.build/) configuration files.
+ BazelArtifact *BazelArtifact `yaml:"bazel,omitempty" yamltags:"oneOf=artifact"`
+
+ // JibArtifact *alpha* builds images using the
+ // [Jib plugins for Maven or Gradle](https://github.com/GoogleContainerTools/jib/).
+ JibArtifact *JibArtifact `yaml:"jib,omitempty" yamltags:"oneOf=artifact"`
+
+ // KanikoArtifact *alpha* builds images using [kaniko](https://github.com/GoogleContainerTools/kaniko).
+ KanikoArtifact *KanikoArtifact `yaml:"kaniko,omitempty" yamltags:"oneOf=artifact"`
+
+ // CustomArtifact *alpha* builds images using a custom build script written by the user.
+ CustomArtifact *CustomArtifact `yaml:"custom,omitempty" yamltags:"oneOf=artifact"`
+}
+
+// CustomArtifact *alpha* describes an artifact built from a custom build script
+// written by the user. It can be used to build images with builders that aren't directly integrated with skaffold.
+type CustomArtifact struct {
+ // BuildCommand is the command executed to build the image.
+ BuildCommand string `yaml:"buildCommand,omitempty"`
+ // Dependencies are the file dependencies that skaffold should watch for both rebuilding and file syncing for this artifact.
+ Dependencies *CustomDependencies `yaml:"dependencies,omitempty"`
+}
+
+// CustomDependencies *alpha* is used to specify dependencies for an artifact built by a custom build script.
+// Either `dockerfile` or `paths` should be specified for file watching to work as expected.
+type CustomDependencies struct {
+ // Dockerfile should be set if the artifact is built from a Dockerfile, from which skaffold can determine dependencies.
+ Dockerfile *DockerfileDependency `yaml:"dockerfile,omitempty" yamltags:"oneOf=dependency"`
+ // Command represents a custom command that skaffold executes to obtain dependencies. The output of this command *must* be a valid JSON array.
+ Command string `yaml:"command,omitempty" yamltags:"oneOf=dependency"`
+ // Paths should be set to the file dependencies for this artifact, so that the skaffold file watcher knows when to rebuild and perform file synchronization.
+ Paths []string `yaml:"paths,omitempty" yamltags:"oneOf=dependency"`
+ // Ignore specifies the paths that should be ignored by skaffold's file watcher. If a file exists in both `paths` and in `ignore`, it will be ignored, and will be excluded from both rebuilds and file synchronization.
+ // Will only work in conjunction with `paths`.
+ Ignore []string `yaml:"ignore,omitempty"`
+}
+
+// DockerfileDependency *alpha* is used to specify a custom build artifact that is built from a Dockerfile. This allows skaffold to determine dependencies from the Dockerfile.
+type DockerfileDependency struct {
+ // Path locates the Dockerfile relative to workspace.
+ Path string `yaml:"path,omitempty"`
+
+ // BuildArgs are arguments passed to the docker build.
+ // It also accepts environment variables via the go template syntax.
+ // For example: `{"key1": "value1", "key2": "value2", "key3": "{{.ENV_VARIABLE}}"}`.
+ BuildArgs map[string]*string `yaml:"buildArgs,omitempty"`
+}
+
+// KanikoArtifact *alpha* describes an artifact built from a Dockerfile,
+// with kaniko.
+type KanikoArtifact struct {
+ // AdditionalFlags are additional flags to be passed to Kaniko command line.
+ // See [Kaniko Additional Flags](https://github.com/GoogleContainerTools/kaniko#additional-flags).
+ // Deprecated - instead the named, unique fields should be used, e.g. `buildArgs`, `cache`, `target`.
+ AdditionalFlags []string `yaml:"flags,omitempty"`
+
+ // DockerfilePath locates the Dockerfile relative to workspace.
+ // Defaults to `Dockerfile`.
+ DockerfilePath string `yaml:"dockerfile,omitempty"`
+
+ // Target is the Dockerfile target name to build.
+ Target string `yaml:"target,omitempty"`
+
+ // BuildArgs are arguments passed to the docker build.
+ // It also accepts environment variables via the go template syntax.
+ // For example: `{"key1": "value1", "key2": "value2", "key3": "{{.ENV_VARIABLE}}"}`.
+ BuildArgs map[string]*string `yaml:"buildArgs,omitempty"`
+
+ // BuildContext is where the build context for this artifact resides.
+ BuildContext *KanikoBuildContext `yaml:"buildContext,omitempty"`
+
+ // Image is the Docker image used by the Kaniko pod.
+ // Defaults to the latest released version of `gcr.io/kaniko-project/executor`.
+ Image string `yaml:"image,omitempty"`
+
+ // Cache configures Kaniko caching. If a cache is specified, Kaniko will
+ // use a remote cache which will speed up builds.
+ Cache *KanikoCache `yaml:"cache,omitempty"`
+
+ // Reproducible is used to strip timestamps out of the built image.
+ Reproducible bool `yaml:"reproducible,omitempty"`
+}
+
+// DockerArtifact *beta* describes an artifact built from a Dockerfile,
+// usually using `docker build`.
+type DockerArtifact struct {
+ // DockerfilePath locates the Dockerfile relative to workspace.
+ // Defaults to `Dockerfile`.
+ DockerfilePath string `yaml:"dockerfile,omitempty"`
+
+ // Target is the Dockerfile target name to build.
+ Target string `yaml:"target,omitempty"`
+
+ // BuildArgs are arguments passed to the docker build.
+ // For example: `{"key1": "value1", "key2": "value2"}`.
+ BuildArgs map[string]*string `yaml:"buildArgs,omitempty"`
+
+ // NetworkMode is passed through to docker and overrides the
+ // network configuration of docker builder. If unset, use whatever
+ // is configured in the underlying docker daemon. Valid modes are
+ // `host`: use the host's networking stack.
+ // `bridge`: use the bridged network configuration.
+ // `none`: no networking in the container.
+ NetworkMode string `yaml:"network,omitempty"`
+
+ // CacheFrom lists the Docker images used as cache sources.
+ // For example: `["golang:1.10.1-alpine3.7", "alpine:3.7"]`.
+ CacheFrom []string `yaml:"cacheFrom,omitempty"`
+
+ // NoCache used to pass in --no-cache to docker build to prevent caching.
+ NoCache bool `yaml:"noCache,omitempty"`
+}
+
+// BazelArtifact *beta* describes an artifact built with [Bazel](https://bazel.build/).
+type BazelArtifact struct {
+ // BuildTarget is the `bazel build` target to run.
+ // For example: `//:skaffold_example.tar`.
+ BuildTarget string `yaml:"target,omitempty" yamltags:"required"`
+
+ // BuildArgs are additional args to pass to `bazel build`.
+ // For example: `["-flag", "--otherflag"]`.
+ BuildArgs []string `yaml:"args,omitempty"`
+}
+
+// JibArtifact *alpha* builds images using the
+// [Jib plugins for Maven and Gradle](https://github.com/GoogleContainerTools/jib/).
+type JibArtifact struct {
+ // Project selects which sub-project to build for multi-module builds.
+ Project string `yaml:"project,omitempty"`
+
+ // Flags are additional build flags passed to the builder.
+ // For example: `["--no-build-cache"]`.
+ Flags []string `yaml:"args,omitempty"`
+
+ // Type the Jib builder type (internal: see jib.PluginType)
+ Type int `yaml:"-"`
+}
diff --git a/pkg/skaffold/schema/v1beta15/upgrade.go b/pkg/skaffold/schema/v1beta15/upgrade.go
new file mode 100755
index 00000000000..275731270b0
--- /dev/null
+++ b/pkg/skaffold/schema/v1beta15/upgrade.go
@@ -0,0 +1,46 @@
+/*
+Copyright 2019 The Skaffold Authors
+
+Licensed under the Apache License, Version 2.0 (the "License");
+you may not use this file except in compliance with the License.
+You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing, software
+distributed under the License is distributed on an "AS IS" BASIS,
+WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+See the License for the specific language governing permissions and
+limitations under the License.
+*/
+
+package v1beta15
+
+import (
+ next "github.com/GoogleContainerTools/skaffold/pkg/skaffold/schema/latest"
+ "github.com/GoogleContainerTools/skaffold/pkg/skaffold/schema/util"
+ pkgutil "github.com/GoogleContainerTools/skaffold/pkg/skaffold/util"
+)
+
+// Upgrade upgrades a configuration to the next version.
+// Config changes from v1beta15 to v1beta16
+// 1. Additions:
+// buildArgs for Kustomize deployer
+// 2. Removals:
+// 3. No updates
+func (c *SkaffoldConfig) Upgrade() (util.VersionedConfig, error) {
+ var newConfig next.SkaffoldConfig
+
+ pkgutil.CloneThroughJSON(c, &newConfig)
+ if err := util.UpgradePipelines(c, &newConfig, upgradeOnePipeline); err != nil {
+ return nil, err
+ }
+ newConfig.APIVersion = next.Version
+
+ return &newConfig, nil
+}
+
+// Placeholder for upgrade logic
+func upgradeOnePipeline(_, _ interface{}) error {
+ return nil
+}
diff --git a/pkg/skaffold/schema/v1beta15/upgrade_test.go b/pkg/skaffold/schema/v1beta15/upgrade_test.go
new file mode 100755
index 00000000000..ff63387efe0
--- /dev/null
+++ b/pkg/skaffold/schema/v1beta15/upgrade_test.go
@@ -0,0 +1,163 @@
+/*
+Copyright 2019 The Skaffold Authors
+
+Licensed under the Apache License, Version 2.0 (the "License");
+you may not use this file except in compliance with the License.
+You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing, software
+distributed under the License is distributed on an "AS IS" BASIS,
+WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+See the License for the specific language governing permissions and
+limitations under the License.
+*/
+
+package v1beta15
+
+import (
+ "testing"
+
+ next "github.com/GoogleContainerTools/skaffold/pkg/skaffold/schema/latest"
+ "github.com/GoogleContainerTools/skaffold/testutil"
+ yaml "gopkg.in/yaml.v2"
+)
+
+func TestUpgrade(t *testing.T) {
+ yaml := `apiVersion: skaffold/v1beta15
+kind: Config
+build:
+ artifacts:
+ - image: gcr.io/k8s-skaffold/skaffold-example
+ docker:
+ dockerfile: path/to/Dockerfile
+ - image: gcr.io/k8s-skaffold/bazel
+ bazel:
+ target: //mytarget
+ - image: gcr.io/k8s-skaffold/jib-maven
+ jib:
+ args: ['-v', '--activate-profiles', 'prof']
+ project: dir
+ - image: gcr.io/k8s-skaffold/jib-gradle
+ jib:
+ args: ['-v']
+ googleCloudBuild:
+ projectId: test-project
+test:
+ - image: gcr.io/k8s-skaffold/skaffold-example
+ structureTests:
+ - ./test/*
+deploy:
+ kubectl:
+ manifests:
+ - k8s-*
+profiles:
+ - name: test profile
+ build:
+ artifacts:
+ - image: gcr.io/k8s-skaffold/skaffold-example
+ kaniko:
+ buildContext:
+ gcsBucket: skaffold-kaniko
+ cache: {}
+ cluster:
+ pullSecretName: e2esecret
+ namespace: default
+ test:
+ - image: gcr.io/k8s-skaffold/skaffold-example
+ structureTests:
+ - ./test/*
+ deploy:
+ kubectl:
+ manifests:
+ - k8s-*
+ - name: test local
+ build:
+ artifacts:
+ - image: gcr.io/k8s-skaffold/skaffold-example
+ docker:
+ dockerfile: path/to/Dockerfile
+ local:
+ push: false
+ deploy:
+ kubectl:
+ manifests:
+ - k8s-*
+`
+ expected := `apiVersion: skaffold/v1beta16
+kind: Config
+build:
+ artifacts:
+ - image: gcr.io/k8s-skaffold/skaffold-example
+ docker:
+ dockerfile: path/to/Dockerfile
+ - image: gcr.io/k8s-skaffold/bazel
+ bazel:
+ target: //mytarget
+ - image: gcr.io/k8s-skaffold/jib-maven
+ jib:
+ args: ['-v', '--activate-profiles', 'prof']
+ project: dir
+ - image: gcr.io/k8s-skaffold/jib-gradle
+ jib:
+ args: ['-v']
+ googleCloudBuild:
+ projectId: test-project
+test:
+ - image: gcr.io/k8s-skaffold/skaffold-example
+ structureTests:
+ - ./test/*
+deploy:
+ kubectl:
+ manifests:
+ - k8s-*
+profiles:
+ - name: test profile
+ build:
+ artifacts:
+ - image: gcr.io/k8s-skaffold/skaffold-example
+ kaniko:
+ buildContext:
+ gcsBucket: skaffold-kaniko
+ cache: {}
+ cluster:
+ pullSecretName: e2esecret
+ namespace: default
+ test:
+ - image: gcr.io/k8s-skaffold/skaffold-example
+ structureTests:
+ - ./test/*
+ deploy:
+ kubectl:
+ manifests:
+ - k8s-*
+ - name: test local
+ build:
+ artifacts:
+ - image: gcr.io/k8s-skaffold/skaffold-example
+ docker:
+ dockerfile: path/to/Dockerfile
+ local:
+ push: false
+ deploy:
+ kubectl:
+ manifests:
+ - k8s-*
+`
+ verifyUpgrade(t, yaml, expected)
+}
+
+func verifyUpgrade(t *testing.T, input, output string) {
+ config := NewSkaffoldConfig()
+ err := yaml.UnmarshalStrict([]byte(input), config)
+ testutil.CheckErrorAndDeepEqual(t, false, err, Version, config.GetVersion())
+
+ upgraded, err := config.Upgrade()
+ testutil.CheckError(t, false, err)
+
+ expected := next.NewSkaffoldConfig()
+ err = yaml.UnmarshalStrict([]byte(output), expected)
+
+ testutil.CheckErrorAndDeepEqual(t, false, err, expected, upgraded)
+}
diff --git a/pkg/skaffold/schema/versions.go b/pkg/skaffold/schema/versions.go
index b0a68b5ceb0..db32e3a829c 100644
--- a/pkg/skaffold/schema/versions.go
+++ b/pkg/skaffold/schema/versions.go
@@ -37,6 +37,7 @@ import (
"github.com/GoogleContainerTools/skaffold/pkg/skaffold/schema/v1beta12"
"github.com/GoogleContainerTools/skaffold/pkg/skaffold/schema/v1beta13"
"github.com/GoogleContainerTools/skaffold/pkg/skaffold/schema/v1beta14"
+ "github.com/GoogleContainerTools/skaffold/pkg/skaffold/schema/v1beta15"
"github.com/GoogleContainerTools/skaffold/pkg/skaffold/schema/v1beta2"
"github.com/GoogleContainerTools/skaffold/pkg/skaffold/schema/v1beta3"
"github.com/GoogleContainerTools/skaffold/pkg/skaffold/schema/v1beta4"
@@ -72,6 +73,7 @@ var SchemaVersions = Versions{
{v1beta12.Version, v1beta12.NewSkaffoldConfig},
{v1beta13.Version, v1beta13.NewSkaffoldConfig},
{v1beta14.Version, v1beta14.NewSkaffoldConfig},
+ {v1beta15.Version, v1beta15.NewSkaffoldConfig},
{latest.Version, latest.NewSkaffoldConfig},
}