Interface BuildArtifactOrBuilder (1.11.0)

Stay organized with collections Save and categorize content based on your preferences.
public interface BuildArtifactOrBuilder extends MessageOrBuilder

Implements

MessageOrBuilder

Methods

getImage()

public abstract String getImage()

Image name in Skaffold configuration.

string image = 3;

Returns
TypeDescription
String

The image.

getImageBytes()

public abstract ByteString getImageBytes()

Image name in Skaffold configuration.

string image = 3;

Returns
TypeDescription
ByteString

The bytes for image.

getTag()

public abstract String getTag()

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".

string tag = 2;

Returns
TypeDescription
String

The tag.

getTagBytes()

public abstract ByteString getTagBytes()

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".

string tag = 2;

Returns
TypeDescription
ByteString

The bytes for tag.