» kubernetes_pod

A pod is a group of one or more containers, the shared storage for those containers, and options about how to run the containers. Pods are always co-located and co-scheduled, and run in a shared context.

Read more at Kubernetes reference/

» Example Usage

resource "kubernetes_pod" "test" {
  metadata {
    name = "terraform-example"
  }

  spec {
    container {
      image = "nginx:1.7.9"
      name  = "example"

      env {
        name  = "environment"
        value = "test"
      }
    }

        dns_config {
            nameservers = ["1.1.1.1", "8.8.8.8", "9.9.9.9"]
            searches    = ["example.com"]

            option {
                name  = "ndots"
                value = 1
            }

            option {
                name = "use-vc"
            }
        }

    dns_policy = "None"
  }
}

» Argument Reference

The following arguments are supported:

» Nested Blocks

» metadata

» Arguments

  • annotations - (Optional) An unstructured key value map stored with the pod that may be used to store arbitrary metadata. For more info see Kubernetes reference
  • generate_name - (Optional) Prefix, used by the server, to generate a unique name ONLY IF the name field has not been provided. This value will also be combined with a unique suffix. For more info see Kubernetes reference
  • labels - (Optional) Map of string keys and values that can be used to organize and categorize (scope and select) the pod. May match selectors of replication controllers and services. For more info see Kubernetes reference
  • name - (Optional) Name of the pod, must be unique. Cannot be updated. For more info see Kubernetes reference
  • namespace - (Optional) Namespace defines the space within which name of the pod must be unique.

» Attributes

  • generation - A sequence number representing a specific generation of the desired state.
  • resource_version - An opaque value that represents the internal version of this pod that can be used by clients to determine when pod has changed. For more info see Kubernetes reference
  • self_link - A URL representing this pod.
  • uid - The unique in time and space value for this pod. For more info see Kubernetes reference

» spec

» Arguments

  • active_deadline_seconds - (Optional) Optional duration in seconds the pod may be active on the node relative to StartTime before the system will actively try to mark it failed and kill associated containers. Value must be a positive integer.
  • container - (Optional) List of containers belonging to the pod. Containers cannot currently be added or removed. There must be at least one container in a Pod. Cannot be updated. For more info see Kubernetes reference
  • init_container - (Optional) List of init containers belonging to the pod. Init containers always run to completion and each must complete successfully before the next is started. For more info see Kubernetes reference/
  • dns_policy - (Optional) Set DNS policy for containers within the pod. Valid values are 'ClusterFirstWithHostNet', 'ClusterFirst', 'Default' or 'None'. DNS parameters given in DNSConfig will be merged with the policy selected with DNSPolicy. To have DNS options set along with hostNetwork, you have to specify DNS policy explicitly to 'ClusterFirstWithHostNet'. Optional: Defaults to 'ClusterFirst', see Kubernetes reference.
  • dns_config - (Optional) Specifies the DNS parameters of a pod. Parameters specified here will be merged to the generated DNS configuration based on DNSPolicy. Defaults to empty. See dns_config block definition below.
  • host_alias - (Optional) List of hosts and IPs that will be injected into the pod's hosts file if specified. Optional: Defaults to empty. See host_alias block definition below.
  • host_ipc - (Optional) Use the host's ipc namespace. Optional: Defaults to false.
  • host_network - (Optional) Host networking requested for this pod. Use the host's network namespace. If this option is set, the ports that will be used must be specified.
  • host_pid - (Optional) Use the host's pid namespace.
  • hostname - (Optional) Specifies the hostname of the Pod If not specified, the pod's hostname will be set to a system-defined value.
  • image_pull_secrets - (Optional) ImagePullSecrets is an optional list of references to secrets in the same namespace to use for pulling any of the images used by this PodSpec. If specified, these secrets will be passed to individual puller implementations for them to use. For example, in the case of docker, only DockerConfig type secrets are honored. For more info see Kubernetes reference
  • node_name - (Optional) NodeName is a request to schedule this pod onto a specific node. If it is non-empty, the scheduler simply schedules this pod onto that node, assuming that it fits resource requirements.
  • node_selector - (Optional) NodeSelector is a selector which must be true for the pod to fit on a node. Selector which must match a node's labels for the pod to be scheduled on that node. For more info see Kubernetes reference.
  • restart_policy - (Optional) Restart policy for all containers within the pod. One of Always, OnFailure, Never. For more info see Kubernetes reference.
  • security_context - (Optional) SecurityContext holds pod-level security attributes and common container settings. Optional: Defaults to empty
  • service_account_name - (Optional) ServiceAccountName is the name of the ServiceAccount to use to run this pod. For more info see http://releases.k8s.io/HEAD/docs/design/service_accounts.md.
  • subdomain - (Optional) If specified, the fully qualified Pod hostname will be "...svc.". If not specified, the pod will not have a domainname at all..
  • termination_grace_period_seconds - (Optional) Optional duration in seconds the pod needs to terminate gracefully. May be decreased in delete request. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period will be used instead. The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal. Set this value longer than the expected cleanup time for your process.
  • volume - (Optional) List of volumes that can be mounted by containers belonging to the pod. For more info see Kubernetes reference

