EksContainer.Builder |
EksContainer.Builder.args(String... args) |
An array of arguments to the entrypoint.
|
EksContainer.Builder |
EksContainer.Builder.args(Collection<String> args) |
An array of arguments to the entrypoint.
|
static EksContainer.Builder |
EksContainer.builder() |
|
EksContainer.Builder |
EksContainer.Builder.command(String... command) |
The entrypoint for the container.
|
EksContainer.Builder |
EksContainer.Builder.command(Collection<String> command) |
The entrypoint for the container.
|
EksContainer.Builder |
EksContainer.Builder.env(Collection<EksContainerEnvironmentVariable> env) |
The environment variables to pass to a container.
|
EksContainer.Builder |
EksContainer.Builder.env(Consumer<EksContainerEnvironmentVariable.Builder>... env) |
The environment variables to pass to a container.
|
EksContainer.Builder |
EksContainer.Builder.env(EksContainerEnvironmentVariable... env) |
The environment variables to pass to a container.
|
EksContainer.Builder |
EksContainer.Builder.image(String image) |
The Docker image used to start the container.
|
EksContainer.Builder |
EksContainer.Builder.imagePullPolicy(String imagePullPolicy) |
The image pull policy for the container.
|
EksContainer.Builder |
EksContainer.Builder.name(String name) |
The name of the container.
|
default EksContainer.Builder |
EksContainer.Builder.resources(Consumer<EksContainerResourceRequirements.Builder> resources) |
The type and amount of resources to assign to a container.
|
EksContainer.Builder |
EksContainer.Builder.resources(EksContainerResourceRequirements resources) |
The type and amount of resources to assign to a container.
|
default EksContainer.Builder |
EksContainer.Builder.securityContext(Consumer<EksContainerSecurityContext.Builder> securityContext) |
The security context for a job.
|
EksContainer.Builder |
EksContainer.Builder.securityContext(EksContainerSecurityContext securityContext) |
The security context for a job.
|
EksContainer.Builder |
EksContainer.toBuilder() |
|
EksContainer.Builder |
EksContainer.Builder.volumeMounts(Collection<EksContainerVolumeMount> volumeMounts) |
The volume mounts for the container.
|
EksContainer.Builder |
EksContainer.Builder.volumeMounts(Consumer<EksContainerVolumeMount.Builder>... volumeMounts) |
The volume mounts for the container.
|
EksContainer.Builder |
EksContainer.Builder.volumeMounts(EksContainerVolumeMount... volumeMounts) |
The volume mounts for the container.
|