public enum BuildStepType extends Enum<BuildStepType>
| Enum Constant and Description |
|---|
ALL
Root type that corresponds to build startup.
|
AUTHENTICATE_PUSH
Authentication step for pushing to target registry.
|
BUILD_AND_CACHE_APPLICATION_LAYER
Step for building/caching an application layer.
|
BUILD_IMAGE
Step for building image layers/configuration.
|
LOAD_DOCKER
Step for loading the image into the Docker daemon.
|
PULL_AND_CACHE_BASE_IMAGE_LAYER
Step for pulling/caching a base image layer.
|
PULL_BASE_IMAGE
Step for pulling the base image manifest.
|
PUSH_APPLICATION_LAYERS
Step for pushing the application image layers to the target registry.
|
PUSH_BASE_LAYERS
Step for pushing the base image layers to the target registry.
|
PUSH_CONTAINER_CONFIGURATION
Step for pushing the container configuration to the target registry.
|
PUSH_IMAGE
Step for pushing the image manifest to the target registry.
|
RETRIEVE_REGISTRY_CREDENTIALS_BASE
Step for retrieving credentials for the base image registry.
|
RETRIEVE_REGISTRY_CREDENTIALS_TARGET
Step for retrieving credentials for the target image registry.
|
WRITE_TAR_FILE
Step for writing the image tarball to disk.
|
| Modifier and Type | Method and Description |
|---|---|
static BuildStepType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BuildStepType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BuildStepType ALL
public static final BuildStepType AUTHENTICATE_PUSH
public static final BuildStepType BUILD_AND_CACHE_APPLICATION_LAYER
public static final BuildStepType BUILD_IMAGE
public static final BuildStepType LOAD_DOCKER
public static final BuildStepType PULL_AND_CACHE_BASE_IMAGE_LAYER
public static final BuildStepType PULL_BASE_IMAGE
public static final BuildStepType PUSH_CONTAINER_CONFIGURATION
public static final BuildStepType PUSH_IMAGE
public static final BuildStepType PUSH_APPLICATION_LAYERS
public static final BuildStepType PUSH_BASE_LAYERS
public static final BuildStepType RETRIEVE_REGISTRY_CREDENTIALS_BASE
public static final BuildStepType RETRIEVE_REGISTRY_CREDENTIALS_TARGET
public static final BuildStepType WRITE_TAR_FILE
public static BuildStepType[] values()
for (BuildStepType c : BuildStepType.values()) System.out.println(c);
public static BuildStepType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2019. All rights reserved.