» container

» Arguments

  • args - (Optional) Arguments to the entrypoint. The docker image's CMD is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container's environment. If a variable cannot be resolved, the reference in the input string will be unchanged. The $(VAR_NAME) syntax can be escaped with a double $$, ie: $$(VAR_NAME). Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. For more info see Kubernetes reference
  • command - (Optional) Entrypoint array. Not executed within a shell. The docker image's ENTRYPOINT is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container's environment. If a variable cannot be resolved, the reference in the input string will be unchanged. The $(VAR_NAME) syntax can be escaped with a double $$, ie: $$(VAR_NAME). Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. For more info see Kubernetes reference
  • env - (Optional) Block of string name and value pairs to set in the container's environment. May be declared multiple times. Cannot be updated.
  • env_from - (Optional) List of sources to populate environment variables in the container. The keys defined within a source must be a C_IDENTIFIER. All invalid keys will be reported as an event when the container is starting. When a key exists in multiple sources, the value associated with the last source will take precedence. Values defined by an Env with a duplicate key will take precedence. Cannot be updated.
  • image - (Optional) Docker image name. For more info see Kubernetes reference
  • image_pull_policy - (Optional) Image pull policy. One of Always, Never, IfNotPresent. Defaults to Always if :latest tag is specified, or IfNotPresent otherwise. Cannot be updated. For more info see Kubernetes reference
  • lifecycle - (Optional) Actions that the management system should take in response to container lifecycle events
  • liveness_probe - (Optional) Periodic probe of container liveness. Container will be restarted if the probe fails. Cannot be updated. For more info see Kubernetes reference
  • name - (Required) Name of the container specified as a DNS_LABEL. Each container in a pod must have a unique name (DNS_LABEL). Cannot be updated.
  • port - (Optional) List of ports to expose from the container. Exposing a port here gives the system additional information about the network connections a container uses, but is primarily informational. Not specifying a port here DOES NOT prevent that port from being exposed. Any port which is listening on the default "0.0.0.0" address inside a container will be accessible from the network. Cannot be updated.
  • readiness_probe - (Optional) Periodic probe of container service readiness. Container will be removed from service endpoints if the probe fails. Cannot be updated. For more info see Kubernetes reference
  • resources - (Optional) Compute Resources required by this container. Cannot be updated. For more info see Kubernetes reference
  • security_context - (Optional) Security options the pod should run with. For more info see http://releases.k8s.io/HEAD/docs/design/security_context.md
  • stdin - (Optional) Whether this container should allocate a buffer for stdin in the container runtime. If this is not set, reads from stdin in the container will always result in EOF.
  • stdin_once - (Optional) Whether the container runtime should close the stdin channel after it has been opened by a single attach. When stdin is true the stdin stream will remain open across multiple attach sessions. If stdinOnce is set to true, stdin is opened on container start, is empty until the first client attaches to stdin, and then remains open and accepts data until the client disconnects, at which time stdin is closed and remains closed until the container is restarted. If this flag is false, a container processes that reads from stdin will never receive an EOF.
  • termination_message_path - (Optional) Optional: Path at which the file to which the container's termination message will be written is mounted into the container's filesystem. Message written is intended to be brief final status, such as an assertion failure message. Defaults to /dev/termination-log. Cannot be updated.
  • tty - (Optional) Whether this container should allocate a TTY for itself
  • volume_mount - (Optional) Pod volumes to mount into the container's filesystem. Cannot be updated.
  • working_dir - (Optional) Container's working directory. If not specified, the container runtime's default will be used, which might be configured in the container image. Cannot be updated.

