BuildArtifactArgs

data class BuildArtifactArgs(val image: Output<String>? = null, val tag: Output<String>? = null) : ConvertibleToJava<BuildArtifactArgs>

Description of an a image to use during Skaffold rendering.

Constructors

Link copied to clipboard
fun BuildArtifactArgs(image: Output<String>? = null, tag: Output<String>? = null)

Functions

Link copied to clipboard
open override fun toJava(): BuildArtifactArgs

Properties

Link copied to clipboard
val image: Output<String>? = null

Image name in Skaffold configuration.

Link copied to clipboard
val tag: Output<String>? = null

Image tag to use. This will generally be the full path to an image, such as "gcr.io/my-project/busybox:1.2.3" or "gcr.io/my-project/busybox@sha256:abc123".