Interface AbstractPodProps

    • Method Detail

      • getContainers

        @Stability(Stable)
        @Nullable
        default List<ContainerProps> getContainers()
        List of containers belonging to the pod.

        Containers cannot currently be added or removed. There must be at least one container in a Pod.

        You can add additionnal containers using podSpec.addContainer()

        Default: - No containers. Note that a pod spec must include at least one container.

      • getDockerRegistryAuth

        @Stability(Stable)
        @Nullable
        default DockerConfigSecret getDockerRegistryAuth()
        A secret containing docker credentials for authenticating to a registry.

        Default: - No auth. Images are assumed to be publicly available.

      • getHostAliases

        @Stability(Stable)
        @Nullable
        default List<HostAlias> getHostAliases()
        HostAlias holds the mapping between IP and hostnames that will be injected as an entry in the pod's hosts file.
      • getInitContainers

        @Stability(Stable)
        @Nullable
        default List<ContainerProps> getInitContainers()
        List of initialization containers belonging to the pod.

        Init containers are executed in order prior to containers being started. If any init container fails, the pod is considered to have failed and is handled according to its restartPolicy. The name for an init container or normal container must be unique among all containers. Init containers may not have Lifecycle actions, Readiness probes, Liveness probes, or Startup probes. The resourceRequirements of an init container are taken into account during scheduling by finding the highest request/limit for each resource type, and then using the max of of that value or the sum of the normal containers. Limits are applied to init containers in a similar fashion.

        Init containers cannot currently be added ,removed or updated.

        Default: - No init containers.

        See Also:
        https://kubernetes.io/docs/concepts/workloads/pods/init-containers/
      • getIsolate

        @Stability(Stable)
        @Nullable
        default Boolean getIsolate()
        Isolates the pod.

        This will prevent any ingress or egress connections to / from this pod. You can however allow explicit connections post instantiation by using the .connections property.

        Default: false

      • getSecurityContext

        @Stability(Stable)
        @Nullable
        default PodSecurityContextProps getSecurityContext()
        SecurityContext holds pod-level security attributes and common container settings.

        Default: fsGroupChangePolicy: FsGroupChangePolicy.FsGroupChangePolicy.ALWAYS ensureNonRoot: true

      • getServiceAccount

        @Stability(Stable)
        @Nullable
        default IServiceAccount getServiceAccount()
        A service account provides an identity for processes that run in a Pod.

        When you (a human) access the cluster (for example, using kubectl), you are authenticated by the apiserver as a particular User Account (currently this is usually admin, unless your cluster administrator has customized your cluster). Processes in containers inside pods can also contact the apiserver. When they do, they are authenticated as a particular Service Account (for example, default).

        Default: - No service account.

        See Also:
        https://kubernetes.io/docs/tasks/configure-pod-container/configure-service-account/