» aws_elastic_block_store

» Arguments

  • fs_type - (Optional) Filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. For more info see Kubernetes reference
  • partition - (Optional) The partition in the volume that you want to mount. If omitted, the default is to mount by volume name. Examples: For volume /dev/sda1, you specify the partition as "1". Similarly, the volume partition for /dev/sda is "0" (or you can leave the property empty).
  • read_only - (Optional) Whether to set the read-only property in VolumeMounts to "true". If omitted, the default is "false". For more info see Kubernetes reference
  • volume_id - (Required) Unique ID of the persistent disk resource in AWS (Amazon EBS volume). For more info see Kubernetes reference

» azure_disk

» Arguments

  • caching_mode - (Required) Host Caching mode: None, Read Only, Read Write.
  • data_disk_uri - (Required) The URI the data disk in the blob storage
  • disk_name - (Required) The Name of the data disk in the blob storage
  • fs_type - (Optional) Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified.
  • read_only - (Optional) Whether to force the read-only setting in VolumeMounts. Defaults to false (read/write).

» azure_file

» Arguments

  • read_only - (Optional) Whether to force the read-only setting in VolumeMounts. Defaults to false (read/write).
  • secret_name - (Required) The name of secret that contains Azure Storage Account Name and Key
  • share_name - (Required) Share Name

» capabilities

» Arguments

  • add - (Optional) Added capabilities
  • drop - (Optional) Removed capabilities

» ceph_fs

» Arguments

» cinder

» Arguments

» config_map

» Arguments

  • default_mode - (Optional) Optional: mode bits to use on created files by default. Must be a value between 0 and 0777. Defaults to 0644. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.
  • items - (Optional) If unspecified, each key-value pair in the Data field of the referenced ConfigMap will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the ConfigMap, the volume setup will error. Paths must be relative and may not contain the '..' path or start with '..'.
  • name - (Optional) Name of the referent. For more info see Kubernetes reference

» config_map_ref

» Arguments

» config_map_key_ref

» Arguments

» dns_config

» Arguments

  • nameservers - (Optional) A list of DNS name server IP addresses specified as strings. This will be appended to the base nameservers generated from DNSPolicy. Duplicated nameservers will be removed. Optional: Defaults to empty.
  • option - (Optional) A list of DNS resolver options specified as blocks with name/value pairs. This will be merged with the base options generated from DNSPolicy. Duplicated entries will be removed. Resolution options given in Options will override those that appear in the base DNSPolicy. Optional: Defaults to empty.
  • searches - (Optional) A list of DNS search domains for host-name lookup specified as strings. This will be appended to the base search paths generated from DNSPolicy. Duplicated search paths will be removed. Optional: Defaults to empty.

The option block supports the following:

  • name - (Required) Name of the option.
  • value - (Optional) Value of the option. Optional: Defaults to empty.

» downward_api

» Arguments

  • default_mode - (Optional) Optional: mode bits to use on created files by default. Must be a value between 0 and 0777. Defaults to 0644. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.
  • items - (Optional) If unspecified, each key-value pair in the Data field of the referenced ConfigMap will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the ConfigMap, the volume setup will error. Paths must be relative and may not contain the '..' path or start with '..'.

» empty_dir

» Arguments

  • medium - (Optional) What type of storage medium should back this directory. The default is "" which means to use the node's default medium. Must be an empty string (default) or Memory. For more info see Kubernetes reference

» env

» Arguments

  • name - (Required) Name of the environment variable. Must be a C_IDENTIFIER
  • value - (Optional) Variable references $(VAR_NAME) are expanded using the previous defined environment variables in the container and any service environment variables. If a variable cannot be resolved, the reference in the input string will be unchanged. The $(VAR_NAME) syntax can be escaped with a double $$, ie: $$(VAR_NAME). Escaped references will never be expanded, regardless of whether the variable exists or not. Defaults to "".
  • value_from - (Optional) Source for the environment variable's value

» env_from

» Arguments

  • config_map_ref - (Optional) The ConfigMap to select from
  • prefix - (Optional) An optional identifer to prepend to each key in the ConfigMap. Must be a C_IDENTIFIER..
  • secret_ref - (Optional) The Secret to select from

» exec

