1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- suite: pod/spec
- description: Base suite for pods
- behaviors:
- - id: pod/basic-create
- description: When a Pod resource is created with a single container and sufficient resources, a Pod MUST be created on a node with the specified container image.
- - id: pod/basic-delete
- description: When a Pod resource is delete, the Pod containers must receive a TERM signal and the Pod MUST be deleted.
- - id: pod/hostname
- description: When the hostname field is set, a container running in the Pod MUST report the hostname as the specified value.
- - id: pod/subdomain
- description: If specified, the fully qualified Pod hostname will be "<hostname>.<subdomain>.<pod
- namespace>.svc.<cluster domain>". If not specified, the pod will not have a
- domainname at all.
- - id: pod/terminationGracePeriodSeconds/in-spec
- description: When the terminationGracePeriodSeconds is specified in the spec,
- processes running in the Pod MUST NOT receive a hard termination signal for at
- least that number of seconds after a delete request.
- - id: pod/terminationGracePeriodSeconds/in-delete
- description: When the terminationGracePeriodSeconds is specified in a delete request,
- processes running in the Pod MUST NOT receive a hard termination signal for at
- least that number of seconds after the delete request.
- - id: pod/activeDeadlineSeconds
- description: 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.
- - id: pod/hostNetwork/true
- description: When hostNetwork is set to true, the Pod MUST use the host's network
- namespace.
- - id: pod/hostNetwork/false
- description: When hostNetwork is set to false, the Pod MUST NOT use the host's network
- namespace.
- - id: pod/hostPID/true
- description: When hostPID is set to true, the Pod MUST use the host's process
- namespace.
- - id: pod/hostPID/false
- description: When hostPID is set to false, the Pod MUST NOT use the host's process
- namespace.
- - id: pod/hostIPC/true
- description: When hostIPC is set to true, the Pod MUST use the host's inter-process
- communication namespace.
- - id: pod/hostIPC/false
- description: When hostIPC is set to false, the Pod MUST NOT use the host's inter-process
- communication namespace.
|