» Arguments

  • command - (Optional) Command is the command line to execute inside the container, the working directory for the command is root ('/') in the container's filesystem. The command is simply exec'd, it is not run inside a shell, so traditional shell instructions. To use a shell, you need to explicitly call out to that shell. Exit status of 0 is treated as live/healthy and non-zero is unhealthy.

» fc

» Arguments

  • fs_type - (Optional) Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified.
  • lun - (Required) FC target lun number
  • read_only - (Optional) Whether to force the read-only setting in VolumeMounts. Defaults to false (read/write).
  • target_ww_ns - (Required) FC target worldwide names (WWNs)

» field_ref

» Arguments

  • api_version - (Optional) Version of the schema the FieldPath is written in terms of, defaults to "v1".
  • field_path - (Optional) Path of the field to select in the specified API version

» flex_volume

» Arguments

  • driver - (Required) Driver is the name of the driver to use for this volume.
  • fs_type - (Optional) Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. "ext4", "xfs", "ntfs". The default filesystem depends on FlexVolume script.
  • options - (Optional) Extra command options if any.
  • read_only - (Optional) Whether to force the ReadOnly setting in VolumeMounts. Defaults to false (read/write).
  • secret_ref - (Optional) Reference to the secret object containing sensitive information to pass to the plugin scripts. This may be empty if no secret object is specified. If the secret object contains more than one secret, all secrets are passed to the plugin scripts.

» flocker

» Arguments

  • dataset_name - (Optional) Name of the dataset stored as metadata -> name on the dataset for Flocker should be considered as deprecated
  • dataset_uuid - (Optional) UUID of the dataset. This is unique identifier of a Flocker dataset

» gce_persistent_disk

» Arguments

  • fs_type - (Optional) Filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. For more info see Kubernetes reference
  • partition - (Optional) The partition in the volume that you want to mount. If omitted, the default is to mount by volume name. Examples: For volume /dev/sda1, you specify the partition as "1". Similarly, the volume partition for /dev/sda is "0" (or you can leave the property empty). For more info see Kubernetes reference
  • pd_name - (Required) Unique name of the PD resource in GCE. Used to identify the disk in GCE. For more info see Kubernetes reference
  • read_only - (Optional) Whether to force the ReadOnly setting in VolumeMounts. Defaults to false. For more info see Kubernetes reference

» git_repo

» Arguments

  • directory - (Optional) Target directory name. Must not contain or start with '..'. If '.' is supplied, the volume directory will be the git repository. Otherwise, if specified, the volume will contain the git repository in the subdirectory with the given name.
  • repository - (Optional) Repository URL
  • revision - (Optional) Commit hash for the specified revision.

» glusterfs

» Arguments

» host_alias

» Arguments

  • hostnames - (Required) Hostnames for the IP address.
  • ip - (Required) IP address of the host file entry.

» host_path

» Arguments

» http_get

» Arguments

  • host - (Optional) Host name to connect to, defaults to the pod IP. You probably want to set "Host" in httpHeaders instead.
  • http_header - (Optional) Scheme to use for connecting to the host.
  • path - (Optional) Path to access on the HTTP server.
  • port - (Optional) Name or number of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME.
  • scheme - (Optional) Scheme to use for connecting to the host.

» http_header

» Arguments

  • name - (Optional) The header field name
  • value - (Optional) The header field value

» image_pull_secrets

» Arguments

» iscsi

» Arguments

  • fs_type - (Optional) Filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. For more info see Kubernetes reference
  • iqn - (Required) Target iSCSI Qualified Name.
  • iscsi_interface - (Optional) iSCSI interface name that uses an iSCSI transport. Defaults to 'default' (tcp).
  • lun - (Optional) iSCSI target lun number.
  • read_only - (Optional) Whether to force the read-only setting in VolumeMounts. Defaults to false.
  • target_portal - (Required) iSCSI target portal. The portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260).

» items

» Arguments

  • key - (Optional) The key to project.
  • mode - (Optional) Optional: mode bits to use on this file, must be a value between 0 and 0777. If not specified, the volume defaultMode will be used. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.
  • path - (Optional) The relative path of the file to map the key to. May not be an absolute path. May not contain the path element '..'. May not start with the string '..'.

» lifecycle

» Arguments

  • post_start - (Optional) post_start is called immediately after a container is created. If the handler fails, the container is terminated and restarted according to its restart policy. Other management of the container blocks until the hook completes. For more info see Kubernetes reference
  • pre_stop - (Optional) pre_stop is called immediately before a container is terminated. The container is terminated after the handler completes. The reason for termination is passed to the handler. Regardless of the outcome of the handler, the container is eventually terminated. Other management of the container blocks until the hook completes. For more info see Kubernetes reference

» limits

» Arguments

  • cpu - (Optional) CPU
  • memory - (Optional) Memory

» liveness_probe

» Arguments

  • exec - (Optional) exec specifies the action to take.
  • failure_threshold - (Optional) Minimum consecutive failures for the probe to be considered failed after having succeeded.
  • http_get - (Optional) Specifies the http request to perform.
  • initial_delay_seconds - (Optional) Number of seconds after the container has started before liveness probes are initiated. For more info see Kubernetes reference
  • period_seconds - (Optional) How often (in seconds) to perform the probe
  • success_threshold - (Optional) Minimum consecutive successes for the probe to be considered successful after having failed.
  • tcp_socket - (Optional) TCPSocket specifies an action involving a TCP port. TCP hooks not yet supported
  • timeout_seconds - (Optional) Number of seconds after which the probe times out. For more info see Kubernetes reference

» nfs

» Arguments

» persistent_volume_claim

» Arguments

  • claim_name - (Optional) ClaimName is the name of a PersistentVolumeClaim in the same
  • read_only - (Optional) Will force the ReadOnly setting in VolumeMounts.

» photon_persistent_disk

» Arguments

  • fs_type - (Optional) Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified.
  • pd_id - (Required) ID that identifies Photon Controller persistent disk

» port

» Arguments

  • container_port - (Required) Number of port to expose on the pod's IP address. This must be a valid port number, 0 < x < 65536.
  • host_ip - (Optional) What host IP to bind the external port to.
  • host_port - (Optional) Number of port to expose on the host. If specified, this must be a valid port number, 0 < x < 65536. If HostNetwork is specified, this must match ContainerPort. Most containers do not need this.
  • name - (Optional) If specified, this must be an IANA_SVC_NAME and unique within the pod. Each named port in a pod must have a unique name. Name for the port that can be referred to by services
  • protocol - (Optional) Protocol for port. Must be UDP or TCP. Defaults to "TCP".

» post_start

» Arguments

  • exec - (Optional) exec specifies the action to take.
  • http_get - (Optional) Specifies the http request to perform.
  • tcp_socket - (Optional) TCPSocket specifies an action involving a TCP port. TCP hooks not yet supported

» pre_stop

» Arguments

  • exec - (Optional) exec specifies the action to take.
  • http_get - (Optional) Specifies the http request to perform.
  • tcp_socket - (Optional) TCPSocket specifies an action involving a TCP port. TCP hooks not yet supported

» quobyte

» Arguments

  • group - (Optional) Group to map volume access to Default is no group
  • read_only - (Optional) Whether to force the Quobyte volume to be mounted with read-only permissions. Defaults to false.
  • registry - (Required) Registry represents a single or multiple Quobyte Registry services specified as a string as host:port pair (multiple entries are separated with commas) which acts as the central registry for volumes
  • user - (Optional) User to map volume access to Defaults to serivceaccount user
  • volume - (Required) Volume is a string that references an already created Quobyte volume by name.

» rbd

» Arguments

» readiness_probe

» Arguments

  • exec - (Optional) exec specifies the action to take.
  • failure_threshold - (Optional) Minimum consecutive failures for the probe to be considered failed after having succeeded.
  • http_get - (Optional) Specifies the http request to perform.
  • initial_delay_seconds - (Optional) Number of seconds after the container has started before liveness probes are initiated. For more info see Kubernetes reference
  • period_seconds - (Optional) How often (in seconds) to perform the probe
  • success_threshold - (Optional) Minimum consecutive successes for the probe to be considered successful after having failed.
  • tcp_socket - (Optional) TCPSocket specifies an action involving a TCP port. TCP hooks not yet supported
  • timeout_seconds - (Optional) Number of seconds after which the probe times out. For more info see Kubernetes reference

» resources

» Arguments

  • limits - (Optional) Describes the maximum amount of compute resources allowed. For more info see Kubernetes reference/
  • requests - (Optional) Describes the minimum amount of compute resources required.

» requests

» Arguments

  • cpu - (Optional) CPU
  • memory - (Optional) Memory

» resource_field_ref

» Arguments

» se_linux_options

» Arguments

  • level - (Optional) Level is SELinux level label that applies to the container.
  • role - (Optional) Role is a SELinux role label that applies to the container.
  • type - (Optional) Type is a SELinux type label that applies to the container.
  • user - (Optional) User is a SELinux user label that applies to the container.

» secret

» Arguments

  • default_mode - (Optional) Mode bits to use on created files by default. Must be a value between 0 and 0777. Defaults to 0644. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.
  • items - (Optional) List of Secret Items to project into the volume. See items block definition below. If unspecified, each key-value pair in the Data field of the referenced Secret will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the Secret, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'.
  • optional - (Optional) Specify whether the Secret or it's keys must be defined.
  • secret_name - (Optional) Name of the secret in the pod's namespace to use. For more info see Kubernetes reference

The items block supports the following:

  • key - (Required) The key to project.
  • mode - (Optional) Mode bits to use on this file, must be a value between 0 and 0777. If not specified, the volume defaultMode will be used.
  • path - (Required) The relative path of the file to map the key to. May not be an absolute path. May not contain the path element '..'. May not start with the string '..'.

» secret_ref

» Arguments

» secret_key_ref

» Arguments

  • key - (Optional) The key of the secret to select from. Must be a valid secret key.
  • name - (Optional) Name of the referent. For more info see Kubernetes reference

» secret_ref

» Arguments

» container security_context

» Arguments

  • allow_privilege_escalation - (Optional) AllowPrivilegeEscalation controls whether a process can gain more privileges than its parent process. This bool directly controls if the no_new_privs flag will be set on the container process. AllowPrivilegeEscalation is true always when the container is: 1) run as Privileged 2) has CAP_SYS_ADMIN
  • capabilities - (Optional) The capabilities to add/drop when running containers. Defaults to the default set of capabilities granted by the container runtime.
  • privileged - (Optional) Run container in privileged mode. Processes in privileged containers are essentially equivalent to root on the host. Defaults to false.
  • read_only_root_filesystem - (Optional) Whether this container has a read-only root filesystem. Default is false.
  • run_as_non_root - (Optional) Indicates that the container must run as a non-root user. If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does. If unset or false, no such validation will be performed. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.
  • run_as_user - (Optional) The UID to run the entrypoint of the container process. Defaults to user specified in image metadata if unspecified. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.
  • se_linux_options - (Optional) The SELinux context to be applied to the container. If unspecified, the container runtime will allocate a random SELinux context for each container. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.

» capabilities

» Arguments

  • add - (Optional) A list of added capabilities.
  • drop - (Optional) A list of removed capabilities.

» pod security_context

» Arguments

  • fs_group - (Optional) A special supplemental group that applies to all containers in a pod. Some volume types allow the Kubelet to change the ownership of that volume to be owned by the pod: 1. The owning GID will be the FSGroup 2. The setgid bit is set (new files created in the volume will be owned by FSGroup) 3. The permission bits are OR'd with rw-rw---- If unset, the Kubelet will not modify the ownership and permissions of any volume.
  • run_as_non_root - (Optional) Indicates that the container must run as a non-root user. If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does. If unset or false, no such validation will be performed. May also be set in SecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.
  • run_as_user - (Optional) The UID to run the entrypoint of the container process. Defaults to user specified in image metadata if unspecified. May also be set in SecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container.
  • se_linux_options - (Optional) The SELinux context to be applied to all containers. If unspecified, the container runtime will allocate a random SELinux context for each container. May also be set in SecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container.
  • supplemental_groups - (Optional) A list of groups applied to the first process run in each container, in addition to the container's primary GID. If unspecified, no groups will be added to any container.

» tcp_socket

» Arguments

  • port - (Required) Number or name of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME.

» value_from

» Arguments

  • config_map_key_ref - (Optional) Selects a key of a ConfigMap.
  • field_ref - (Optional) Selects a field of the pod: supports metadata.name, metadata.namespace, metadata.labels, metadata.annotations, spec.nodeName, spec.serviceAccountName, status.podIP..
  • resource_field_ref - (Optional) Selects a field of the pod: supports metadata.name, metadata.namespace, metadata.labels, metadata.annotations, spec.nodeName, spec.serviceAccountName, status.podIP..
  • secret_key_ref - (Optional) Selects a field of the pod: supports metadata.name, metadata.namespace, metadata.labels, metadata.annotations, spec.nodeName, spec.serviceAccountName, status.podIP..

» volume

» Arguments

  • aws_elastic_block_store - (Optional) Represents an AWS Disk resource that is attached to a kubelet's host machine and then exposed to the pod. For more info see Kubernetes reference
  • azure_disk - (Optional) Represents an Azure Data Disk mount on the host and bind mount to the pod.
  • azure_file - (Optional) Represents an Azure File Service mount on the host and bind mount to the pod.
  • ceph_fs - (Optional) Represents a Ceph FS mount on the host that shares a pod's lifetime
  • cinder - (Optional) Represents a cinder volume attached and mounted on kubelets host machine. For more info see http://releases.k8s.io/HEAD/examples/mysql-cinder-pd/README.md
  • config_map - (Optional) ConfigMap represents a configMap that should populate this volume
  • downward_api - (Optional) DownwardAPI represents downward API about the pod that should populate this volume
  • empty_dir - (Optional) EmptyDir represents a temporary directory that shares a pod's lifetime. For more info see Kubernetes reference
  • fc - (Optional) Represents a Fibre Channel resource that is attached to a kubelet's host machine and then exposed to the pod.
  • flex_volume - (Optional) Represents a generic volume resource that is provisioned/attached using an exec based plugin. This is an alpha feature and may change in future.
  • flocker - (Optional) Represents a Flocker volume attached to a kubelet's host machine and exposed to the pod for its usage. This depends on the Flocker control service being running
  • gce_persistent_disk - (Optional) Represents a GCE Disk resource that is attached to a kubelet's host machine and then exposed to the pod. Provisioned by an admin. For more info see Kubernetes reference
  • git_repo - (Optional) GitRepo represents a git repository at a particular revision.
  • glusterfs - (Optional) Represents a Glusterfs volume that is attached to a host and exposed to the pod. Provisioned by an admin. For more info see http://releases.k8s.io/HEAD/examples/volumes/glusterfs/README.md
  • host_path - (Optional) Represents a directory on the host. Provisioned by a developer or tester. This is useful for single-node development and testing only! On-host storage is not supported in any way and WILL NOT WORK in a multi-node cluster. For more info see Kubernetes reference
  • iscsi - (Optional) Represents an ISCSI Disk resource that is attached to a kubelet's host machine and then exposed to the pod. Provisioned by an admin.
  • name - (Optional) Volume's name. Must be a DNS_LABEL and unique within the pod. For more info see Kubernetes reference
  • nfs - (Optional) Represents an NFS mount on the host. Provisioned by an admin. For more info see Kubernetes reference
  • persistent_volume_claim - (Optional) The specification of a persistent volume.
  • photon_persistent_disk - (Optional) Represents a PhotonController persistent disk attached and mounted on kubelets host machine
  • quobyte - (Optional) Quobyte represents a Quobyte mount on the host that shares a pod's lifetime
  • rbd - (Optional) Represents a Rados Block Device mount on the host that shares a pod's lifetime. For more info see http://releases.k8s.io/HEAD/examples/volumes/rbd/README.md
  • secret - (Optional) Secret represents a secret that should populate this volume. For more info see Kubernetes reference
  • vsphere_volume - (Optional) Represents a vSphere volume attached and mounted on kubelets host machine

» volume_mount

» Arguments

  • mount_path - (Required) Path within the container at which the volume should be mounted. Must not contain ':'.
  • name - (Required) This must match the Name of a Volume.
  • read_only - (Optional) Mounted read-only if true, read-write otherwise (false or unspecified). Defaults to false.
  • sub_path - (Optional) Path within the volume from which the container's volume should be mounted. Defaults to "" (volume's root).

» vsphere_volume

» Arguments

  • fs_type - (Optional) Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified.
  • volume_path - (Required) Path that identifies vSphere volume vmdk

» Timeouts

The following Timeout configuration options are available for the kubernetes_pod resource:

  • create - (Default 5 minutes) Used for Creating Pods.
  • delete - (Default 5 minutes) Used for Destroying Pods.

» Import

Pod can be imported using the namespace and name, e.g.

$ terraform import kubernetes_pod.example default/terraform-example