The e2e test "should have Endpoints and EndpointSlices pointing to the API Server Service" was veryfing the current endpoints reconciler implementation on the apiservers, however, users may disable the endpoint reconciler and create their own. This e2e test is also a conformance test, so we should test the behaviour and not the implementation details. The test verifies that a kubernetes.default service exist, an endpoint and endpoint slices object referencing that service exist and are equivalent.
3094 lines
187 KiB
YAML
Executable File
3094 lines
187 KiB
YAML
Executable File
- testname: Admission webhook, list mutating webhooks
|
|
codename: '[sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] listing
|
|
mutating webhooks should work [Conformance]'
|
|
description: Create 10 mutating webhook configurations, all with a label. Attempt
|
|
to list the webhook configurations matching the label; all the created webhook
|
|
configurations MUST be present. Attempt to create an object; the object MUST be
|
|
mutated. Attempt to remove the webhook configurations matching the label with
|
|
deletecollection; all webhook configurations MUST be deleted. Attempt to create
|
|
an object; the object MUST NOT be mutated.
|
|
release: v1.16
|
|
file: test/e2e/apimachinery/webhook.go
|
|
- testname: Admission webhook, list validating webhooks
|
|
codename: '[sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] listing
|
|
validating webhooks should work [Conformance]'
|
|
description: Create 10 validating webhook configurations, all with a label. Attempt
|
|
to list the webhook configurations matching the label; all the created webhook
|
|
configurations MUST be present. Attempt to create an object; the create MUST be
|
|
denied. Attempt to remove the webhook configurations matching the label with deletecollection;
|
|
all webhook configurations MUST be deleted. Attempt to create an object; the create
|
|
MUST NOT be denied.
|
|
release: v1.16
|
|
file: test/e2e/apimachinery/webhook.go
|
|
- testname: Admission webhook, update mutating webhook
|
|
codename: '[sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] patching/updating
|
|
a mutating webhook should work [Conformance]'
|
|
description: Register a mutating admission webhook configuration. Update the webhook
|
|
to not apply to the create operation and attempt to create an object; the webhook
|
|
MUST NOT mutate the object. Patch the webhook to apply to the create operation
|
|
again and attempt to create an object; the webhook MUST mutate the object.
|
|
release: v1.16
|
|
file: test/e2e/apimachinery/webhook.go
|
|
- testname: Admission webhook, update validating webhook
|
|
codename: '[sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] patching/updating
|
|
a validating webhook should work [Conformance]'
|
|
description: Register a validating admission webhook configuration. Update the webhook
|
|
to not apply to the create operation and attempt to create an object; the webhook
|
|
MUST NOT deny the create. Patch the webhook to apply to the create operation again
|
|
and attempt to create an object; the webhook MUST deny the create.
|
|
release: v1.16
|
|
file: test/e2e/apimachinery/webhook.go
|
|
- testname: Admission webhook, deny attach
|
|
codename: '[sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] should
|
|
be able to deny attaching pod [Conformance]'
|
|
description: Register an admission webhook configuration that denies connecting
|
|
to a pod's attach sub-resource. Attempts to attach MUST be denied.
|
|
release: v1.16
|
|
file: test/e2e/apimachinery/webhook.go
|
|
- testname: Admission webhook, deny custom resource create and delete
|
|
codename: '[sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] should
|
|
be able to deny custom resource creation, update and deletion [Conformance]'
|
|
description: Register an admission webhook configuration that denies creation, update
|
|
and deletion of custom resources. Attempts to create, update and delete custom
|
|
resources MUST be denied.
|
|
release: v1.16
|
|
file: test/e2e/apimachinery/webhook.go
|
|
- testname: Admission webhook, deny create
|
|
codename: '[sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] should
|
|
be able to deny pod and configmap creation [Conformance]'
|
|
description: Register an admission webhook configuration that admits pod and configmap.
|
|
Attempts to create non-compliant pods and configmaps, or update/patch compliant
|
|
pods and configmaps to be non-compliant MUST be denied. An attempt to create a
|
|
pod that causes a webhook to hang MUST result in a webhook timeout error, and
|
|
the pod creation MUST be denied. An attempt to create a non-compliant configmap
|
|
in a whitelisted namespace based on the webhook namespace selector MUST be allowed.
|
|
release: v1.16
|
|
file: test/e2e/apimachinery/webhook.go
|
|
- testname: Admission webhook, deny custom resource definition
|
|
codename: '[sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] should
|
|
deny crd creation [Conformance]'
|
|
description: Register a webhook that denies custom resource definition create. Attempt
|
|
to create a custom resource definition; the create request MUST be denied.
|
|
release: v1.16
|
|
file: test/e2e/apimachinery/webhook.go
|
|
- testname: Admission webhook, honor timeout
|
|
codename: '[sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] should
|
|
honor timeout [Conformance]'
|
|
description: Using a webhook that waits 5 seconds before admitting objects, configure
|
|
the webhook with combinations of timeouts and failure policy values. Attempt to
|
|
create a config map with each combination. Requests MUST timeout if the configured
|
|
webhook timeout is less than 5 seconds and failure policy is fail. Requests must
|
|
not timeout if the failure policy is ignore. Requests MUST NOT timeout if configured
|
|
webhook timeout is 10 seconds (much longer than the webhook wait duration).
|
|
release: v1.16
|
|
file: test/e2e/apimachinery/webhook.go
|
|
- testname: Admission webhook, discovery document
|
|
codename: '[sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] should
|
|
include webhook resources in discovery documents [Conformance]'
|
|
description: The admissionregistration.k8s.io API group MUST exists in the /apis
|
|
discovery document. The admissionregistration.k8s.io/v1 API group/version MUST
|
|
exists in the /apis discovery document. The mutatingwebhookconfigurations and
|
|
validatingwebhookconfigurations resources MUST exist in the /apis/admissionregistration.k8s.io/v1
|
|
discovery document.
|
|
release: v1.16
|
|
file: test/e2e/apimachinery/webhook.go
|
|
- testname: Admission webhook, ordered mutation
|
|
codename: '[sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] should
|
|
mutate configmap [Conformance]'
|
|
description: Register a mutating webhook configuration with two webhooks that admit
|
|
configmaps, one that adds a data key if the configmap already has a specific key,
|
|
and another that adds a key if the key added by the first webhook is present.
|
|
Attempt to create a config map; both keys MUST be added to the config map.
|
|
release: v1.16
|
|
file: test/e2e/apimachinery/webhook.go
|
|
- testname: Admission webhook, mutate custom resource
|
|
codename: '[sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] should
|
|
mutate custom resource [Conformance]'
|
|
description: Register a webhook that mutates a custom resource. Attempt to create
|
|
custom resource object; the custom resource MUST be mutated.
|
|
release: v1.16
|
|
file: test/e2e/apimachinery/webhook.go
|
|
- testname: Admission webhook, mutate custom resource with different stored version
|
|
codename: '[sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] should
|
|
mutate custom resource with different stored version [Conformance]'
|
|
description: Register a webhook that mutates custom resources on create and update.
|
|
Register a custom resource definition using v1 as stored version. Create a custom
|
|
resource. Patch the custom resource definition to use v2 as the stored version.
|
|
Attempt to patch the custom resource with a new field and value; the patch MUST
|
|
be applied successfully.
|
|
release: v1.16
|
|
file: test/e2e/apimachinery/webhook.go
|
|
- testname: Admission webhook, mutate custom resource with pruning
|
|
codename: '[sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] should
|
|
mutate custom resource with pruning [Conformance]'
|
|
description: Register mutating webhooks that adds fields to custom objects. Register
|
|
a custom resource definition with a schema that includes only one of the data
|
|
keys added by the webhooks. Attempt to a custom resource; the fields included
|
|
in the schema MUST be present and field not included in the schema MUST NOT be
|
|
present.
|
|
release: v1.16
|
|
file: test/e2e/apimachinery/webhook.go
|
|
- testname: Admission webhook, mutation with defaulting
|
|
codename: '[sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] should
|
|
mutate pod and apply defaults after mutation [Conformance]'
|
|
description: Register a mutating webhook that adds an InitContainer to pods. Attempt
|
|
to create a pod; the InitContainer MUST be added the TerminationMessagePolicy
|
|
MUST be defaulted.
|
|
release: v1.16
|
|
file: test/e2e/apimachinery/webhook.go
|
|
- testname: Admission webhook, admission control not allowed on webhook configuration
|
|
objects
|
|
codename: '[sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] should
|
|
not be able to mutate or prevent deletion of webhook configuration objects [Conformance]'
|
|
description: Register webhooks that mutate and deny deletion of webhook configuration
|
|
objects. Attempt to create and delete a webhook configuration object; both operations
|
|
MUST be allowed and the webhook configuration object MUST NOT be mutated the webhooks.
|
|
release: v1.16
|
|
file: test/e2e/apimachinery/webhook.go
|
|
- testname: Admission webhook, fail closed
|
|
codename: '[sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] should
|
|
unconditionally reject operations on fail closed webhook [Conformance]'
|
|
description: Register a webhook with a fail closed policy and without CA bundle
|
|
so that it cannot be called. Attempt operations that require the admission webhook;
|
|
all MUST be denied.
|
|
release: v1.16
|
|
file: test/e2e/apimachinery/webhook.go
|
|
- testname: aggregator-supports-the-sample-apiserver
|
|
codename: '[sig-api-machinery] Aggregator Should be able to support the 1.17 Sample
|
|
API Server using the current Aggregator [Conformance]'
|
|
description: Ensure that the sample-apiserver code from 1.17 and compiled against
|
|
1.17 will work on the current Aggregator/API-Server.
|
|
release: v1.17, v1.21
|
|
file: test/e2e/apimachinery/aggregator.go
|
|
- testname: Custom Resource Definition Conversion Webhook, convert mixed version list
|
|
codename: '[sig-api-machinery] CustomResourceConversionWebhook [Privileged:ClusterAdmin]
|
|
should be able to convert a non homogeneous list of CRs [Conformance]'
|
|
description: Register a conversion webhook and a custom resource definition. Create
|
|
a custom resource stored at v1. Change the custom resource definition storage
|
|
to v2. Create a custom resource stored at v2. Attempt to list the custom resources
|
|
at v2; the list result MUST contain both custom resources at v2.
|
|
release: v1.16
|
|
file: test/e2e/apimachinery/crd_conversion_webhook.go
|
|
- testname: Custom Resource Definition Conversion Webhook, conversion custom resource
|
|
codename: '[sig-api-machinery] CustomResourceConversionWebhook [Privileged:ClusterAdmin]
|
|
should be able to convert from CR v1 to CR v2 [Conformance]'
|
|
description: Register a conversion webhook and a custom resource definition. Create
|
|
a v1 custom resource. Attempts to read it at v2 MUST succeed.
|
|
release: v1.16
|
|
file: test/e2e/apimachinery/crd_conversion_webhook.go
|
|
- testname: Custom Resource Definition, watch
|
|
codename: '[sig-api-machinery] CustomResourceDefinition Watch [Privileged:ClusterAdmin]
|
|
CustomResourceDefinition Watch watch on custom resource definition objects [Conformance]'
|
|
description: Create a Custom Resource Definition. Attempt to watch it; the watch
|
|
MUST observe create, modify and delete events.
|
|
release: v1.16
|
|
file: test/e2e/apimachinery/crd_watch.go
|
|
- testname: Custom Resource Definition, create
|
|
codename: '[sig-api-machinery] CustomResourceDefinition resources [Privileged:ClusterAdmin]
|
|
Simple CustomResourceDefinition creating/deleting custom resource definition objects
|
|
works [Conformance]'
|
|
description: Create a API extension client and define a random custom resource definition.
|
|
Create the custom resource definition and then delete it. The creation and deletion
|
|
MUST be successful.
|
|
release: v1.9
|
|
file: test/e2e/apimachinery/custom_resource_definition.go
|
|
- testname: Custom Resource Definition, status sub-resource
|
|
codename: '[sig-api-machinery] CustomResourceDefinition resources [Privileged:ClusterAdmin]
|
|
Simple CustomResourceDefinition getting/updating/patching custom resource definition
|
|
status sub-resource works [Conformance]'
|
|
description: Create a custom resource definition. Attempt to read, update and patch
|
|
its status sub-resource; all mutating sub-resource operations MUST be visible
|
|
to subsequent reads.
|
|
release: v1.16
|
|
file: test/e2e/apimachinery/custom_resource_definition.go
|
|
- testname: Custom Resource Definition, list
|
|
codename: '[sig-api-machinery] CustomResourceDefinition resources [Privileged:ClusterAdmin]
|
|
Simple CustomResourceDefinition listing custom resource definition objects works [Conformance]'
|
|
description: Create a API extension client, define 10 labeled custom resource definitions
|
|
and list them using a label selector; the list result MUST contain only the labeled
|
|
custom resource definitions. Delete the labeled custom resource definitions via
|
|
delete collection; the delete MUST be successful and MUST delete only the labeled
|
|
custom resource definitions.
|
|
release: v1.16
|
|
file: test/e2e/apimachinery/custom_resource_definition.go
|
|
- testname: Custom Resource Definition, defaulting
|
|
codename: '[sig-api-machinery] CustomResourceDefinition resources [Privileged:ClusterAdmin]
|
|
custom resource defaulting for requests and from storage works [Conformance]'
|
|
description: Create a custom resource definition without default. Create CR. Add
|
|
default and read CR until the default is applied. Create another CR. Remove default,
|
|
add default for another field and read CR until new field is defaulted, but old
|
|
default stays.
|
|
release: v1.17
|
|
file: test/e2e/apimachinery/custom_resource_definition.go
|
|
- testname: Custom Resource Definition, discovery
|
|
codename: '[sig-api-machinery] CustomResourceDefinition resources [Privileged:ClusterAdmin]
|
|
should include custom resource definition resources in discovery documents [Conformance]'
|
|
description: Fetch /apis, /apis/apiextensions.k8s.io, and /apis/apiextensions.k8s.io/v1
|
|
discovery documents, and ensure they indicate CustomResourceDefinition apiextensions.k8s.io/v1
|
|
resources are available.
|
|
release: v1.16
|
|
file: test/e2e/apimachinery/custom_resource_definition.go
|
|
- testname: Custom Resource OpenAPI Publish, stop serving version
|
|
codename: '[sig-api-machinery] CustomResourcePublishOpenAPI [Privileged:ClusterAdmin]
|
|
removes definition from spec when one version gets changed to not be served [Conformance]'
|
|
description: Register a custom resource definition with multiple versions. OpenAPI
|
|
definitions MUST be published for custom resource definitions. Update the custom
|
|
resource definition to not serve one of the versions. OpenAPI definitions MUST
|
|
be updated to not contain the version that is no longer served.
|
|
release: v1.16
|
|
file: test/e2e/apimachinery/crd_publish_openapi.go
|
|
- testname: Custom Resource OpenAPI Publish, version rename
|
|
codename: '[sig-api-machinery] CustomResourcePublishOpenAPI [Privileged:ClusterAdmin]
|
|
updates the published spec when one version gets renamed [Conformance]'
|
|
description: Register a custom resource definition with multiple versions; OpenAPI
|
|
definitions MUST be published for custom resource definitions. Rename one of the
|
|
versions of the custom resource definition via a patch; OpenAPI definitions MUST
|
|
update to reflect the rename.
|
|
release: v1.16
|
|
file: test/e2e/apimachinery/crd_publish_openapi.go
|
|
- testname: Custom Resource OpenAPI Publish, with x-preserve-unknown-fields at root
|
|
codename: '[sig-api-machinery] CustomResourcePublishOpenAPI [Privileged:ClusterAdmin]
|
|
works for CRD preserving unknown fields at the schema root [Conformance]'
|
|
description: Register a custom resource definition with x-preserve-unknown-fields
|
|
in the schema root. Attempt to create and apply a change a custom resource, via
|
|
kubectl; client-side validation MUST accept unknown properties. Attempt kubectl
|
|
explain; the output MUST show the custom resource KIND.
|
|
release: v1.16
|
|
file: test/e2e/apimachinery/crd_publish_openapi.go
|
|
- testname: Custom Resource OpenAPI Publish, with x-preserve-unknown-fields in embedded
|
|
object
|
|
codename: '[sig-api-machinery] CustomResourcePublishOpenAPI [Privileged:ClusterAdmin]
|
|
works for CRD preserving unknown fields in an embedded object [Conformance]'
|
|
description: Register a custom resource definition with x-preserve-unknown-fields
|
|
in an embedded object. Attempt to create and apply a change a custom resource,
|
|
via kubectl; client-side validation MUST accept unknown properties. Attempt kubectl
|
|
explain; the output MUST show that x-preserve-unknown-properties is used on the
|
|
nested field.
|
|
release: v1.16
|
|
file: test/e2e/apimachinery/crd_publish_openapi.go
|
|
- testname: Custom Resource OpenAPI Publish, with validation schema
|
|
codename: '[sig-api-machinery] CustomResourcePublishOpenAPI [Privileged:ClusterAdmin]
|
|
works for CRD with validation schema [Conformance]'
|
|
description: Register a custom resource definition with a validating schema consisting
|
|
of objects, arrays and primitives. Attempt to create and apply a change a custom
|
|
resource using valid properties, via kubectl; client-side validation MUST pass.
|
|
Attempt both operations with unknown properties and without required properties;
|
|
client-side validation MUST reject the operations. Attempt kubectl explain; the
|
|
output MUST explain the custom resource properties. Attempt kubectl explain on
|
|
custom resource properties; the output MUST explain the nested custom resource
|
|
properties.
|
|
release: v1.16
|
|
file: test/e2e/apimachinery/crd_publish_openapi.go
|
|
- testname: Custom Resource OpenAPI Publish, with x-preserve-unknown-fields in object
|
|
codename: '[sig-api-machinery] CustomResourcePublishOpenAPI [Privileged:ClusterAdmin]
|
|
works for CRD without validation schema [Conformance]'
|
|
description: Register a custom resource definition with x-preserve-unknown-fields
|
|
in the top level object. Attempt to create and apply a change a custom resource,
|
|
via kubectl; client-side validation MUST accept unknown properties. Attempt kubectl
|
|
explain; the output MUST contain a valid DESCRIPTION stanza.
|
|
release: v1.16
|
|
file: test/e2e/apimachinery/crd_publish_openapi.go
|
|
- testname: Custom Resource OpenAPI Publish, varying groups
|
|
codename: '[sig-api-machinery] CustomResourcePublishOpenAPI [Privileged:ClusterAdmin]
|
|
works for multiple CRDs of different groups [Conformance]'
|
|
description: Register multiple custom resource definitions spanning different groups
|
|
and versions; OpenAPI definitions MUST be published for custom resource definitions.
|
|
release: v1.16
|
|
file: test/e2e/apimachinery/crd_publish_openapi.go
|
|
- testname: Custom Resource OpenAPI Publish, varying kinds
|
|
codename: '[sig-api-machinery] CustomResourcePublishOpenAPI [Privileged:ClusterAdmin]
|
|
works for multiple CRDs of same group and version but different kinds [Conformance]'
|
|
description: Register multiple custom resource definitions in the same group and
|
|
version but spanning different kinds; OpenAPI definitions MUST be published for
|
|
custom resource definitions.
|
|
release: v1.16
|
|
file: test/e2e/apimachinery/crd_publish_openapi.go
|
|
- testname: Custom Resource OpenAPI Publish, varying versions
|
|
codename: '[sig-api-machinery] CustomResourcePublishOpenAPI [Privileged:ClusterAdmin]
|
|
works for multiple CRDs of same group but different versions [Conformance]'
|
|
description: Register a custom resource definition with multiple versions; OpenAPI
|
|
definitions MUST be published for custom resource definitions.
|
|
release: v1.16
|
|
file: test/e2e/apimachinery/crd_publish_openapi.go
|
|
- testname: Discovery, confirm the PreferredVersion for each api group
|
|
codename: '[sig-api-machinery] Discovery should validate PreferredVersion for each
|
|
APIGroup [Conformance]'
|
|
description: Ensure that a list of apis is retrieved. Each api group found MUST
|
|
return a valid PreferredVersion unless the group suffix is example.com.
|
|
release: v1.19
|
|
file: test/e2e/apimachinery/discovery.go
|
|
- testname: Garbage Collector, delete deployment, propagation policy background
|
|
codename: '[sig-api-machinery] Garbage collector should delete RS created by deployment
|
|
when not orphaning [Conformance]'
|
|
description: Create a deployment with a replicaset. Once replicaset is created ,
|
|
delete the deployment with deleteOptions.PropagationPolicy set to Background.
|
|
Deleting the deployment MUST delete the replicaset created by the deployment and
|
|
also the Pods that belong to the deployments MUST be deleted.
|
|
release: v1.9
|
|
file: test/e2e/apimachinery/garbage_collector.go
|
|
- testname: Garbage Collector, delete replication controller, propagation policy background
|
|
codename: '[sig-api-machinery] Garbage collector should delete pods created by rc
|
|
when not orphaning [Conformance]'
|
|
description: Create a replication controller with 2 Pods. Once RC is created and
|
|
the first Pod is created, delete RC with deleteOptions.PropagationPolicy set to
|
|
Background. Deleting the Replication Controller MUST cause pods created by that
|
|
RC to be deleted.
|
|
release: v1.9
|
|
file: test/e2e/apimachinery/garbage_collector.go
|
|
- testname: Garbage Collector, delete replication controller, after owned pods
|
|
codename: '[sig-api-machinery] Garbage collector should keep the rc around until
|
|
all its pods are deleted if the deleteOptions says so [Conformance]'
|
|
description: Create a replication controller with maximum allocatable Pods between
|
|
10 and 100 replicas. Once RC is created and the all Pods are created, delete RC
|
|
with deleteOptions.PropagationPolicy set to Foreground. Deleting the Replication
|
|
Controller MUST cause pods created by that RC to be deleted before the RC is deleted.
|
|
release: v1.9
|
|
file: test/e2e/apimachinery/garbage_collector.go
|
|
- testname: Garbage Collector, dependency cycle
|
|
codename: '[sig-api-machinery] Garbage collector should not be blocked by dependency
|
|
circle [Conformance]'
|
|
description: Create three pods, patch them with Owner references such that pod1
|
|
has pod3, pod2 has pod1 and pod3 has pod2 as owner references respectively. Delete
|
|
pod1 MUST delete all pods. The dependency cycle MUST not block the garbage collection.
|
|
release: v1.9
|
|
file: test/e2e/apimachinery/garbage_collector.go
|
|
- testname: Garbage Collector, multiple owners
|
|
codename: '[sig-api-machinery] Garbage collector should not delete dependents that
|
|
have both valid owner and owner that''s waiting for dependents to be deleted [Conformance]'
|
|
description: Create a replication controller RC1, with maximum allocatable Pods
|
|
between 10 and 100 replicas. Create second replication controller RC2 and set
|
|
RC2 as owner for half of those replicas. Once RC1 is created and the all Pods
|
|
are created, delete RC1 with deleteOptions.PropagationPolicy set to Foreground.
|
|
Half of the Pods that has RC2 as owner MUST not be deleted but have a deletion
|
|
timestamp. Deleting the Replication Controller MUST not delete Pods that are owned
|
|
by multiple replication controllers.
|
|
release: v1.9
|
|
file: test/e2e/apimachinery/garbage_collector.go
|
|
- testname: Garbage Collector, delete deployment, propagation policy orphan
|
|
codename: '[sig-api-machinery] Garbage collector should orphan RS created by deployment
|
|
when deleteOptions.PropagationPolicy is Orphan [Conformance]'
|
|
description: Create a deployment with a replicaset. Once replicaset is created ,
|
|
delete the deployment with deleteOptions.PropagationPolicy set to Orphan. Deleting
|
|
the deployment MUST cause the replicaset created by the deployment to be orphaned,
|
|
also the Pods created by the deployments MUST be orphaned.
|
|
release: v1.9
|
|
file: test/e2e/apimachinery/garbage_collector.go
|
|
- testname: Garbage Collector, delete replication controller, propagation policy orphan
|
|
codename: '[sig-api-machinery] Garbage collector should orphan pods created by rc
|
|
if delete options say so [Conformance]'
|
|
description: Create a replication controller with maximum allocatable Pods between
|
|
10 and 100 replicas. Once RC is created and the all Pods are created, delete RC
|
|
with deleteOptions.PropagationPolicy set to Orphan. Deleting the Replication Controller
|
|
MUST cause pods created by that RC to be orphaned.
|
|
release: v1.9
|
|
file: test/e2e/apimachinery/garbage_collector.go
|
|
- testname: namespace-deletion-removes-pods
|
|
codename: '[sig-api-machinery] Namespaces [Serial] should ensure that all pods are
|
|
removed when a namespace is deleted [Conformance]'
|
|
description: Ensure that if a namespace is deleted then all pods are removed from
|
|
that namespace.
|
|
release: v1.11
|
|
file: test/e2e/apimachinery/namespace.go
|
|
- testname: namespace-deletion-removes-services
|
|
codename: '[sig-api-machinery] Namespaces [Serial] should ensure that all services
|
|
are removed when a namespace is deleted [Conformance]'
|
|
description: Ensure that if a namespace is deleted then all services are removed
|
|
from that namespace.
|
|
release: v1.11
|
|
file: test/e2e/apimachinery/namespace.go
|
|
- testname: Namespace patching
|
|
codename: '[sig-api-machinery] Namespaces [Serial] should patch a Namespace [Conformance]'
|
|
description: A Namespace is created. The Namespace is patched. The Namespace and
|
|
MUST now include the new Label.
|
|
release: v1.18
|
|
file: test/e2e/apimachinery/namespace.go
|
|
- testname: ResourceQuota, update and delete
|
|
codename: '[sig-api-machinery] ResourceQuota should be able to update and delete
|
|
ResourceQuota. [Conformance]'
|
|
description: Create a ResourceQuota for CPU and Memory quota limits. Creation MUST
|
|
be successful. When ResourceQuota is updated to modify CPU and Memory quota limits,
|
|
update MUST succeed with updated values for CPU and Memory limits. When ResourceQuota
|
|
is deleted, it MUST not be available in the namespace.
|
|
release: v1.16
|
|
file: test/e2e/apimachinery/resource_quota.go
|
|
- testname: ResourceQuota, object count quota, configmap
|
|
codename: '[sig-api-machinery] ResourceQuota should create a ResourceQuota and capture
|
|
the life of a configMap. [Conformance]'
|
|
description: Create a ResourceQuota. Creation MUST be successful and its ResourceQuotaStatus
|
|
MUST match to expected used and total allowed resource quota count within namespace.
|
|
Create a ConfigMap. Its creation MUST be successful and resource usage count against
|
|
the ConfigMap object MUST be captured in ResourceQuotaStatus of the ResourceQuota.
|
|
Delete the ConfigMap. Deletion MUST succeed and resource usage count against the
|
|
ConfigMap object MUST be released from ResourceQuotaStatus of the ResourceQuota.
|
|
release: v1.16
|
|
file: test/e2e/apimachinery/resource_quota.go
|
|
- testname: ResourceQuota, object count quota, pod
|
|
codename: '[sig-api-machinery] ResourceQuota should create a ResourceQuota and capture
|
|
the life of a pod. [Conformance]'
|
|
description: Create a ResourceQuota. Creation MUST be successful and its ResourceQuotaStatus
|
|
MUST match to expected used and total allowed resource quota count within namespace.
|
|
Create a Pod with resource request count for CPU, Memory, EphemeralStorage and
|
|
ExtendedResourceName. Pod creation MUST be successful and respective resource
|
|
usage count MUST be captured in ResourceQuotaStatus of the ResourceQuota. Create
|
|
another Pod with resource request exceeding remaining quota. Pod creation MUST
|
|
fail as the request exceeds ResourceQuota limits. Update the successfully created
|
|
pod's resource requests. Updation MUST fail as a Pod can not dynamically update
|
|
its resource requirements. Delete the successfully created Pod. Pod Deletion MUST
|
|
be scuccessful and it MUST release the allocated resource counts from ResourceQuotaStatus
|
|
of the ResourceQuota.
|
|
release: v1.16
|
|
file: test/e2e/apimachinery/resource_quota.go
|
|
- testname: ResourceQuota, object count quota, replicaSet
|
|
codename: '[sig-api-machinery] ResourceQuota should create a ResourceQuota and capture
|
|
the life of a replica set. [Conformance]'
|
|
description: Create a ResourceQuota. Creation MUST be successful and its ResourceQuotaStatus
|
|
MUST match to expected used and total allowed resource quota count within namespace.
|
|
Create a ReplicaSet. Its creation MUST be successful and resource usage count
|
|
against the ReplicaSet object MUST be captured in ResourceQuotaStatus of the ResourceQuota.
|
|
Delete the ReplicaSet. Deletion MUST succeed and resource usage count against
|
|
the ReplicaSet object MUST be released from ResourceQuotaStatus of the ResourceQuota.
|
|
release: v1.16
|
|
file: test/e2e/apimachinery/resource_quota.go
|
|
- testname: ResourceQuota, object count quota, replicationController
|
|
codename: '[sig-api-machinery] ResourceQuota should create a ResourceQuota and capture
|
|
the life of a replication controller. [Conformance]'
|
|
description: Create a ResourceQuota. Creation MUST be successful and its ResourceQuotaStatus
|
|
MUST match to expected used and total allowed resource quota count within namespace.
|
|
Create a ReplicationController. Its creation MUST be successful and resource usage
|
|
count against the ReplicationController object MUST be captured in ResourceQuotaStatus
|
|
of the ResourceQuota. Delete the ReplicationController. Deletion MUST succeed
|
|
and resource usage count against the ReplicationController object MUST be released
|
|
from ResourceQuotaStatus of the ResourceQuota.
|
|
release: v1.16
|
|
file: test/e2e/apimachinery/resource_quota.go
|
|
- testname: ResourceQuota, object count quota, secret
|
|
codename: '[sig-api-machinery] ResourceQuota should create a ResourceQuota and capture
|
|
the life of a secret. [Conformance]'
|
|
description: Create a ResourceQuota. Creation MUST be successful and its ResourceQuotaStatus
|
|
MUST match to expected used and total allowed resource quota count within namespace.
|
|
Create a Secret. Its creation MUST be successful and resource usage count against
|
|
the Secret object and resourceQuota object MUST be captured in ResourceQuotaStatus
|
|
of the ResourceQuota. Delete the Secret. Deletion MUST succeed and resource usage
|
|
count against the Secret object MUST be released from ResourceQuotaStatus of the
|
|
ResourceQuota.
|
|
release: v1.16
|
|
file: test/e2e/apimachinery/resource_quota.go
|
|
- testname: ResourceQuota, object count quota, service
|
|
codename: '[sig-api-machinery] ResourceQuota should create a ResourceQuota and capture
|
|
the life of a service. [Conformance]'
|
|
description: Create a ResourceQuota. Creation MUST be successful and its ResourceQuotaStatus
|
|
MUST match to expected used and total allowed resource quota count within namespace.
|
|
Create a Service. Its creation MUST be successful and resource usage count against
|
|
the Service object and resourceQuota object MUST be captured in ResourceQuotaStatus
|
|
of the ResourceQuota. Delete the Service. Deletion MUST succeed and resource usage
|
|
count against the Service object MUST be released from ResourceQuotaStatus of
|
|
the ResourceQuota.
|
|
release: v1.16
|
|
file: test/e2e/apimachinery/resource_quota.go
|
|
- testname: ResourceQuota, object count quota, resourcequotas
|
|
codename: '[sig-api-machinery] ResourceQuota should create a ResourceQuota and ensure
|
|
its status is promptly calculated. [Conformance]'
|
|
description: Create a ResourceQuota. Creation MUST be successful and its ResourceQuotaStatus
|
|
MUST match to expected used and total allowed resource quota count within namespace.
|
|
release: v1.16
|
|
file: test/e2e/apimachinery/resource_quota.go
|
|
- testname: ResourceQuota, quota scope, BestEffort and NotBestEffort scope
|
|
codename: '[sig-api-machinery] ResourceQuota should verify ResourceQuota with best
|
|
effort scope. [Conformance]'
|
|
description: Create two ResourceQuotas, one with 'BestEffort' scope and another
|
|
with 'NotBestEffort' scope. Creation MUST be successful and their ResourceQuotaStatus
|
|
MUST match to expected used and total allowed resource quota count within namespace.
|
|
Create a 'BestEffort' Pod by not explicitly specifying resource limits and requests.
|
|
Pod creation MUST be successful and usage count MUST be captured in ResourceQuotaStatus
|
|
of 'BestEffort' scoped ResourceQuota but MUST NOT in 'NotBestEffort' scoped ResourceQuota.
|
|
Delete the Pod. Pod deletion MUST succeed and Pod resource usage count MUST be
|
|
released from ResourceQuotaStatus of 'BestEffort' scoped ResourceQuota. Create
|
|
a 'NotBestEffort' Pod by explicitly specifying resource limits and requests. Pod
|
|
creation MUST be successful and usage count MUST be captured in ResourceQuotaStatus
|
|
of 'NotBestEffort' scoped ResourceQuota but MUST NOT in 'BestEffort' scoped ResourceQuota.
|
|
Delete the Pod. Pod deletion MUST succeed and Pod resource usage count MUST be
|
|
released from ResourceQuotaStatus of 'NotBestEffort' scoped ResourceQuota.
|
|
release: v1.16
|
|
file: test/e2e/apimachinery/resource_quota.go
|
|
- testname: ResourceQuota, quota scope, Terminating and NotTerminating scope
|
|
codename: '[sig-api-machinery] ResourceQuota should verify ResourceQuota with terminating
|
|
scopes. [Conformance]'
|
|
description: Create two ResourceQuotas, one with 'Terminating' scope and another
|
|
'NotTerminating' scope. Request and the limit counts for CPU and Memory resources
|
|
are set for the ResourceQuota. Creation MUST be successful and their ResourceQuotaStatus
|
|
MUST match to expected used and total allowed resource quota count within namespace.
|
|
Create a Pod with specified CPU and Memory ResourceRequirements fall within quota
|
|
limits. Pod creation MUST be successful and usage count MUST be captured in ResourceQuotaStatus
|
|
of 'NotTerminating' scoped ResourceQuota but MUST NOT in 'Terminating' scoped
|
|
ResourceQuota. Delete the Pod. Pod deletion MUST succeed and Pod resource usage
|
|
count MUST be released from ResourceQuotaStatus of 'NotTerminating' scoped ResourceQuota.
|
|
Create a pod with specified activeDeadlineSeconds and resourceRequirements for
|
|
CPU and Memory fall within quota limits. Pod creation MUST be successful and usage
|
|
count MUST be captured in ResourceQuotaStatus of 'Terminating' scoped ResourceQuota
|
|
but MUST NOT in 'NotTerminating' scoped ResourceQuota. Delete the Pod. Pod deletion
|
|
MUST succeed and Pod resource usage count MUST be released from ResourceQuotaStatus
|
|
of 'Terminating' scoped ResourceQuota.
|
|
release: v1.16
|
|
file: test/e2e/apimachinery/resource_quota.go
|
|
- testname: API metadata HTTP return
|
|
codename: '[sig-api-machinery] Servers with support for Table transformation should
|
|
return a 406 for a backend which does not implement metadata [Conformance]'
|
|
description: Issue a HTTP request to the API. HTTP request MUST return a HTTP status
|
|
code of 406.
|
|
release: v1.16
|
|
file: test/e2e/apimachinery/table_conversion.go
|
|
- testname: watch-configmaps-closed-and-restarted
|
|
codename: '[sig-api-machinery] Watchers should be able to restart watching from
|
|
the last resource version observed by the previous watch [Conformance]'
|
|
description: Ensure that a watch can be reopened from the last resource version
|
|
observed by the previous watch, and it will continue delivering notifications
|
|
from that point in time.
|
|
release: v1.11
|
|
file: test/e2e/apimachinery/watch.go
|
|
- testname: watch-configmaps-from-resource-version
|
|
codename: '[sig-api-machinery] Watchers should be able to start watching from a
|
|
specific resource version [Conformance]'
|
|
description: Ensure that a watch can be opened from a particular resource version
|
|
in the past and only notifications happening after that resource version are observed.
|
|
release: v1.11
|
|
file: test/e2e/apimachinery/watch.go
|
|
- testname: watch-configmaps-with-multiple-watchers
|
|
codename: '[sig-api-machinery] Watchers should observe add, update, and delete watch
|
|
notifications on configmaps [Conformance]'
|
|
description: Ensure that multiple watchers are able to receive all add, update,
|
|
and delete notifications on configmaps that match a label selector and do not
|
|
receive notifications for configmaps which do not match that label selector.
|
|
release: v1.11
|
|
file: test/e2e/apimachinery/watch.go
|
|
- testname: watch-configmaps-label-changed
|
|
codename: '[sig-api-machinery] Watchers should observe an object deletion if it
|
|
stops meeting the requirements of the selector [Conformance]'
|
|
description: Ensure that a watched object stops meeting the requirements of a watch's
|
|
selector, the watch will observe a delete, and will not observe notifications
|
|
for that object until it meets the selector's requirements again.
|
|
release: v1.11
|
|
file: test/e2e/apimachinery/watch.go
|
|
- testname: watch-consistency
|
|
codename: '[sig-api-machinery] Watchers should receive events on concurrent watches
|
|
in same order [Conformance]'
|
|
description: Ensure that concurrent watches are consistent with each other by initiating
|
|
an additional watch for events received from the first watch, initiated at the
|
|
resource version of the event, and checking that all resource versions of all
|
|
events match. Events are produced from writes on a background goroutine.
|
|
release: v1.15
|
|
file: test/e2e/apimachinery/watch.go
|
|
- testname: Confirm a server version
|
|
codename: '[sig-api-machinery] server version should find the server version [Conformance]'
|
|
description: Ensure that an API server version can be retrieved. Both the major
|
|
and minor versions MUST only be an integer.
|
|
release: v1.19
|
|
file: test/e2e/apimachinery/server_version.go
|
|
- testname: CronJob Suspend
|
|
codename: '[sig-apps] CronJob should not schedule jobs when suspended [Slow] [Conformance]'
|
|
description: CronJob MUST support suspension, which suppresses creation of new jobs.
|
|
release: v1.21
|
|
file: test/e2e/apps/cronjob.go
|
|
- testname: CronJob FrobidConcurrent
|
|
codename: '[sig-apps] CronJob should not schedule new jobs when ForbidConcurrent
|
|
[Slow] [Conformance]'
|
|
description: CronJob MUST support ForbidConcurrent policy, allowing to run single,
|
|
previous job at the time.
|
|
release: v1.21
|
|
file: test/e2e/apps/cronjob.go
|
|
- testname: CronJob ReplaceConcurrent
|
|
codename: '[sig-apps] CronJob should replace jobs when ReplaceConcurrent [Conformance]'
|
|
description: CronJob MUST support ReplaceConcurrent policy, allowing to run single,
|
|
newer job at the time.
|
|
release: v1.21
|
|
file: test/e2e/apps/cronjob.go
|
|
- testname: CronJob AllowConcurrent
|
|
codename: '[sig-apps] CronJob should schedule multiple jobs concurrently [Conformance]'
|
|
description: CronJob MUST support AllowConcurrent policy, allowing to run multiple
|
|
jobs at the same time.
|
|
release: v1.21
|
|
file: test/e2e/apps/cronjob.go
|
|
- testname: CronJob API Operations
|
|
codename: '[sig-apps] CronJob should support CronJob API operations [Conformance]'
|
|
description: ' CronJob MUST support create, get, list, watch, update, patch, delete,
|
|
and deletecollection. CronJob/status MUST support get, update and patch.'
|
|
release: v1.21
|
|
file: test/e2e/apps/cronjob.go
|
|
- testname: DaemonSet, list and delete a collection of DaemonSets
|
|
codename: '[sig-apps] Daemon set [Serial] should list and delete a collection of
|
|
DaemonSets [Conformance]'
|
|
description: When a DaemonSet is created it MUST succeed. It MUST succeed when listing
|
|
DaemonSets via a label selector. It MUST succeed when deleting the DaemonSet via
|
|
deleteCollection.
|
|
release: v1.22
|
|
file: test/e2e/apps/daemon_set.go
|
|
- testname: DaemonSet-FailedPodCreation
|
|
codename: '[sig-apps] Daemon set [Serial] should retry creating failed daemon pods
|
|
[Conformance]'
|
|
description: A conformant Kubernetes distribution MUST create new DaemonSet Pods
|
|
when they fail.
|
|
release: v1.10
|
|
file: test/e2e/apps/daemon_set.go
|
|
- testname: DaemonSet-Rollback
|
|
codename: '[sig-apps] Daemon set [Serial] should rollback without unnecessary restarts
|
|
[Conformance]'
|
|
description: A conformant Kubernetes distribution MUST support automated, minimally
|
|
disruptive rollback of updates to a DaemonSet.
|
|
release: v1.10
|
|
file: test/e2e/apps/daemon_set.go
|
|
- testname: DaemonSet-NodeSelection
|
|
codename: '[sig-apps] Daemon set [Serial] should run and stop complex daemon [Conformance]'
|
|
description: A conformant Kubernetes distribution MUST support DaemonSet Pod node
|
|
selection via label selectors.
|
|
release: v1.10
|
|
file: test/e2e/apps/daemon_set.go
|
|
- testname: DaemonSet-Creation
|
|
codename: '[sig-apps] Daemon set [Serial] should run and stop simple daemon [Conformance]'
|
|
description: A conformant Kubernetes distribution MUST support the creation of DaemonSets.
|
|
When a DaemonSet Pod is deleted, the DaemonSet controller MUST create a replacement
|
|
Pod.
|
|
release: v1.10
|
|
file: test/e2e/apps/daemon_set.go
|
|
- testname: DaemonSet-RollingUpdate
|
|
codename: '[sig-apps] Daemon set [Serial] should update pod when spec was updated
|
|
and update strategy is RollingUpdate [Conformance]'
|
|
description: A conformant Kubernetes distribution MUST support DaemonSet RollingUpdates.
|
|
release: v1.10
|
|
file: test/e2e/apps/daemon_set.go
|
|
- testname: DaemonSet, status sub-resource
|
|
codename: '[sig-apps] Daemon set [Serial] should verify changes to a daemon set
|
|
status [Conformance]'
|
|
description: When a DaemonSet is created it MUST succeed. Attempt to read, update
|
|
and patch its status sub-resource; all mutating sub-resource operations MUST be
|
|
visible to subsequent reads.
|
|
release: v1.22
|
|
file: test/e2e/apps/daemon_set.go
|
|
- testname: Deployment, completes the scaling of a Deployment subresource
|
|
codename: '[sig-apps] Deployment Deployment should have a working scale subresource
|
|
[Conformance]'
|
|
description: Create a Deployment with a single Pod. The Pod MUST be verified that
|
|
it is running. The Deployment MUST get and verify the scale subresource count.
|
|
The Deployment MUST update and verify the scale subresource. The Deployment MUST
|
|
patch and verify a scale subresource.
|
|
release: v1.21
|
|
file: test/e2e/apps/deployment.go
|
|
- testname: Deployment Recreate
|
|
codename: '[sig-apps] Deployment RecreateDeployment should delete old pods and create
|
|
new ones [Conformance]'
|
|
description: A conformant Kubernetes distribution MUST support the Deployment with
|
|
Recreate strategy.
|
|
release: v1.12
|
|
file: test/e2e/apps/deployment.go
|
|
- testname: Deployment RollingUpdate
|
|
codename: '[sig-apps] Deployment RollingUpdateDeployment should delete old pods
|
|
and create new ones [Conformance]'
|
|
description: A conformant Kubernetes distribution MUST support the Deployment with
|
|
RollingUpdate strategy.
|
|
release: v1.12
|
|
file: test/e2e/apps/deployment.go
|
|
- testname: Deployment RevisionHistoryLimit
|
|
codename: '[sig-apps] Deployment deployment should delete old replica sets [Conformance]'
|
|
description: A conformant Kubernetes distribution MUST clean up Deployment's ReplicaSets
|
|
based on the Deployment's `.spec.revisionHistoryLimit`.
|
|
release: v1.12
|
|
file: test/e2e/apps/deployment.go
|
|
- testname: Deployment Proportional Scaling
|
|
codename: '[sig-apps] Deployment deployment should support proportional scaling
|
|
[Conformance]'
|
|
description: A conformant Kubernetes distribution MUST support Deployment proportional
|
|
scaling, i.e. proportionally scale a Deployment's ReplicaSets when a Deployment
|
|
is scaled.
|
|
release: v1.12
|
|
file: test/e2e/apps/deployment.go
|
|
- testname: Deployment Rollover
|
|
codename: '[sig-apps] Deployment deployment should support rollover [Conformance]'
|
|
description: A conformant Kubernetes distribution MUST support Deployment rollover,
|
|
i.e. allow arbitrary number of changes to desired state during rolling update
|
|
before the rollout finishes.
|
|
release: v1.12
|
|
file: test/e2e/apps/deployment.go
|
|
- testname: Deployment, completes the lifecycle of a Deployment
|
|
codename: '[sig-apps] Deployment should run the lifecycle of a Deployment [Conformance]'
|
|
description: When a Deployment is created it MUST succeed with the required number
|
|
of replicas. It MUST succeed when the Deployment is patched. When scaling the
|
|
deployment is MUST succeed. When fetching and patching the DeploymentStatus it
|
|
MUST succeed. It MUST succeed when deleting the Deployment.
|
|
release: v1.20
|
|
file: test/e2e/apps/deployment.go
|
|
- testname: Deployment, status sub-resource
|
|
codename: '[sig-apps] Deployment should validate Deployment Status endpoints [Conformance]'
|
|
description: When a Deployment is created it MUST succeed. Attempt to read, update
|
|
and patch its status sub-resource; all mutating sub-resource operations MUST be
|
|
visible to subsequent reads.
|
|
release: v1.22
|
|
file: test/e2e/apps/deployment.go
|
|
- testname: 'PodDisruptionBudget: list and delete collection'
|
|
codename: '[sig-apps] DisruptionController Listing PodDisruptionBudgets for all
|
|
namespaces should list and delete a collection of PodDisruptionBudgets [Conformance]'
|
|
description: PodDisruptionBudget API must support list and deletecollection operations.
|
|
release: v1.21
|
|
file: test/e2e/apps/disruption.go
|
|
- testname: 'PodDisruptionBudget: block an eviction until the PDB is updated to allow
|
|
it'
|
|
codename: '[sig-apps] DisruptionController should block an eviction until the PDB
|
|
is updated to allow it [Conformance]'
|
|
description: Eviction API must block an eviction until the PDB is updated to allow
|
|
it
|
|
release: v1.22
|
|
file: test/e2e/apps/disruption.go
|
|
- testname: 'PodDisruptionBudget: create, update, patch, and delete object'
|
|
codename: '[sig-apps] DisruptionController should create a PodDisruptionBudget [Conformance]'
|
|
description: PodDisruptionBudget API must support create, update, patch, and delete
|
|
operations.
|
|
release: v1.21
|
|
file: test/e2e/apps/disruption.go
|
|
- testname: 'PodDisruptionBudget: Status updates'
|
|
codename: '[sig-apps] DisruptionController should observe PodDisruptionBudget status
|
|
updated [Conformance]'
|
|
description: Disruption controller MUST update the PDB status with how many disruptions
|
|
are allowed.
|
|
release: v1.21
|
|
file: test/e2e/apps/disruption.go
|
|
- testname: 'PodDisruptionBudget: update and patch status'
|
|
codename: '[sig-apps] DisruptionController should update/patch PodDisruptionBudget
|
|
status [Conformance]'
|
|
description: PodDisruptionBudget API must support update and patch operations on
|
|
status subresource.
|
|
release: v1.21
|
|
file: test/e2e/apps/disruption.go
|
|
- testname: Jobs, orphan pods, re-adoption
|
|
codename: '[sig-apps] Job should adopt matching orphans and release non-matching
|
|
pods [Conformance]'
|
|
description: Create a parallel job. The number of Pods MUST equal the level of parallelism.
|
|
Orphan a Pod by modifying its owner reference. The Job MUST re-adopt the orphan
|
|
pod. Modify the labels of one of the Job's Pods. The Job MUST release the Pod.
|
|
release: v1.16
|
|
file: test/e2e/apps/job.go
|
|
- testname: Jobs, active pods, graceful termination
|
|
codename: '[sig-apps] Job should delete a job [Conformance]'
|
|
description: Create a job. Ensure the active pods reflect paralellism in the namespace
|
|
and delete the job. Job MUST be deleted successfully.
|
|
release: v1.15
|
|
file: test/e2e/apps/job.go
|
|
- testname: Jobs, completion after task failure
|
|
codename: '[sig-apps] Job should run a job to completion when tasks sometimes fail
|
|
and are locally restarted [Conformance]'
|
|
description: Explicitly cause the tasks to fail once initially. After restarting,
|
|
the Job MUST execute to completion.
|
|
release: v1.16
|
|
file: test/e2e/apps/job.go
|
|
- testname: ReplicaSet, is created, Replaced and Patched
|
|
codename: '[sig-apps] ReplicaSet Replace and Patch tests [Conformance]'
|
|
description: Create a ReplicaSet (RS) with a single Pod. The Pod MUST be verified
|
|
that it is running. The RS MUST scale to two replicas and verify the scale count
|
|
The RS MUST be patched and verify that patch succeeded.
|
|
release: v1.21
|
|
file: test/e2e/apps/replica_set.go
|
|
- testname: ReplicaSet, completes the scaling of a ReplicaSet subresource
|
|
codename: '[sig-apps] ReplicaSet Replicaset should have a working scale subresource
|
|
[Conformance]'
|
|
description: Create a ReplicaSet (RS) with a single Pod. The Pod MUST be verified
|
|
that it is running. The RS MUST get and verify the scale subresource count. The
|
|
RS MUST update and verify the scale subresource. The RS MUST patch and verify
|
|
a scale subresource.
|
|
release: v1.21
|
|
file: test/e2e/apps/replica_set.go
|
|
- testname: Replica Set, adopt matching pods and release non matching pods
|
|
codename: '[sig-apps] ReplicaSet should adopt matching pods on creation and release
|
|
no longer matching pods [Conformance]'
|
|
description: A Pod is created, then a Replica Set (RS) whose label selector will
|
|
match the Pod. The RS MUST either adopt the Pod or delete and replace it with
|
|
a new Pod. When the labels on one of the Pods owned by the RS change to no longer
|
|
match the RS's label selector, the RS MUST release the Pod and update the Pod's
|
|
owner references
|
|
release: v1.13
|
|
file: test/e2e/apps/replica_set.go
|
|
- testname: ReplicaSet, list and delete a collection of ReplicaSets
|
|
codename: '[sig-apps] ReplicaSet should list and delete a collection of ReplicaSets
|
|
[Conformance]'
|
|
description: When a ReplicaSet is created it MUST succeed. It MUST succeed when
|
|
listing ReplicaSets via a label selector. It MUST succeed when deleting the ReplicaSet
|
|
via deleteCollection.
|
|
release: v1.22
|
|
file: test/e2e/apps/replica_set.go
|
|
- testname: Replica Set, run basic image
|
|
codename: '[sig-apps] ReplicaSet should serve a basic image on each replica with
|
|
a public image [Conformance]'
|
|
description: Create a ReplicaSet with a Pod and a single Container. Make sure that
|
|
the Pod is running. Pod SHOULD send a valid response when queried.
|
|
release: v1.9
|
|
file: test/e2e/apps/replica_set.go
|
|
- testname: ReplicaSet, status sub-resource
|
|
codename: '[sig-apps] ReplicaSet should validate Replicaset Status endpoints [Conformance]'
|
|
description: Create a ReplicaSet resource which MUST succeed. Attempt to read, update
|
|
and patch its status sub-resource; all mutating sub-resource operations MUST be
|
|
visible to subsequent reads.
|
|
release: v1.22
|
|
file: test/e2e/apps/replica_set.go
|
|
- testname: Replication Controller, adopt matching pods
|
|
codename: '[sig-apps] ReplicationController should adopt matching pods on creation
|
|
[Conformance]'
|
|
description: An ownerless Pod is created, then a Replication Controller (RC) is
|
|
created whose label selector will match the Pod. The RC MUST either adopt the
|
|
Pod or delete and replace it with a new Pod
|
|
release: v1.13
|
|
file: test/e2e/apps/rc.go
|
|
- testname: Replication Controller, release pods
|
|
codename: '[sig-apps] ReplicationController should release no longer matching pods
|
|
[Conformance]'
|
|
description: A Replication Controller (RC) is created, and its Pods are created.
|
|
When the labels on one of the Pods change to no longer match the RC's label selector,
|
|
the RC MUST release the Pod and update the Pod's owner references.
|
|
release: v1.13
|
|
file: test/e2e/apps/rc.go
|
|
- testname: Replication Controller, run basic image
|
|
codename: '[sig-apps] ReplicationController should serve a basic image on each replica
|
|
with a public image [Conformance]'
|
|
description: Replication Controller MUST create a Pod with Basic Image and MUST
|
|
run the service with the provided image. Image MUST be tested by dialing into
|
|
the service listening through TCP, UDP and HTTP.
|
|
release: v1.9
|
|
file: test/e2e/apps/rc.go
|
|
- testname: Replication Controller, check for issues like exceeding allocated quota
|
|
codename: '[sig-apps] ReplicationController should surface a failure condition on
|
|
a common issue like exceeded quota [Conformance]'
|
|
description: Attempt to create a Replication Controller with pods exceeding the
|
|
namespace quota. The creation MUST fail
|
|
release: v1.15
|
|
file: test/e2e/apps/rc.go
|
|
- testname: Replication Controller, lifecycle
|
|
codename: '[sig-apps] ReplicationController should test the lifecycle of a ReplicationController
|
|
[Conformance]'
|
|
description: A Replication Controller (RC) is created, read, patched, and deleted
|
|
with verification.
|
|
release: v1.20
|
|
file: test/e2e/apps/rc.go
|
|
- testname: StatefulSet, Burst Scaling
|
|
codename: '[sig-apps] StatefulSet Basic StatefulSet functionality [StatefulSetBasic]
|
|
Burst scaling should run to completion even with unhealthy pods [Slow] [Conformance]'
|
|
description: StatefulSet MUST support the Parallel PodManagementPolicy for burst
|
|
scaling. This test does not depend on a preexisting default StorageClass or a
|
|
dynamic provisioner.
|
|
release: v1.9
|
|
file: test/e2e/apps/statefulset.go
|
|
- testname: StatefulSet, Scaling
|
|
codename: '[sig-apps] StatefulSet Basic StatefulSet functionality [StatefulSetBasic]
|
|
Scaling should happen in predictable order and halt if any stateful pod is unhealthy
|
|
[Slow] [Conformance]'
|
|
description: StatefulSet MUST create Pods in ascending order by ordinal index when
|
|
scaling up, and delete Pods in descending order when scaling down. Scaling up
|
|
or down MUST pause if any Pods belonging to the StatefulSet are unhealthy. This
|
|
test does not depend on a preexisting default StorageClass or a dynamic provisioner.
|
|
release: v1.9
|
|
file: test/e2e/apps/statefulset.go
|
|
- testname: StatefulSet, Recreate Failed Pod
|
|
codename: '[sig-apps] StatefulSet Basic StatefulSet functionality [StatefulSetBasic]
|
|
Should recreate evicted statefulset [Conformance]'
|
|
description: StatefulSet MUST delete and recreate Pods it owns that go into a Failed
|
|
state, such as when they are rejected or evicted by a Node. This test does not
|
|
depend on a preexisting default StorageClass or a dynamic provisioner.
|
|
release: v1.9
|
|
file: test/e2e/apps/statefulset.go
|
|
- testname: StatefulSet resource Replica scaling
|
|
codename: '[sig-apps] StatefulSet Basic StatefulSet functionality [StatefulSetBasic]
|
|
should have a working scale subresource [Conformance]'
|
|
description: Create a StatefulSet resource. Newly created StatefulSet resource MUST
|
|
have a scale of one. Bring the scale of the StatefulSet resource up to two. StatefulSet
|
|
scale MUST be at two replicas.
|
|
release: v1.16, v1.21
|
|
file: test/e2e/apps/statefulset.go
|
|
- testname: StatefulSet, list, patch and delete a collection of StatefulSets
|
|
codename: '[sig-apps] StatefulSet Basic StatefulSet functionality [StatefulSetBasic]
|
|
should list, patch and delete a collection of StatefulSets [Conformance]'
|
|
description: When a StatefulSet is created it MUST succeed. It MUST succeed when
|
|
listing StatefulSets via a label selector. It MUST succeed when patching a StatefulSet.
|
|
It MUST succeed when deleting the StatefulSet via deleteCollection.
|
|
release: v1.22
|
|
file: test/e2e/apps/statefulset.go
|
|
- testname: StatefulSet, Rolling Update with Partition
|
|
codename: '[sig-apps] StatefulSet Basic StatefulSet functionality [StatefulSetBasic]
|
|
should perform canary updates and phased rolling updates of template modifications
|
|
[Conformance]'
|
|
description: StatefulSet's RollingUpdate strategy MUST support the Partition parameter
|
|
for canaries and phased rollouts. If a Pod is deleted while a rolling update is
|
|
in progress, StatefulSet MUST restore the Pod without violating the Partition.
|
|
This test does not depend on a preexisting default StorageClass or a dynamic provisioner.
|
|
release: v1.9
|
|
file: test/e2e/apps/statefulset.go
|
|
- testname: StatefulSet, Rolling Update
|
|
codename: '[sig-apps] StatefulSet Basic StatefulSet functionality [StatefulSetBasic]
|
|
should perform rolling updates and roll backs of template modifications [Conformance]'
|
|
description: StatefulSet MUST support the RollingUpdate strategy to automatically
|
|
replace Pods one at a time when the Pod template changes. The StatefulSet's status
|
|
MUST indicate the CurrentRevision and UpdateRevision. If the template is changed
|
|
to match a prior revision, StatefulSet MUST detect this as a rollback instead
|
|
of creating a new revision. This test does not depend on a preexisting default
|
|
StorageClass or a dynamic provisioner.
|
|
release: v1.9
|
|
file: test/e2e/apps/statefulset.go
|
|
- testname: StatefulSet, status sub-resource
|
|
codename: '[sig-apps] StatefulSet Basic StatefulSet functionality [StatefulSetBasic]
|
|
should validate Statefulset Status endpoints [Conformance]'
|
|
description: When a StatefulSet is created it MUST succeed. Attempt to read, update
|
|
and patch its status sub-resource; all mutating sub-resource operations MUST be
|
|
visible to subsequent reads.
|
|
release: v1.22
|
|
file: test/e2e/apps/statefulset.go
|
|
- testname: CertificateSigningRequest API
|
|
codename: '[sig-auth] Certificates API [Privileged:ClusterAdmin] should support
|
|
CSR API operations [Conformance]'
|
|
description: ' The certificates.k8s.io API group MUST exists in the /apis discovery
|
|
document. The certificates.k8s.io/v1 API group/version MUST exist in the /apis/certificates.k8s.io
|
|
discovery document. The certificatesigningrequests, certificatesigningrequests/approval,
|
|
and certificatesigningrequests/status resources MUST exist in the /apis/certificates.k8s.io/v1
|
|
discovery document. The certificatesigningrequests resource must support create,
|
|
get, list, watch, update, patch, delete, and deletecollection. The certificatesigningrequests/approval
|
|
resource must support get, update, patch. The certificatesigningrequests/status
|
|
resource must support get, update, patch.'
|
|
release: v1.19
|
|
file: test/e2e/auth/certificates.go
|
|
- testname: OIDC Discovery (ServiceAccountIssuerDiscovery)
|
|
codename: '[sig-auth] ServiceAccounts ServiceAccountIssuerDiscovery should support
|
|
OIDC discovery of service account issuer [Conformance]'
|
|
description: Ensure kube-apiserver serves correct OIDC discovery endpoints by deploying
|
|
a Pod that verifies its own token against these endpoints.
|
|
release: v1.21
|
|
file: test/e2e/auth/service_accounts.go
|
|
- testname: Service account tokens auto mount optionally
|
|
codename: '[sig-auth] ServiceAccounts should allow opting out of API token automount [Conformance]'
|
|
description: Ensure that Service Account keys are mounted into the Pod only when
|
|
AutoMountServiceToken is not set to false. We test the following scenarios here.
|
|
1. Create Pod, Pod Spec has AutomountServiceAccountToken set to nil a) Service
|
|
Account with default value, b) Service Account is an configured AutomountServiceAccountToken
|
|
set to true, c) Service Account is an configured AutomountServiceAccountToken
|
|
set to false 2. Create Pod, Pod Spec has AutomountServiceAccountToken set to true
|
|
a) Service Account with default value, b) Service Account is configured with AutomountServiceAccountToken
|
|
set to true, c) Service Account is configured with AutomountServiceAccountToken
|
|
set to false 3. Create Pod, Pod Spec has AutomountServiceAccountToken set to false
|
|
a) Service Account with default value, b) Service Account is configured with AutomountServiceAccountToken
|
|
set to true, c) Service Account is configured with AutomountServiceAccountToken
|
|
set to false The Containers running in these pods MUST verify that the ServiceTokenVolume
|
|
path is auto mounted only when Pod Spec has AutomountServiceAccountToken not set
|
|
to false and ServiceAccount object has AutomountServiceAccountToken not set to
|
|
false, this include test cases 1a,1b,2a,2b and 2c. In the test cases 1c,3a,3b
|
|
and 3c the ServiceTokenVolume MUST not be auto mounted.
|
|
release: v1.9
|
|
file: test/e2e/auth/service_accounts.go
|
|
- testname: RootCA ConfigMap test
|
|
codename: '[sig-auth] ServiceAccounts should guarantee kube-root-ca.crt exist in
|
|
any namespace [Conformance]'
|
|
description: Ensure every namespace exist a ConfigMap for root ca cert. 1. Created
|
|
automatically 2. Recreated if deleted 3. Reconciled if modified
|
|
release: v1.21
|
|
file: test/e2e/auth/service_accounts.go
|
|
- testname: Service Account Tokens Must AutoMount
|
|
codename: '[sig-auth] ServiceAccounts should mount an API token into pods [Conformance]'
|
|
description: Ensure that Service Account keys are mounted into the Container. Pod
|
|
contains three containers each will read Service Account token, root CA and default
|
|
namespace respectively from the default API Token Mount path. All these three
|
|
files MUST exist and the Service Account mount path MUST be auto mounted to the
|
|
Container.
|
|
release: v1.9
|
|
file: test/e2e/auth/service_accounts.go
|
|
- testname: TokenRequestProjection should mount a projected volume with token using
|
|
TokenRequest API.
|
|
codename: '[sig-auth] ServiceAccounts should mount projected service account token
|
|
[Conformance]'
|
|
description: Ensure that projected service account token is mounted.
|
|
release: v1.20
|
|
file: test/e2e/auth/service_accounts.go
|
|
- testname: ServiceAccount lifecycle test
|
|
codename: '[sig-auth] ServiceAccounts should run through the lifecycle of a ServiceAccount
|
|
[Conformance]'
|
|
description: Creates a ServiceAccount with a static Label MUST be added as shown
|
|
in watch event. Patching the ServiceAccount MUST return it's new property. Listing
|
|
the ServiceAccounts MUST return the test ServiceAccount with it's patched values.
|
|
ServiceAccount will be deleted and MUST find a deleted watch event.
|
|
release: v1.19
|
|
file: test/e2e/auth/service_accounts.go
|
|
- testname: Kubectl, guestbook application
|
|
codename: '[sig-cli] Kubectl client Guestbook application should create and stop
|
|
a working application [Conformance]'
|
|
description: Create Guestbook application that contains an agnhost primary server,
|
|
2 agnhost replicas, frontend application, frontend service and agnhost primary
|
|
service and agnhost replica service. Using frontend service, the test will write
|
|
an entry into the guestbook application which will store the entry into the backend
|
|
agnhost store. Application flow MUST work as expected and the data written MUST
|
|
be available to read.
|
|
release: v1.9
|
|
file: test/e2e/kubectl/kubectl.go
|
|
- testname: Kubectl, check version v1
|
|
codename: '[sig-cli] Kubectl client Kubectl api-versions should check if v1 is in
|
|
available api versions [Conformance]'
|
|
description: Run kubectl to get api versions, output MUST contain returned versions
|
|
with 'v1' listed.
|
|
release: v1.9
|
|
file: test/e2e/kubectl/kubectl.go
|
|
- testname: Kubectl, cluster info
|
|
codename: '[sig-cli] Kubectl client Kubectl cluster-info should check if Kubernetes
|
|
control plane services is included in cluster-info [Conformance]'
|
|
description: Call kubectl to get cluster-info, output MUST contain cluster-info
|
|
returned and Kubernetes control plane SHOULD be running.
|
|
release: v1.9
|
|
file: test/e2e/kubectl/kubectl.go
|
|
- testname: Kubectl, describe pod or rc
|
|
codename: '[sig-cli] Kubectl client Kubectl describe should check if kubectl describe
|
|
prints relevant information for rc and pods [Conformance]'
|
|
description: Deploy an agnhost controller and an agnhost service. Kubectl describe
|
|
pods SHOULD return the name, namespace, labels, state and other information as
|
|
expected. Kubectl describe on rc, service, node and namespace SHOULD also return
|
|
proper information.
|
|
release: v1.9
|
|
file: test/e2e/kubectl/kubectl.go
|
|
- testname: Kubectl, diff Deployment
|
|
codename: '[sig-cli] Kubectl client Kubectl diff should check if kubectl diff finds
|
|
a difference for Deployments [Conformance]'
|
|
description: Create a Deployment with httpd image. Declare the same Deployment with
|
|
a different image, busybox. Diff of live Deployment with declared Deployment MUST
|
|
include the difference between live and declared image.
|
|
release: v1.19
|
|
file: test/e2e/kubectl/kubectl.go
|
|
- testname: Kubectl, create service, replication controller
|
|
codename: '[sig-cli] Kubectl client Kubectl expose should create services for rc [Conformance]'
|
|
description: Create a Pod running agnhost listening to port 6379. Using kubectl
|
|
expose the agnhost primary replication controllers at port 1234. Validate that
|
|
the replication controller is listening on port 1234 and the target port is set
|
|
to 6379, port that agnhost primary is listening. Using kubectl expose the agnhost
|
|
primary as a service at port 2345. The service MUST be listening on port 2345
|
|
and the target port is set to 6379, port that agnhost primary is listening.
|
|
release: v1.9
|
|
file: test/e2e/kubectl/kubectl.go
|
|
- testname: Kubectl, label update
|
|
codename: '[sig-cli] Kubectl client Kubectl label should update the label on a resource [Conformance]'
|
|
description: When a Pod is running, update a Label using 'kubectl label' command.
|
|
The label MUST be created in the Pod. A 'kubectl get pod' with -l option on the
|
|
container MUST verify that the label can be read back. Use 'kubectl label label-'
|
|
to remove the label. 'kubectl get pod' with -l option SHOULD not list the deleted
|
|
label as the label is removed.
|
|
release: v1.9
|
|
file: test/e2e/kubectl/kubectl.go
|
|
- testname: Kubectl, logs
|
|
codename: '[sig-cli] Kubectl client Kubectl logs should be able to retrieve and
|
|
filter logs [Conformance]'
|
|
description: When a Pod is running then it MUST generate logs. Starting a Pod should
|
|
have a expected log line. Also log command options MUST work as expected and described
|
|
below. 'kubectl logs -tail=1' should generate a output of one line, the last line
|
|
in the log. 'kubectl --limit-bytes=1' should generate a single byte output. 'kubectl
|
|
--tail=1 --timestamp should generate one line with timestamp in RFC3339 format
|
|
'kubectl --since=1s' should output logs that are only 1 second older from now
|
|
'kubectl --since=24h' should output logs that are only 1 day older from now
|
|
release: v1.9
|
|
file: test/e2e/kubectl/kubectl.go
|
|
- testname: Kubectl, patch to annotate
|
|
codename: '[sig-cli] Kubectl client Kubectl patch should add annotations for pods
|
|
in rc [Conformance]'
|
|
description: Start running agnhost and a replication controller. When the pod is
|
|
running, using 'kubectl patch' command add annotations. The annotation MUST be
|
|
added to running pods and SHOULD be able to read added annotations from each of
|
|
the Pods running under the replication controller.
|
|
release: v1.9
|
|
file: test/e2e/kubectl/kubectl.go
|
|
- testname: Kubectl, replace
|
|
codename: '[sig-cli] Kubectl client Kubectl replace should update a single-container
|
|
pod''s image [Conformance]'
|
|
description: Command 'kubectl replace' on a existing Pod with a new spec MUST update
|
|
the image of the container running in the Pod. A -f option to 'kubectl replace'
|
|
SHOULD force to re-create the resource. The new Pod SHOULD have the container
|
|
with new change to the image.
|
|
release: v1.9
|
|
file: test/e2e/kubectl/kubectl.go
|
|
- testname: Kubectl, run pod
|
|
codename: '[sig-cli] Kubectl client Kubectl run pod should create a pod from an
|
|
image when restart is Never [Conformance]'
|
|
description: Command 'kubectl run' MUST create a pod, when a image name is specified
|
|
in the run command. After the run command there SHOULD be a pod that should exist
|
|
with one container running the specified image.
|
|
release: v1.9
|
|
file: test/e2e/kubectl/kubectl.go
|
|
- testname: Kubectl, server-side dry-run Pod
|
|
codename: '[sig-cli] Kubectl client Kubectl server-side dry-run should check if
|
|
kubectl can dry-run update Pods [Conformance]'
|
|
description: The command 'kubectl run' must create a pod with the specified image
|
|
name. After, the command 'kubectl patch pod -p {...} --dry-run=server' should
|
|
update the Pod with the new image name and server-side dry-run enabled. The image
|
|
name must not change.
|
|
release: v1.19
|
|
file: test/e2e/kubectl/kubectl.go
|
|
- testname: Kubectl, version
|
|
codename: '[sig-cli] Kubectl client Kubectl version should check is all data is
|
|
printed [Conformance]'
|
|
description: The command 'kubectl version' MUST return the major, minor versions, GitCommit,
|
|
etc of the Client and the Server that the kubectl is configured to connect to.
|
|
release: v1.9
|
|
file: test/e2e/kubectl/kubectl.go
|
|
- testname: Kubectl, proxy socket
|
|
codename: '[sig-cli] Kubectl client Proxy server should support --unix-socket=/path [Conformance]'
|
|
description: Start a proxy server on by running 'kubectl proxy' with --unix-socket=<some
|
|
path>. Call the proxy server by requesting api versions from http://locahost:0/api.
|
|
The proxy server MUST provide at least one version string
|
|
release: v1.9
|
|
file: test/e2e/kubectl/kubectl.go
|
|
- testname: Kubectl, proxy port zero
|
|
codename: '[sig-cli] Kubectl client Proxy server should support proxy with --port
|
|
0 [Conformance]'
|
|
description: Start a proxy server on port zero by running 'kubectl proxy' with --port=0.
|
|
Call the proxy server by requesting api versions from unix socket. The proxy server
|
|
MUST provide at least one version string.
|
|
release: v1.9
|
|
file: test/e2e/kubectl/kubectl.go
|
|
- testname: Kubectl, replication controller
|
|
codename: '[sig-cli] Kubectl client Update Demo should create and stop a replication
|
|
controller [Conformance]'
|
|
description: Create a Pod and a container with a given image. Configure replication
|
|
controller to run 2 replicas. The number of running instances of the Pod MUST
|
|
equal the number of replicas set on the replication controller which is 2.
|
|
release: v1.9
|
|
file: test/e2e/kubectl/kubectl.go
|
|
- testname: Kubectl, scale replication controller
|
|
codename: '[sig-cli] Kubectl client Update Demo should scale a replication controller [Conformance]'
|
|
description: Create a Pod and a container with a given image. Configure replication
|
|
controller to run 2 replicas. The number of running instances of the Pod MUST
|
|
equal the number of replicas set on the replication controller which is 2. Update
|
|
the replicaset to 1. Number of running instances of the Pod MUST be 1. Update
|
|
the replicaset to 2. Number of running instances of the Pod MUST be 2.
|
|
release: v1.9
|
|
file: test/e2e/kubectl/kubectl.go
|
|
- testname: New Event resource lifecycle, testing a list of events
|
|
codename: '[sig-instrumentation] Events API should delete a collection of events
|
|
[Conformance]'
|
|
description: Create a list of events, the events MUST exist. The events are deleted
|
|
and MUST NOT show up when listing all events.
|
|
release: v1.19
|
|
file: test/e2e/instrumentation/events.go
|
|
- testname: New Event resource lifecycle, testing a single event
|
|
codename: '[sig-instrumentation] Events API should ensure that an event can be fetched,
|
|
patched, deleted, and listed [Conformance]'
|
|
description: Create an event, the event MUST exist. The event is patched with a
|
|
new note, the check MUST have the update note. The event is updated with a new
|
|
series, the check MUST have the update series. The event is deleted and MUST NOT
|
|
show up when listing all events.
|
|
release: v1.19
|
|
file: test/e2e/instrumentation/events.go
|
|
- testname: Event, delete a collection
|
|
codename: '[sig-instrumentation] Events should delete a collection of events [Conformance]'
|
|
description: A set of events is created with a label selector which MUST be found
|
|
when listed. The set of events is deleted and MUST NOT show up when listed by
|
|
its label selector.
|
|
release: v1.20
|
|
file: test/e2e/instrumentation/core_events.go
|
|
- testname: Event resource lifecycle
|
|
codename: '[sig-instrumentation] Events should ensure that an event can be fetched,
|
|
patched, deleted, and listed [Conformance]'
|
|
description: Create an event, the event MUST exist. The event is patched with a
|
|
new message, the check MUST have the update message. The event is deleted and
|
|
MUST NOT show up when listing all events.
|
|
release: v1.20
|
|
file: test/e2e/instrumentation/core_events.go
|
|
- testname: DNS, cluster
|
|
codename: '[sig-network] DNS should provide /etc/hosts entries for the cluster [LinuxOnly]
|
|
[Conformance]'
|
|
description: When a Pod is created, the pod MUST be able to resolve cluster dns
|
|
entries such as kubernetes.default via /etc/hosts.
|
|
release: v1.14
|
|
file: test/e2e/network/dns.go
|
|
- testname: DNS, for ExternalName Services
|
|
codename: '[sig-network] DNS should provide DNS for ExternalName services [Conformance]'
|
|
description: Create a service with externalName. Pod MUST be able to resolve the
|
|
address for this service via CNAME. When externalName of this service is changed,
|
|
Pod MUST resolve to new DNS entry for the service. Change the service type from
|
|
externalName to ClusterIP, Pod MUST resolve DNS to the service by serving A records.
|
|
release: v1.15
|
|
file: test/e2e/network/dns.go
|
|
- testname: DNS, resolve the hostname
|
|
codename: '[sig-network] DNS should provide DNS for pods for Hostname [LinuxOnly]
|
|
[Conformance]'
|
|
description: Create a headless service with label. Create a Pod with label to match
|
|
service's label, with hostname and a subdomain same as service name. Pod MUST
|
|
be able to resolve its fully qualified domain name as well as hostname by serving
|
|
an A record at that name.
|
|
release: v1.15
|
|
file: test/e2e/network/dns.go
|
|
- testname: DNS, resolve the subdomain
|
|
codename: '[sig-network] DNS should provide DNS for pods for Subdomain [Conformance]'
|
|
description: Create a headless service with label. Create a Pod with label to match
|
|
service's label, with hostname and a subdomain same as service name. Pod MUST
|
|
be able to resolve its fully qualified domain name as well as subdomain by serving
|
|
an A record at that name.
|
|
release: v1.15
|
|
file: test/e2e/network/dns.go
|
|
- testname: DNS, services
|
|
codename: '[sig-network] DNS should provide DNS for services [Conformance]'
|
|
description: When a headless service is created, the service MUST be able to resolve
|
|
all the required service endpoints. When the service is created, any pod in the
|
|
same namespace must be able to resolve the service by all of the expected DNS
|
|
names.
|
|
release: v1.9
|
|
file: test/e2e/network/dns.go
|
|
- testname: DNS, cluster
|
|
codename: '[sig-network] DNS should provide DNS for the cluster [Conformance]'
|
|
description: When a Pod is created, the pod MUST be able to resolve cluster dns
|
|
entries such as kubernetes.default via DNS.
|
|
release: v1.9
|
|
file: test/e2e/network/dns.go
|
|
- testname: DNS, PQDN for services
|
|
codename: '[sig-network] DNS should resolve DNS of partial qualified names for services
|
|
[LinuxOnly] [Conformance]'
|
|
description: 'Create a headless service and normal service. Both the services MUST
|
|
be able to resolve partial qualified DNS entries of their service endpoints by
|
|
serving A records and SRV records. [LinuxOnly]: As Windows currently does not
|
|
support resolving PQDNs.'
|
|
release: v1.17
|
|
file: test/e2e/network/dns.go
|
|
- testname: DNS, custom dnsConfig
|
|
codename: '[sig-network] DNS should support configurable pod DNS nameservers [Conformance]'
|
|
description: Create a Pod with DNSPolicy as None and custom DNS configuration, specifying
|
|
nameservers and search path entries. Pod creation MUST be successful and provided
|
|
DNS configuration MUST be configured in the Pod.
|
|
release: v1.17
|
|
file: test/e2e/network/dns.go
|
|
- testname: EndpointSlice API
|
|
codename: '[sig-network] EndpointSlice should create Endpoints and EndpointSlices
|
|
for Pods matching a Service [Conformance]'
|
|
description: The discovery.k8s.io API group MUST exist in the /apis discovery document.
|
|
The discovery.k8s.io/v1 API group/version MUST exist in the /apis/discovery.k8s.io
|
|
discovery document. The endpointslices resource MUST exist in the /apis/discovery.k8s.io/v1
|
|
discovery document. The endpointslice controller must create EndpointSlices for
|
|
Pods mataching a Service.
|
|
release: v1.21
|
|
file: test/e2e/network/endpointslice.go
|
|
- testname: EndpointSlice API
|
|
codename: '[sig-network] EndpointSlice should create and delete Endpoints and EndpointSlices
|
|
for a Service with a selector specified [Conformance]'
|
|
description: The discovery.k8s.io API group MUST exist in the /apis discovery document.
|
|
The discovery.k8s.io/v1 API group/version MUST exist in the /apis/discovery.k8s.io
|
|
discovery document. The endpointslices resource MUST exist in the /apis/discovery.k8s.io/v1
|
|
discovery document. The endpointslice controller should create and delete EndpointSlices
|
|
for Pods matching a Service.
|
|
release: v1.21
|
|
file: test/e2e/network/endpointslice.go
|
|
- testname: EndpointSlice API
|
|
codename: '[sig-network] EndpointSlice should have Endpoints and EndpointSlices
|
|
pointing to API Server [Conformance]'
|
|
description: The discovery.k8s.io API group MUST exist in the /apis discovery document.
|
|
The discovery.k8s.io/v1 API group/version MUST exist in the /apis/discovery.k8s.io
|
|
discovery document. The endpointslices resource MUST exist in the /apis/discovery.k8s.io/v1
|
|
discovery document. The cluster MUST have a service named "kubernetes" on the
|
|
default namespace referencing the API servers. The "kubernetes.default" service
|
|
MUST have Endpoints and EndpointSlices pointing to each API server instance.
|
|
release: v1.21
|
|
file: test/e2e/network/endpointslice.go
|
|
- testname: EndpointSlice API
|
|
codename: '[sig-network] EndpointSlice should support creating EndpointSlice API
|
|
operations [Conformance]'
|
|
description: The discovery.k8s.io API group MUST exist in the /apis discovery document.
|
|
The discovery.k8s.io/v1 API group/version MUST exist in the /apis/discovery.k8s.io
|
|
discovery document. The endpointslices resource MUST exist in the /apis/discovery.k8s.io/v1
|
|
discovery document. The endpointslices resource must support create, get, list,
|
|
watch, update, patch, delete, and deletecollection.
|
|
release: v1.21
|
|
file: test/e2e/network/endpointslice.go
|
|
- testname: EndpointSlice Mirroring
|
|
codename: '[sig-network] EndpointSliceMirroring should mirror a custom Endpoints
|
|
resource through create update and delete [Conformance]'
|
|
description: The discovery.k8s.io API group MUST exist in the /apis discovery document.
|
|
The discovery.k8s.io/v1 API group/version MUST exist in the /apis/discovery.k8s.io
|
|
discovery document. The endpointslices resource MUST exist in the /apis/discovery.k8s.io/v1
|
|
discovery document. The endpointslices mirrorowing must mirror endpoint create,
|
|
update, and delete actions.
|
|
release: v1.21
|
|
file: test/e2e/network/endpointslicemirroring.go
|
|
- testname: Scheduling, HostPort matching and HostIP and Protocol not-matching
|
|
codename: '[sig-network] HostPort validates that there is no conflict between pods
|
|
with same hostPort but different hostIP and protocol [LinuxOnly] [Conformance]'
|
|
description: Pods with the same HostPort value MUST be able to be scheduled to the
|
|
same node if the HostIP or Protocol is different. This test is marked LinuxOnly
|
|
since hostNetwork is not supported on Windows.
|
|
release: v1.16, v1.21
|
|
file: test/e2e/network/hostport.go
|
|
- testname: Ingress API
|
|
codename: '[sig-network] Ingress API should support creating Ingress API operations
|
|
[Conformance]'
|
|
description: ' The networking.k8s.io API group MUST exist in the /apis discovery
|
|
document. The networking.k8s.io/v1 API group/version MUST exist in the /apis/networking.k8s.io
|
|
discovery document. The ingresses resources MUST exist in the /apis/networking.k8s.io/v1
|
|
discovery document. The ingresses resource must support create, get, list, watch,
|
|
update, patch, delete, and deletecollection. The ingresses/status resource must
|
|
support update and patch'
|
|
release: v1.19
|
|
file: test/e2e/network/ingress.go
|
|
- testname: IngressClass API
|
|
codename: '[sig-network] IngressClass API should support creating IngressClass
|
|
API operations [Conformance]'
|
|
description: ' - The networking.k8s.io API group MUST exist in the /apis discovery
|
|
document. - The networking.k8s.io/v1 API group/version MUST exist in the /apis/networking.k8s.io
|
|
discovery document. - The ingressclasses resource MUST exist in the /apis/networking.k8s.io/v1
|
|
discovery document. - The ingressclass resource must support create, get, list,
|
|
watch, update, patch, delete, and deletecollection.'
|
|
release: v1.19
|
|
file: test/e2e/network/ingressclass.go
|
|
- testname: Networking, intra pod http
|
|
codename: '[sig-network] Networking Granular Checks: Pods should function for intra-pod
|
|
communication: http [NodeConformance] [Conformance]'
|
|
description: Create a hostexec pod that is capable of curl to netcat commands. Create
|
|
a test Pod that will act as a webserver front end exposing ports 8080 for tcp
|
|
and 8081 for udp. The netserver service proxies are created on specified number
|
|
of nodes. The kubectl exec on the webserver container MUST reach a http port on
|
|
the each of service proxy endpoints in the cluster and the request MUST be successful.
|
|
Container will execute curl command to reach the service port within specified
|
|
max retry limit and MUST result in reporting unique hostnames.
|
|
release: v1.9, v1.18
|
|
file: test/e2e/common/network/networking.go
|
|
- testname: Networking, intra pod udp
|
|
codename: '[sig-network] Networking Granular Checks: Pods should function for intra-pod
|
|
communication: udp [NodeConformance] [Conformance]'
|
|
description: Create a hostexec pod that is capable of curl to netcat commands. Create
|
|
a test Pod that will act as a webserver front end exposing ports 8080 for tcp
|
|
and 8081 for udp. The netserver service proxies are created on specified number
|
|
of nodes. The kubectl exec on the webserver container MUST reach a udp port on
|
|
the each of service proxy endpoints in the cluster and the request MUST be successful.
|
|
Container will execute curl command to reach the service port within specified
|
|
max retry limit and MUST result in reporting unique hostnames.
|
|
release: v1.9, v1.18
|
|
file: test/e2e/common/network/networking.go
|
|
- testname: Networking, intra pod http, from node
|
|
codename: '[sig-network] Networking Granular Checks: Pods should function for node-pod
|
|
communication: http [LinuxOnly] [NodeConformance] [Conformance]'
|
|
description: Create a hostexec pod that is capable of curl to netcat commands. Create
|
|
a test Pod that will act as a webserver front end exposing ports 8080 for tcp
|
|
and 8081 for udp. The netserver service proxies are created on specified number
|
|
of nodes. The kubectl exec on the webserver container MUST reach a http port on
|
|
the each of service proxy endpoints in the cluster using a http post(protocol=tcp) and
|
|
the request MUST be successful. Container will execute curl command to reach the
|
|
service port within specified max retry limit and MUST result in reporting unique
|
|
hostnames. This test is marked LinuxOnly since HostNetwork is not supported on
|
|
other platforms like Windows.
|
|
release: v1.9
|
|
file: test/e2e/common/network/networking.go
|
|
- testname: Networking, intra pod http, from node
|
|
codename: '[sig-network] Networking Granular Checks: Pods should function for node-pod
|
|
communication: udp [LinuxOnly] [NodeConformance] [Conformance]'
|
|
description: Create a hostexec pod that is capable of curl to netcat commands. Create
|
|
a test Pod that will act as a webserver front end exposing ports 8080 for tcp
|
|
and 8081 for udp. The netserver service proxies are created on specified number
|
|
of nodes. The kubectl exec on the webserver container MUST reach a http port on
|
|
the each of service proxy endpoints in the cluster using a http post(protocol=udp) and
|
|
the request MUST be successful. Container will execute curl command to reach the
|
|
service port within specified max retry limit and MUST result in reporting unique
|
|
hostnames. This test is marked LinuxOnly since HostNetwork is not supported on
|
|
other platforms like Windows.
|
|
release: v1.9
|
|
file: test/e2e/common/network/networking.go
|
|
- testname: Proxy, validate ProxyWithPath responses
|
|
codename: '[sig-network] Proxy version v1 A set of valid responses are returned
|
|
for both pod and service ProxyWithPath [Conformance]'
|
|
description: Attempt to create a pod and a service. A set of pod and service endpoints
|
|
MUST be accessed via ProxyWithPath using a list of http methods. A valid response
|
|
MUST be returned for each endpoint.
|
|
release: v1.21
|
|
file: test/e2e/network/proxy.go
|
|
- testname: Proxy, logs service endpoint
|
|
codename: '[sig-network] Proxy version v1 should proxy through a service and a pod [Conformance]'
|
|
description: Select any node in the cluster to invoke /logs endpoint using the
|
|
/nodes/proxy subresource from the kubelet port. This endpoint MUST be reachable.
|
|
release: v1.9
|
|
file: test/e2e/network/proxy.go
|
|
- testname: Service endpoint latency, thresholds
|
|
codename: '[sig-network] Service endpoints latency should not be very high [Conformance]'
|
|
description: Run 100 iterations of create service with the Pod running the pause
|
|
image, measure the time it takes for creating the service and the endpoint with
|
|
the service name is available. These durations are captured for 100 iterations,
|
|
then the durations are sorted to compute 50th, 90th and 99th percentile. The single
|
|
server latency MUST not exceed liberally set thresholds of 20s for 50th percentile
|
|
and 50s for the 90th percentile.
|
|
release: v1.9
|
|
file: test/e2e/network/service_latency.go
|
|
- testname: Service, change type, ClusterIP to ExternalName
|
|
codename: '[sig-network] Services should be able to change the type from ClusterIP
|
|
to ExternalName [Conformance]'
|
|
description: Create a service of type ClusterIP. Service creation MUST be successful
|
|
by assigning ClusterIP to the service. Update service type from ClusterIP to ExternalName
|
|
by setting CNAME entry as externalName. Service update MUST be successful and
|
|
service MUST not has associated ClusterIP. Service MUST be able to resolve to
|
|
IP address by returning A records ensuring service is pointing to provided externalName.
|
|
release: v1.16
|
|
file: test/e2e/network/service.go
|
|
- testname: Service, change type, ExternalName to ClusterIP
|
|
codename: '[sig-network] Services should be able to change the type from ExternalName
|
|
to ClusterIP [Conformance]'
|
|
description: Create a service of type ExternalName, pointing to external DNS. ClusterIP
|
|
MUST not be assigned to the service. Update the service from ExternalName to ClusterIP
|
|
by removing ExternalName entry, assigning port 80 as service port and TCP as protocol.
|
|
Service update MUST be successful by assigning ClusterIP to the service and it
|
|
MUST be reachable over serviceName and ClusterIP on provided service port.
|
|
release: v1.16
|
|
file: test/e2e/network/service.go
|
|
- testname: Service, change type, ExternalName to NodePort
|
|
codename: '[sig-network] Services should be able to change the type from ExternalName
|
|
to NodePort [Conformance]'
|
|
description: Create a service of type ExternalName, pointing to external DNS. ClusterIP
|
|
MUST not be assigned to the service. Update the service from ExternalName to NodePort,
|
|
assigning port 80 as service port and, TCP as protocol. service update MUST be
|
|
successful by exposing service on every node's IP on dynamically assigned NodePort
|
|
and, ClusterIP MUST be assigned to route service requests. Service MUST be reachable
|
|
over serviceName and the ClusterIP on servicePort. Service MUST also be reachable
|
|
over node's IP on NodePort.
|
|
release: v1.16
|
|
file: test/e2e/network/service.go
|
|
- testname: Service, change type, NodePort to ExternalName
|
|
codename: '[sig-network] Services should be able to change the type from NodePort
|
|
to ExternalName [Conformance]'
|
|
description: Create a service of type NodePort. Service creation MUST be successful
|
|
by exposing service on every node's IP on dynamically assigned NodePort and, ClusterIP
|
|
MUST be assigned to route service requests. Update the service type from NodePort
|
|
to ExternalName by setting CNAME entry as externalName. Service update MUST be
|
|
successful and, MUST not has ClusterIP associated with the service and, allocated
|
|
NodePort MUST be released. Service MUST be able to resolve to IP address by returning
|
|
A records ensuring service is pointing to provided externalName.
|
|
release: v1.16
|
|
file: test/e2e/network/service.go
|
|
- testname: Service, NodePort Service
|
|
codename: '[sig-network] Services should be able to create a functioning NodePort
|
|
service [Conformance]'
|
|
description: Create a TCP NodePort service, and test reachability from a client
|
|
Pod. The client Pod MUST be able to access the NodePort service by service name
|
|
and cluster IP on the service port, and on nodes' internal and external IPs on
|
|
the NodePort.
|
|
release: v1.16
|
|
file: test/e2e/network/service.go
|
|
- testname: Service, NodePort type, session affinity to None
|
|
codename: '[sig-network] Services should be able to switch session affinity for
|
|
NodePort service [LinuxOnly] [Conformance]'
|
|
description: 'Create a service of type "NodePort" and provide service port and protocol.
|
|
Service''s sessionAffinity is set to "ClientIP". Service creation MUST be successful
|
|
by assigning a "ClusterIP" to the service and allocating NodePort on all the nodes.
|
|
Create a Replication Controller to ensure that 3 pods are running and are targeted
|
|
by the service to serve hostname of the pod when requests are sent to the service.
|
|
Create another pod to make requests to the service. Update the service''s sessionAffinity
|
|
to "None". Service update MUST be successful. When a requests are made to the
|
|
service on node''s IP and NodePort, service MUST be able serve the hostname from
|
|
any pod of the replica. When service''s sessionAffinily is updated back to "ClientIP",
|
|
service MUST serve the hostname from the same pod of the replica for all consecutive
|
|
requests. Service MUST be reachable over serviceName and the ClusterIP on servicePort.
|
|
Service MUST also be reachable over node''s IP on NodePort. [LinuxOnly]: Windows
|
|
does not support session affinity.'
|
|
release: v1.19
|
|
file: test/e2e/network/service.go
|
|
- testname: Service, ClusterIP type, session affinity to None
|
|
codename: '[sig-network] Services should be able to switch session affinity for
|
|
service with type clusterIP [LinuxOnly] [Conformance]'
|
|
description: 'Create a service of type "ClusterIP". Service''s sessionAffinity is
|
|
set to "ClientIP". Service creation MUST be successful by assigning "ClusterIP"
|
|
to the service. Create a Replication Controller to ensure that 3 pods are running
|
|
and are targeted by the service to serve hostname of the pod when requests are
|
|
sent to the service. Create another pod to make requests to the service. Update
|
|
the service''s sessionAffinity to "None". Service update MUST be successful. When
|
|
a requests are made to the service, it MUST be able serve the hostname from any
|
|
pod of the replica. When service''s sessionAffinily is updated back to "ClientIP",
|
|
service MUST serve the hostname from the same pod of the replica for all consecutive
|
|
requests. Service MUST be reachable over serviceName and the ClusterIP on servicePort.
|
|
[LinuxOnly]: Windows does not support session affinity.'
|
|
release: v1.19
|
|
file: test/e2e/network/service.go
|
|
- testname: Service, complete ServiceStatus lifecycle
|
|
codename: '[sig-network] Services should complete a service status lifecycle [Conformance]'
|
|
description: Create a service, the service MUST exist. When retrieving /status the
|
|
action MUST be validated. When patching /status the action MUST be validated.
|
|
When updating /status the action MUST be validated. When patching a service the
|
|
action MUST be validated.
|
|
release: v1.21
|
|
file: test/e2e/network/service.go
|
|
- testname: Find Kubernetes Service in default Namespace
|
|
codename: '[sig-network] Services should find a service from listing all namespaces
|
|
[Conformance]'
|
|
description: List all Services in all Namespaces, response MUST include a Service
|
|
named Kubernetes with the Namespace of default.
|
|
release: v1.18
|
|
file: test/e2e/network/service.go
|
|
- testname: Service, NodePort type, session affinity to ClientIP with timeout
|
|
codename: '[sig-network] Services should have session affinity timeout work for
|
|
NodePort service [LinuxOnly] [Conformance]'
|
|
description: 'Create a service of type "NodePort" and provide service port and protocol.
|
|
Service''s sessionAffinity is set to "ClientIP" and session affinity timeout is
|
|
set. Service creation MUST be successful by assigning a "ClusterIP" to service
|
|
and allocating NodePort on all nodes. Create a Replication Controller to ensure
|
|
that 3 pods are running and are targeted by the service to serve hostname of the
|
|
pod when requests are sent to the service. Create another pod to make requests
|
|
to the service on node''s IP and NodePort. Service MUST serve the hostname from
|
|
the same pod of the replica for all consecutive requests until timeout. After
|
|
timeout, requests MUST be served from different pods of the replica. Service MUST
|
|
be reachable over serviceName and the ClusterIP on servicePort. Service MUST also
|
|
be reachable over node''s IP on NodePort. [LinuxOnly]: Windows does not support
|
|
session affinity.'
|
|
release: v1.19
|
|
file: test/e2e/network/service.go
|
|
- testname: Service, ClusterIP type, session affinity to ClientIP with timeout
|
|
codename: '[sig-network] Services should have session affinity timeout work for
|
|
service with type clusterIP [LinuxOnly] [Conformance]'
|
|
description: 'Create a service of type "ClusterIP". Service''s sessionAffinity is
|
|
set to "ClientIP" and session affinity timeout is set. Service creation MUST be
|
|
successful by assigning "ClusterIP" to the service. Create a Replication Controller
|
|
to ensure that 3 pods are running and are targeted by the service to serve hostname
|
|
of the pod when requests are sent to the service. Create another pod to make requests
|
|
to the service. Service MUST serve the hostname from the same pod of the replica
|
|
for all consecutive requests until timeout expires. After timeout, requests MUST
|
|
be served from different pods of the replica. Service MUST be reachable over serviceName
|
|
and the ClusterIP on servicePort. [LinuxOnly]: Windows does not support session
|
|
affinity.'
|
|
release: v1.19
|
|
file: test/e2e/network/service.go
|
|
- testname: Service, NodePort type, session affinity to ClientIP
|
|
codename: '[sig-network] Services should have session affinity work for NodePort
|
|
service [LinuxOnly] [Conformance]'
|
|
description: 'Create a service of type "NodePort" and provide service port and protocol.
|
|
Service''s sessionAffinity is set to "ClientIP". Service creation MUST be successful
|
|
by assigning a "ClusterIP" to service and allocating NodePort on all nodes. Create
|
|
a Replication Controller to ensure that 3 pods are running and are targeted by
|
|
the service to serve hostname of the pod when a requests are sent to the service.
|
|
Create another pod to make requests to the service on node''s IP and NodePort.
|
|
Service MUST serve the hostname from the same pod of the replica for all consecutive
|
|
requests. Service MUST be reachable over serviceName and the ClusterIP on servicePort.
|
|
Service MUST also be reachable over node''s IP on NodePort. [LinuxOnly]: Windows
|
|
does not support session affinity.'
|
|
release: v1.19
|
|
file: test/e2e/network/service.go
|
|
- testname: Service, ClusterIP type, session affinity to ClientIP
|
|
codename: '[sig-network] Services should have session affinity work for service
|
|
with type clusterIP [LinuxOnly] [Conformance]'
|
|
description: 'Create a service of type "ClusterIP". Service''s sessionAffinity is
|
|
set to "ClientIP". Service creation MUST be successful by assigning "ClusterIP"
|
|
to the service. Create a Replication Controller to ensure that 3 pods are running
|
|
and are targeted by the service to serve hostname of the pod when requests are
|
|
sent to the service. Create another pod to make requests to the service. Service
|
|
MUST serve the hostname from the same pod of the replica for all consecutive requests.
|
|
Service MUST be reachable over serviceName and the ClusterIP on servicePort. [LinuxOnly]:
|
|
Windows does not support session affinity.'
|
|
release: v1.19
|
|
file: test/e2e/network/service.go
|
|
- testname: Kubernetes Service
|
|
codename: '[sig-network] Services should provide secure master service [Conformance]'
|
|
description: By default when a kubernetes cluster is running there MUST be a 'kubernetes'
|
|
service running in the cluster.
|
|
release: v1.9
|
|
file: test/e2e/network/service.go
|
|
- testname: Service, endpoints
|
|
codename: '[sig-network] Services should serve a basic endpoint from pods [Conformance]'
|
|
description: Create a service with a endpoint without any Pods, the service MUST
|
|
run and show empty endpoints. Add a pod to the service and the service MUST validate
|
|
to show all the endpoints for the ports exposed by the Pod. Add another Pod then
|
|
the list of all Ports exposed by both the Pods MUST be valid and have corresponding
|
|
service endpoint. Once the second Pod is deleted then set of endpoint MUST be
|
|
validated to show only ports from the first container that are exposed. Once both
|
|
pods are deleted the endpoints from the service MUST be empty.
|
|
release: v1.9
|
|
file: test/e2e/network/service.go
|
|
- testname: Service, endpoints with multiple ports
|
|
codename: '[sig-network] Services should serve multiport endpoints from pods [Conformance]'
|
|
description: Create a service with two ports but no Pods are added to the service
|
|
yet. The service MUST run and show empty set of endpoints. Add a Pod to the first
|
|
port, service MUST list one endpoint for the Pod on that port. Add another Pod
|
|
to the second port, service MUST list both the endpoints. Delete the first Pod
|
|
and the service MUST list only the endpoint to the second Pod. Delete the second
|
|
Pod and the service must now have empty set of endpoints.
|
|
release: v1.9
|
|
file: test/e2e/network/service.go
|
|
- testname: Endpoint resource lifecycle
|
|
codename: '[sig-network] Services should test the lifecycle of an Endpoint [Conformance]'
|
|
description: Create an endpoint, the endpoint MUST exist. The endpoint is updated
|
|
with a new label, a check after the update MUST find the changes. The endpoint
|
|
is then patched with a new IPv4 address and port, a check after the patch MUST
|
|
the changes. The endpoint is deleted by it's label, a watch listens for the deleted
|
|
watch event.
|
|
release: v1.19
|
|
file: test/e2e/network/service.go
|
|
- testname: ConfigMap, from environment field
|
|
codename: '[sig-node] ConfigMap should be consumable via environment variable [NodeConformance]
|
|
[Conformance]'
|
|
description: Create a Pod with an environment variable value set using a value from
|
|
ConfigMap. A ConfigMap value MUST be accessible in the container environment.
|
|
release: v1.9
|
|
file: test/e2e/common/node/configmap.go
|
|
- testname: ConfigMap, from environment variables
|
|
codename: '[sig-node] ConfigMap should be consumable via the environment [NodeConformance]
|
|
[Conformance]'
|
|
description: Create a Pod with a environment source from ConfigMap. All ConfigMap
|
|
values MUST be available as environment variables in the container.
|
|
release: v1.9
|
|
file: test/e2e/common/node/configmap.go
|
|
- testname: ConfigMap, with empty-key
|
|
codename: '[sig-node] ConfigMap should fail to create ConfigMap with empty key [Conformance]'
|
|
description: Attempt to create a ConfigMap with an empty key. The creation MUST
|
|
fail.
|
|
release: v1.14
|
|
file: test/e2e/common/node/configmap.go
|
|
- testname: ConfigMap lifecycle
|
|
codename: '[sig-node] ConfigMap should run through a ConfigMap lifecycle [Conformance]'
|
|
description: Attempt to create a ConfigMap. Patch the created ConfigMap. Fetching
|
|
the ConfigMap MUST reflect changes. By fetching all the ConfigMaps via a Label
|
|
selector it MUST find the ConfigMap by it's static label and updated value. The
|
|
ConfigMap must be deleted by Collection.
|
|
release: v1.19
|
|
file: test/e2e/common/node/configmap.go
|
|
- testname: Pod Lifecycle, post start exec hook
|
|
codename: '[sig-node] Container Lifecycle Hook when create a pod with lifecycle
|
|
hook should execute poststart exec hook properly [NodeConformance] [Conformance]'
|
|
description: When a post start handler is specified in the container lifecycle using
|
|
a 'Exec' action, then the handler MUST be invoked after the start of the container.
|
|
A server pod is created that will serve http requests, create a second pod with
|
|
a container lifecycle specifying a post start that invokes the server pod using
|
|
ExecAction to validate that the post start is executed.
|
|
release: v1.9
|
|
file: test/e2e/common/node/lifecycle_hook.go
|
|
- testname: Pod Lifecycle, post start http hook
|
|
codename: '[sig-node] Container Lifecycle Hook when create a pod with lifecycle
|
|
hook should execute poststart http hook properly [NodeConformance] [Conformance]'
|
|
description: When a post start handler is specified in the container lifecycle using
|
|
a HttpGet action, then the handler MUST be invoked after the start of the container.
|
|
A server pod is created that will serve http requests, create a second pod on
|
|
the same node with a container lifecycle specifying a post start that invokes
|
|
the server pod to validate that the post start is executed.
|
|
release: v1.9
|
|
file: test/e2e/common/node/lifecycle_hook.go
|
|
- testname: Pod Lifecycle, prestop exec hook
|
|
codename: '[sig-node] Container Lifecycle Hook when create a pod with lifecycle
|
|
hook should execute prestop exec hook properly [NodeConformance] [Conformance]'
|
|
description: When a pre-stop handler is specified in the container lifecycle using
|
|
a 'Exec' action, then the handler MUST be invoked before the container is terminated.
|
|
A server pod is created that will serve http requests, create a second pod with
|
|
a container lifecycle specifying a pre-stop that invokes the server pod using
|
|
ExecAction to validate that the pre-stop is executed.
|
|
release: v1.9
|
|
file: test/e2e/common/node/lifecycle_hook.go
|
|
- testname: Pod Lifecycle, prestop http hook
|
|
codename: '[sig-node] Container Lifecycle Hook when create a pod with lifecycle
|
|
hook should execute prestop http hook properly [NodeConformance] [Conformance]'
|
|
description: When a pre-stop handler is specified in the container lifecycle using
|
|
a 'HttpGet' action, then the handler MUST be invoked before the container is terminated.
|
|
A server pod is created that will serve http requests, create a second pod on
|
|
the same node with a container lifecycle specifying a pre-stop that invokes the
|
|
server pod to validate that the pre-stop is executed.
|
|
release: v1.9
|
|
file: test/e2e/common/node/lifecycle_hook.go
|
|
- testname: Container Runtime, TerminationMessage, from log output of succeeding container
|
|
codename: '[sig-node] Container Runtime blackbox test on terminated container should
|
|
report termination message [LinuxOnly] as empty when pod succeeds and TerminationMessagePolicy
|
|
FallbackToLogsOnError is set [NodeConformance] [Conformance]'
|
|
description: 'Create a pod with an container. Container''s output is recorded in
|
|
log and container exits successfully without an error. When container is terminated,
|
|
terminationMessage MUST have no content as container succeed. [LinuxOnly]: Cannot
|
|
mount files in Windows Containers.'
|
|
release: v1.15
|
|
file: test/e2e/common/node/runtime.go
|
|
- testname: Container Runtime, TerminationMessage, from file of succeeding container
|
|
codename: '[sig-node] Container Runtime blackbox test on terminated container should
|
|
report termination message [LinuxOnly] from file when pod succeeds and TerminationMessagePolicy
|
|
FallbackToLogsOnError is set [NodeConformance] [Conformance]'
|
|
description: 'Create a pod with an container. Container''s output is recorded in
|
|
a file and the container exits successfully without an error. When container is
|
|
terminated, terminationMessage MUST match with the content from file. [LinuxOnly]:
|
|
Cannot mount files in Windows Containers.'
|
|
release: v1.15
|
|
file: test/e2e/common/node/runtime.go
|
|
- testname: Container Runtime, TerminationMessage, from container's log output of
|
|
failing container
|
|
codename: '[sig-node] Container Runtime blackbox test on terminated container should
|
|
report termination message [LinuxOnly] from log output if TerminationMessagePolicy
|
|
FallbackToLogsOnError is set [NodeConformance] [Conformance]'
|
|
description: 'Create a pod with an container. Container''s output is recorded in
|
|
log and container exits with an error. When container is terminated, termination
|
|
message MUST match the expected output recorded from container''s log. [LinuxOnly]:
|
|
Cannot mount files in Windows Containers.'
|
|
release: v1.15
|
|
file: test/e2e/common/node/runtime.go
|
|
- testname: Container Runtime, TerminationMessagePath, non-root user and non-default
|
|
path
|
|
codename: '[sig-node] Container Runtime blackbox test on terminated container should
|
|
report termination message [LinuxOnly] if TerminationMessagePath is set as non-root
|
|
user and at a non-default path [NodeConformance] [Conformance]'
|
|
description: 'Create a pod with a container to run it as a non-root user with a
|
|
custom TerminationMessagePath set. Pod redirects the output to the provided path
|
|
successfully. When the container is terminated, the termination message MUST match
|
|
the expected output logged in the provided custom path. [LinuxOnly]: Tagged LinuxOnly
|
|
due to use of ''uid'' and unable to mount files in Windows Containers.'
|
|
release: v1.15
|
|
file: test/e2e/common/node/runtime.go
|
|
- testname: Container Runtime, Restart Policy, Pod Phases
|
|
codename: '[sig-node] Container Runtime blackbox test when starting a container
|
|
that exits should run with the expected status [NodeConformance] [Conformance]'
|
|
description: If the restart policy is set to 'Always', Pod MUST be restarted when
|
|
terminated, If restart policy is 'OnFailure', Pod MUST be started only if it is
|
|
terminated with non-zero exit code. If the restart policy is 'Never', Pod MUST
|
|
never be restarted. All these three test cases MUST verify the restart counts
|
|
accordingly.
|
|
release: v1.13
|
|
file: test/e2e/common/node/runtime.go
|
|
- testname: Docker containers, with arguments
|
|
codename: '[sig-node] Docker Containers should be able to override the image''s
|
|
default arguments (docker cmd) [NodeConformance] [Conformance]'
|
|
description: Default command and from the docker image entrypoint MUST be used
|
|
when Pod does not specify the container command but the arguments from Pod spec
|
|
MUST override when specified.
|
|
release: v1.9
|
|
file: test/e2e/common/node/docker_containers.go
|
|
- testname: Docker containers, with command
|
|
codename: '[sig-node] Docker Containers should be able to override the image''s
|
|
default command (docker entrypoint) [NodeConformance] [Conformance]'
|
|
description: Default command from the docker image entrypoint MUST NOT be used when
|
|
Pod specifies the container command. Command from Pod spec MUST override the
|
|
command in the image.
|
|
release: v1.9
|
|
file: test/e2e/common/node/docker_containers.go
|
|
- testname: Docker containers, with command and arguments
|
|
codename: '[sig-node] Docker Containers should be able to override the image''s
|
|
default command and arguments [NodeConformance] [Conformance]'
|
|
description: Default command and arguments from the docker image entrypoint MUST
|
|
NOT be used when Pod specifies the container command and arguments. Command and
|
|
arguments from Pod spec MUST override the command and arguments in the image.
|
|
release: v1.9
|
|
file: test/e2e/common/node/docker_containers.go
|
|
- testname: Docker containers, without command and arguments
|
|
codename: '[sig-node] Docker Containers should use the image defaults if command
|
|
and args are blank [NodeConformance] [Conformance]'
|
|
description: Default command and arguments from the docker image entrypoint MUST
|
|
be used when Pod does not specify the container command
|
|
release: v1.9
|
|
file: test/e2e/common/node/docker_containers.go
|
|
- testname: DownwardAPI, environment for CPU and memory limits and requests
|
|
codename: '[sig-node] Downward API should provide container''s limits.cpu/memory
|
|
and requests.cpu/memory as env vars [NodeConformance] [Conformance]'
|
|
description: Downward API MUST expose CPU request and Memory request set through
|
|
environment variables at runtime in the container.
|
|
release: v1.9
|
|
file: test/e2e/common/node/downwardapi.go
|
|
- testname: DownwardAPI, environment for default CPU and memory limits and requests
|
|
codename: '[sig-node] Downward API should provide default limits.cpu/memory from
|
|
node allocatable [NodeConformance] [Conformance]'
|
|
description: Downward API MUST expose CPU request and Memory limits set through
|
|
environment variables at runtime in the container.
|
|
release: v1.9
|
|
file: test/e2e/common/node/downwardapi.go
|
|
- testname: DownwardAPI, environment for host ip
|
|
codename: '[sig-node] Downward API should provide host IP as an env var [NodeConformance]
|
|
[Conformance]'
|
|
description: Downward API MUST expose Pod and Container fields as environment variables.
|
|
Specify host IP as environment variable in the Pod Spec are visible at runtime
|
|
in the container.
|
|
release: v1.9
|
|
file: test/e2e/common/node/downwardapi.go
|
|
- testname: DownwardAPI, environment for Pod UID
|
|
codename: '[sig-node] Downward API should provide pod UID as env vars [NodeConformance]
|
|
[Conformance]'
|
|
description: Downward API MUST expose Pod UID set through environment variables
|
|
at runtime in the container.
|
|
release: v1.9
|
|
file: test/e2e/common/node/downwardapi.go
|
|
- testname: DownwardAPI, environment for name, namespace and ip
|
|
codename: '[sig-node] Downward API should provide pod name, namespace and IP address
|
|
as env vars [NodeConformance] [Conformance]'
|
|
description: Downward API MUST expose Pod and Container fields as environment variables.
|
|
Specify Pod Name, namespace and IP as environment variable in the Pod Spec are
|
|
visible at runtime in the container.
|
|
release: v1.9
|
|
file: test/e2e/common/node/downwardapi.go
|
|
- testname: Pod events, verify event from Scheduler and Kubelet
|
|
codename: '[sig-node] Events should be sent by kubelets and the scheduler about
|
|
pods scheduling and running [Conformance]'
|
|
description: Create a Pod, make sure that the Pod can be queried. Create a event
|
|
selector for the kind=Pod and the source is the Scheduler. List of the events
|
|
MUST be at least one. Create a event selector for kind=Pod and the source is the
|
|
Kubelet. List of the events MUST be at least one. Both Scheduler and Kubelet MUST
|
|
send events when scheduling and running a Pod.
|
|
release: v1.9
|
|
file: test/e2e/node/events.go
|
|
- testname: init-container-starts-app-restartalways-pod
|
|
codename: '[sig-node] InitContainer [NodeConformance] should invoke init containers
|
|
on a RestartAlways pod [Conformance]'
|
|
description: Ensure that all InitContainers are started and all containers in pod
|
|
started and at least one container is still running or is in the process of being
|
|
restarted when Pod has restart policy as RestartAlways.
|
|
release: v1.12
|
|
file: test/e2e/common/node/init_container.go
|
|
- testname: init-container-starts-app-restartnever-pod
|
|
codename: '[sig-node] InitContainer [NodeConformance] should invoke init containers
|
|
on a RestartNever pod [Conformance]'
|
|
description: Ensure that all InitContainers are started and all containers in pod
|
|
are voluntarily terminated with exit status 0, and the system is not going to
|
|
restart any of these containers when Pod has restart policy as RestartNever.
|
|
release: v1.12
|
|
file: test/e2e/common/node/init_container.go
|
|
- testname: init-container-fails-stops-app-restartnever-pod
|
|
codename: '[sig-node] InitContainer [NodeConformance] should not start app containers
|
|
and fail the pod if init containers fail on a RestartNever pod [Conformance]'
|
|
description: Ensure that app container is not started when at least one InitContainer
|
|
fails to start and Pod has restart policy as RestartNever.
|
|
release: v1.12
|
|
file: test/e2e/common/node/init_container.go
|
|
- testname: init-container-fails-stops-app-restartalways-pod
|
|
codename: '[sig-node] InitContainer [NodeConformance] should not start app containers
|
|
if init containers fail on a RestartAlways pod [Conformance]'
|
|
description: Ensure that app container is not started when all InitContainers failed
|
|
to start and Pod has restarted for few occurrences and pod has restart policy
|
|
as RestartAlways.
|
|
release: v1.12
|
|
file: test/e2e/common/node/init_container.go
|
|
- testname: Kubelet, hostAliases
|
|
codename: '[sig-node] Kubelet when scheduling a busybox Pod with hostAliases should
|
|
write entries to /etc/hosts [LinuxOnly] [NodeConformance] [Conformance]'
|
|
description: Create a Pod with hostAliases and a container with command to output
|
|
/etc/hosts entries. Pod's logs MUST have matching entries of specified hostAliases
|
|
to the output of /etc/hosts entries. Kubernetes mounts the /etc/hosts file into
|
|
its containers, however, mounting individual files is not supported on Windows
|
|
Containers. For this reason, this test is marked LinuxOnly.
|
|
release: v1.13
|
|
file: test/e2e/common/node/kubelet.go
|
|
- testname: Kubelet, log output, default
|
|
codename: '[sig-node] Kubelet when scheduling a busybox command in a pod should
|
|
print the output to logs [NodeConformance] [Conformance]'
|
|
description: By default the stdout and stderr from the process being executed in
|
|
a pod MUST be sent to the pod's logs.
|
|
release: v1.13
|
|
file: test/e2e/common/node/kubelet.go
|
|
- testname: Kubelet, failed pod, delete
|
|
codename: '[sig-node] Kubelet when scheduling a busybox command that always fails
|
|
in a pod should be possible to delete [NodeConformance] [Conformance]'
|
|
description: Create a Pod with terminated state. This terminated pod MUST be able
|
|
to be deleted.
|
|
release: v1.13
|
|
file: test/e2e/common/node/kubelet.go
|
|
- testname: Kubelet, failed pod, terminated reason
|
|
codename: '[sig-node] Kubelet when scheduling a busybox command that always fails
|
|
in a pod should have an terminated reason [NodeConformance] [Conformance]'
|
|
description: Create a Pod with terminated state. Pod MUST have only one container.
|
|
Container MUST be in terminated state and MUST have an terminated reason.
|
|
release: v1.13
|
|
file: test/e2e/common/node/kubelet.go
|
|
- testname: Kubelet, pod with read only root file system
|
|
codename: '[sig-node] Kubelet when scheduling a read only busybox container should
|
|
not write to root filesystem [LinuxOnly] [NodeConformance] [Conformance]'
|
|
description: Create a Pod with security context set with ReadOnlyRootFileSystem
|
|
set to true. The Pod then tries to write to the /file on the root, write operation
|
|
to the root filesystem MUST fail as expected. This test is marked LinuxOnly since
|
|
Windows does not support creating containers with read-only access.
|
|
release: v1.13
|
|
file: test/e2e/common/node/kubelet.go
|
|
- testname: Kubelet, managed etc hosts
|
|
codename: '[sig-node] KubeletManagedEtcHosts should test kubelet managed /etc/hosts
|
|
file [LinuxOnly] [NodeConformance] [Conformance]'
|
|
description: Create a Pod with containers with hostNetwork set to false, one of
|
|
the containers mounts the /etc/hosts file form the host. Create a second Pod with
|
|
hostNetwork set to true. 1. The Pod with hostNetwork=false MUST have /etc/hosts
|
|
of containers managed by the Kubelet. 2. The Pod with hostNetwork=false but the
|
|
container mounts /etc/hosts file from the host. The /etc/hosts file MUST not be
|
|
managed by the Kubelet. 3. The Pod with hostNetwork=true , /etc/hosts file MUST
|
|
not be managed by the Kubelet. This test is marked LinuxOnly since Windows cannot
|
|
mount individual files in Containers.
|
|
release: v1.9
|
|
file: test/e2e/common/node/kubelet_etc_hosts.go
|
|
- testname: lease API should be available
|
|
codename: '[sig-node] Lease lease API should be available [Conformance]'
|
|
description: "Create Lease object, and get it; create and get MUST be successful
|
|
and Spec of the read Lease MUST match Spec of original Lease. Update the Lease
|
|
and get it; update and get MUST be successful\tand Spec of the read Lease MUST
|
|
match Spec of updated Lease. Patch the Lease and get it; patch and get MUST be
|
|
successful and Spec of the read Lease MUST match Spec of patched Lease. Create
|
|
a second Lease with labels and list Leases; create and list MUST be successful
|
|
and list MUST return both leases. Delete the labels lease via delete collection;
|
|
the delete MUST be successful and MUST delete only the labels lease. List leases;
|
|
list MUST be successful and MUST return just the remaining lease. Delete the lease;
|
|
delete MUST be successful. Get the lease; get MUST return not found error."
|
|
release: v1.17
|
|
file: test/e2e/common/node/lease.go
|
|
- testname: Pod Eviction, Toleration limits
|
|
codename: '[sig-node] NoExecuteTaintManager Multiple Pods [Serial] evicts pods with
|
|
minTolerationSeconds [Disruptive] [Conformance]'
|
|
description: In a multi-pods scenario with tolerationSeconds, the pods MUST be evicted
|
|
as per the toleration time limit.
|
|
release: v1.16
|
|
file: test/e2e/node/taints.go
|
|
- testname: Taint, Pod Eviction on taint removal
|
|
codename: '[sig-node] NoExecuteTaintManager Single Pod [Serial] removing taint cancels
|
|
eviction [Disruptive] [Conformance]'
|
|
description: The Pod with toleration timeout scheduled on a tainted Node MUST not
|
|
be evicted if the taint is removed before toleration time ends.
|
|
release: v1.16
|
|
file: test/e2e/node/taints.go
|
|
- testname: PodTemplate, delete a collection
|
|
codename: '[sig-node] PodTemplates should delete a collection of pod templates [Conformance]'
|
|
description: A set of Pod Templates is created with a label selector which MUST
|
|
be found when listed. The set of Pod Templates is deleted and MUST NOT show up
|
|
when listed by its label selector.
|
|
release: v1.19
|
|
file: test/e2e/common/node/podtemplates.go
|
|
- testname: PodTemplate lifecycle
|
|
codename: '[sig-node] PodTemplates should run the lifecycle of PodTemplates [Conformance]'
|
|
description: Attempt to create a PodTemplate. Patch the created PodTemplate. Fetching
|
|
the PodTemplate MUST reflect changes. By fetching all the PodTemplates via a Label
|
|
selector it MUST find the PodTemplate by it's static label and updated value.
|
|
The PodTemplate must be deleted.
|
|
release: v1.19
|
|
file: test/e2e/common/node/podtemplates.go
|
|
- testname: Pods, QOS
|
|
codename: '[sig-node] Pods Extended Pods Set QOS Class should be set on Pods with
|
|
matching resource requests and limits for memory and cpu [Conformance]'
|
|
description: Create a Pod with CPU and Memory request and limits. Pod status MUST
|
|
have QOSClass set to PodQOSGuaranteed.
|
|
release: v1.9
|
|
file: test/e2e/node/pods.go
|
|
- testname: Pods, ActiveDeadlineSeconds
|
|
codename: '[sig-node] Pods should allow activeDeadlineSeconds to be updated [NodeConformance]
|
|
[Conformance]'
|
|
description: Create a Pod with a unique label. Query for the Pod with the label
|
|
as selector MUST be successful. The Pod is updated with ActiveDeadlineSeconds
|
|
set on the Pod spec. Pod MUST terminate of the specified time elapses.
|
|
release: v1.9
|
|
file: test/e2e/common/node/pods.go
|
|
- testname: Pods, lifecycle
|
|
codename: '[sig-node] Pods should be submitted and removed [NodeConformance] [Conformance]'
|
|
description: A Pod is created with a unique label. Pod MUST be accessible when queried
|
|
using the label selector upon creation. Add a watch, check if the Pod is running.
|
|
Pod then deleted, The pod deletion timestamp is observed. The watch MUST return
|
|
the pod deleted event. Query with the original selector for the Pod MUST return
|
|
empty list.
|
|
release: v1.9
|
|
file: test/e2e/common/node/pods.go
|
|
- testname: Pods, update
|
|
codename: '[sig-node] Pods should be updated [NodeConformance] [Conformance]'
|
|
description: Create a Pod with a unique label. Query for the Pod with the label
|
|
as selector MUST be successful. Update the pod to change the value of the Label.
|
|
Query for the Pod with the new value for the label MUST be successful.
|
|
release: v1.9
|
|
file: test/e2e/common/node/pods.go
|
|
- testname: Pods, service environment variables
|
|
codename: '[sig-node] Pods should contain environment variables for services [NodeConformance]
|
|
[Conformance]'
|
|
description: Create a server Pod listening on port 9376. A Service called fooservice
|
|
is created for the server Pod listening on port 8765 targeting port 8080. If a
|
|
new Pod is created in the cluster then the Pod MUST have the fooservice environment
|
|
variables available from this new Pod. The new create Pod MUST have environment
|
|
variables such as FOOSERVICE_SERVICE_HOST, FOOSERVICE_SERVICE_PORT, FOOSERVICE_PORT,
|
|
FOOSERVICE_PORT_8765_TCP_PORT, FOOSERVICE_PORT_8765_TCP_PROTO, FOOSERVICE_PORT_8765_TCP
|
|
and FOOSERVICE_PORT_8765_TCP_ADDR that are populated with proper values.
|
|
release: v1.9
|
|
file: test/e2e/common/node/pods.go
|
|
- testname: Pods, delete a collection
|
|
codename: '[sig-node] Pods should delete a collection of pods [Conformance]'
|
|
description: A set of pods is created with a label selector which MUST be found
|
|
when listed. The set of pods is deleted and MUST NOT show up when listed by its
|
|
label selector.
|
|
release: v1.19
|
|
file: test/e2e/common/node/pods.go
|
|
- testname: Pods, assigned hostip
|
|
codename: '[sig-node] Pods should get a host IP [NodeConformance] [Conformance]'
|
|
description: Create a Pod. Pod status MUST return successfully and contains a valid
|
|
IP address.
|
|
release: v1.9
|
|
file: test/e2e/common/node/pods.go
|
|
- testname: Pods, completes the lifecycle of a Pod and the PodStatus
|
|
codename: '[sig-node] Pods should run through the lifecycle of Pods and PodStatus
|
|
[Conformance]'
|
|
description: A Pod is created with a static label which MUST succeed. It MUST succeed
|
|
when patching the label and the pod data. When checking and replacing the PodStatus
|
|
it MUST succeed. It MUST succeed when deleting the Pod.
|
|
release: v1.20
|
|
file: test/e2e/common/node/pods.go
|
|
- testname: Pods, remote command execution over websocket
|
|
codename: '[sig-node] Pods should support remote command execution over websockets
|
|
[NodeConformance] [Conformance]'
|
|
description: A Pod is created. Websocket is created to retrieve exec command output
|
|
from this pod. Message retrieved form Websocket MUST match with expected exec
|
|
command output.
|
|
release: v1.13
|
|
file: test/e2e/common/node/pods.go
|
|
- testname: Pods, logs from websockets
|
|
codename: '[sig-node] Pods should support retrieving logs from the container over
|
|
websockets [NodeConformance] [Conformance]'
|
|
description: A Pod is created. Websocket is created to retrieve log of a container
|
|
from this pod. Message retrieved form Websocket MUST match with container's output.
|
|
release: v1.13
|
|
file: test/e2e/common/node/pods.go
|
|
- testname: Pods, prestop hook
|
|
codename: '[sig-node] PreStop should call prestop when killing a pod [Conformance]'
|
|
description: Create a server pod with a rest endpoint '/write' that changes state.Received
|
|
field. Create a Pod with a pre-stop handle that posts to the /write endpoint on
|
|
the server Pod. Verify that the Pod with pre-stop hook is running. Delete the
|
|
Pod with the pre-stop hook. Before the Pod is deleted, pre-stop handler MUST be
|
|
called when configured. Verify that the Pod is deleted and a call to prestop hook
|
|
is verified by checking the status received on the server Pod.
|
|
release: v1.9
|
|
file: test/e2e/node/pre_stop.go
|
|
- testname: Pod liveness probe, using http endpoint, failure
|
|
codename: '[sig-node] Probing container should *not* be restarted with a /healthz
|
|
http liveness probe [NodeConformance] [Conformance]'
|
|
description: A Pod is created with liveness probe on http endpoint '/'. Liveness
|
|
probe on this endpoint will not fail. When liveness probe does not fail then the
|
|
restart count MUST remain zero.
|
|
release: v1.9
|
|
file: test/e2e/common/node/container_probe.go
|
|
- testname: Pod liveness probe, using local file, no restart
|
|
codename: '[sig-node] Probing container should *not* be restarted with a exec "cat
|
|
/tmp/health" liveness probe [NodeConformance] [Conformance]'
|
|
description: Pod is created with liveness probe that uses 'exec' command to cat
|
|
/temp/health file. Liveness probe MUST not fail to check health and the restart
|
|
count should remain 0.
|
|
release: v1.9
|
|
file: test/e2e/common/node/container_probe.go
|
|
- testname: Pod liveness probe, using tcp socket, no restart
|
|
codename: '[sig-node] Probing container should *not* be restarted with a tcp:8080
|
|
liveness probe [NodeConformance] [Conformance]'
|
|
description: A Pod is created with liveness probe on tcp socket 8080. The http handler
|
|
on port 8080 will return http errors after 10 seconds, but the socket will remain
|
|
open. Liveness probe MUST not fail to check health and the restart count should
|
|
remain 0.
|
|
release: v1.18
|
|
file: test/e2e/common/node/container_probe.go
|
|
- testname: Pod liveness probe, using http endpoint, restart
|
|
codename: '[sig-node] Probing container should be restarted with a /healthz http
|
|
liveness probe [NodeConformance] [Conformance]'
|
|
description: A Pod is created with liveness probe on http endpoint /healthz. The
|
|
http handler on the /healthz will return a http error after 10 seconds since the
|
|
Pod is started. This MUST result in liveness check failure. The Pod MUST now be
|
|
killed and restarted incrementing restart count to 1.
|
|
release: v1.9
|
|
file: test/e2e/common/node/container_probe.go
|
|
- testname: Pod liveness probe, using local file, restart
|
|
codename: '[sig-node] Probing container should be restarted with a exec "cat /tmp/health"
|
|
liveness probe [NodeConformance] [Conformance]'
|
|
description: Create a Pod with liveness probe that uses ExecAction handler to cat
|
|
/temp/health file. The Container deletes the file /temp/health after 10 second,
|
|
triggering liveness probe to fail. The Pod MUST now be killed and restarted incrementing
|
|
restart count to 1.
|
|
release: v1.9
|
|
file: test/e2e/common/node/container_probe.go
|
|
- testname: Pod liveness probe, using http endpoint, multiple restarts (slow)
|
|
codename: '[sig-node] Probing container should have monotonically increasing restart
|
|
count [NodeConformance] [Conformance]'
|
|
description: A Pod is created with liveness probe on http endpoint /healthz. The
|
|
http handler on the /healthz will return a http error after 10 seconds since the
|
|
Pod is started. This MUST result in liveness check failure. The Pod MUST now be
|
|
killed and restarted incrementing restart count to 1. The liveness probe must
|
|
fail again after restart once the http handler for /healthz enpoind on the Pod
|
|
returns an http error after 10 seconds from the start. Restart counts MUST increment
|
|
everytime health check fails, measure upto 5 restart.
|
|
release: v1.9
|
|
file: test/e2e/common/node/container_probe.go
|
|
- testname: Pod readiness probe, with initial delay
|
|
codename: '[sig-node] Probing container with readiness probe should not be ready
|
|
before initial delay and never restart [NodeConformance] [Conformance]'
|
|
description: Create a Pod that is configured with a initial delay set on the readiness
|
|
probe. Check the Pod Start time to compare to the initial delay. The Pod MUST
|
|
be ready only after the specified initial delay.
|
|
release: v1.9
|
|
file: test/e2e/common/node/container_probe.go
|
|
- testname: Pod readiness probe, failure
|
|
codename: '[sig-node] Probing container with readiness probe that fails should never
|
|
be ready and never restart [NodeConformance] [Conformance]'
|
|
description: Create a Pod with a readiness probe that fails consistently. When this
|
|
Pod is created, then the Pod MUST never be ready, never be running and restart
|
|
count MUST be zero.
|
|
release: v1.9
|
|
file: test/e2e/common/node/container_probe.go
|
|
- testname: RuntimeClass API
|
|
codename: '[sig-node] RuntimeClass should support RuntimeClasses API operations
|
|
[Conformance]'
|
|
description: ' The node.k8s.io API group MUST exist in the /apis discovery document.
|
|
The node.k8s.io/v1 API group/version MUST exist in the /apis/mode.k8s.io discovery
|
|
document. The runtimeclasses resource MUST exist in the /apis/node.k8s.io/v1 discovery
|
|
document. The runtimeclasses resource must support create, get, list, watch, update,
|
|
patch, delete, and deletecollection.'
|
|
release: v1.20
|
|
file: test/e2e/common/node/runtimeclass.go
|
|
- testname: Secrets, pod environment field
|
|
codename: '[sig-node] Secrets should be consumable from pods in env vars [NodeConformance]
|
|
[Conformance]'
|
|
description: Create a secret. Create a Pod with Container that declares a environment
|
|
variable which references the secret created to extract a key value from the secret.
|
|
Pod MUST have the environment variable that contains proper value for the key
|
|
to the secret.
|
|
release: v1.9
|
|
file: test/e2e/common/node/secrets.go
|
|
- testname: Secrets, pod environment from source
|
|
codename: '[sig-node] Secrets should be consumable via the environment [NodeConformance]
|
|
[Conformance]'
|
|
description: Create a secret. Create a Pod with Container that declares a environment
|
|
variable using 'EnvFrom' which references the secret created to extract a key
|
|
value from the secret. Pod MUST have the environment variable that contains proper
|
|
value for the key to the secret.
|
|
release: v1.9
|
|
file: test/e2e/common/node/secrets.go
|
|
- testname: Secrets, with empty-key
|
|
codename: '[sig-node] Secrets should fail to create secret due to empty secret key
|
|
[Conformance]'
|
|
description: Attempt to create a Secret with an empty key. The creation MUST fail.
|
|
release: v1.15
|
|
file: test/e2e/common/node/secrets.go
|
|
- testname: Secret patching
|
|
codename: '[sig-node] Secrets should patch a secret [Conformance]'
|
|
description: A Secret is created. Listing all Secrets MUST return an empty list.
|
|
Given the patching and fetching of the Secret, the fields MUST equal the new values.
|
|
The Secret is deleted by it's static Label. Secrets are listed finally, the list
|
|
MUST NOT include the originally created Secret.
|
|
release: v1.18
|
|
file: test/e2e/common/node/secrets.go
|
|
- testname: Security Context, runAsUser=65534
|
|
codename: '[sig-node] Security Context When creating a container with runAsUser
|
|
should run the container with uid 65534 [LinuxOnly] [NodeConformance] [Conformance]'
|
|
description: 'Container is created with runAsUser option by passing uid 65534 to
|
|
run as unpriviledged user. Pod MUST be in Succeeded phase. [LinuxOnly]: This test
|
|
is marked as LinuxOnly since Windows does not support running as UID / GID.'
|
|
release: v1.15
|
|
file: test/e2e/common/node/security_context.go
|
|
- testname: Security Context, privileged=false.
|
|
codename: '[sig-node] Security Context When creating a pod with privileged should
|
|
run the container as unprivileged when false [LinuxOnly] [NodeConformance] [Conformance]'
|
|
description: 'Create a container to run in unprivileged mode by setting pod''s SecurityContext
|
|
Privileged option as false. Pod MUST be in Succeeded phase. [LinuxOnly]: This
|
|
test is marked as LinuxOnly since it runs a Linux-specific command.'
|
|
release: v1.15
|
|
file: test/e2e/common/node/security_context.go
|
|
- testname: Security Context, readOnlyRootFilesystem=false.
|
|
codename: '[sig-node] Security Context When creating a pod with readOnlyRootFilesystem
|
|
should run the container with writable rootfs when readOnlyRootFilesystem=false
|
|
[NodeConformance] [Conformance]'
|
|
description: Container is configured to run with readOnlyRootFilesystem to false.
|
|
Write operation MUST be allowed and Pod MUST be in Succeeded state.
|
|
release: v1.15
|
|
file: test/e2e/common/node/security_context.go
|
|
- testname: Security Context, test RunAsGroup at container level
|
|
codename: '[sig-node] Security Context should support container.SecurityContext.RunAsUser
|
|
And container.SecurityContext.RunAsGroup [LinuxOnly] [Conformance]'
|
|
description: 'Container is created with runAsUser and runAsGroup option by passing
|
|
uid 1001 and gid 2002 at containr level. Pod MUST be in Succeeded phase. [LinuxOnly]:
|
|
This test is marked as LinuxOnly since Windows does not support running as UID
|
|
/ GID.'
|
|
release: v1.21
|
|
file: test/e2e/node/security_context.go
|
|
- testname: Security Context, test RunAsGroup at pod level
|
|
codename: '[sig-node] Security Context should support pod.Spec.SecurityContext.RunAsUser
|
|
And pod.Spec.SecurityContext.RunAsGroup [LinuxOnly] [Conformance]'
|
|
description: 'Container is created with runAsUser and runAsGroup option by passing
|
|
uid 1001 and gid 2002 at pod level. Pod MUST be in Succeeded phase. [LinuxOnly]:
|
|
This test is marked as LinuxOnly since Windows does not support running as UID
|
|
/ GID.'
|
|
release: v1.21
|
|
file: test/e2e/node/security_context.go
|
|
- testname: Security Context, allowPrivilegeEscalation=false.
|
|
codename: '[sig-node] Security Context when creating containers with AllowPrivilegeEscalation
|
|
should not allow privilege escalation when false [LinuxOnly] [NodeConformance]
|
|
[Conformance]'
|
|
description: 'Configuring the allowPrivilegeEscalation to false, does not allow
|
|
the privilege escalation operation. A container is configured with allowPrivilegeEscalation=false
|
|
and a given uid (1000) which is not 0. When the container is run, container''s
|
|
output MUST match with expected output verifying container ran with given uid
|
|
i.e. uid=1000. [LinuxOnly]: This test is marked LinuxOnly since Windows does not
|
|
support running as UID / GID, or privilege escalation.'
|
|
release: v1.15
|
|
file: test/e2e/common/node/security_context.go
|
|
- testname: Sysctls, reject invalid sysctls
|
|
codename: '[sig-node] Sysctls [LinuxOnly] [NodeConformance] should reject invalid
|
|
sysctls [MinimumKubeletVersion:1.21] [Conformance]'
|
|
description: 'Pod is created with one valid and two invalid sysctls. Pod should
|
|
not apply invalid sysctls. [LinuxOnly]: This test is marked as LinuxOnly since
|
|
Windows does not support sysctls'
|
|
release: v1.21
|
|
file: test/e2e/common/node/sysctl.go
|
|
- testname: Sysctl, test sysctls
|
|
codename: '[sig-node] Sysctls [LinuxOnly] [NodeConformance] should support sysctls
|
|
[MinimumKubeletVersion:1.21] [Conformance]'
|
|
description: 'Pod is created with kernel.shm_rmid_forced sysctl. Kernel.shm_rmid_forced
|
|
must be set to 1 [LinuxOnly]: This test is marked as LinuxOnly since Windows does
|
|
not support sysctls'
|
|
release: v1.21
|
|
file: test/e2e/common/node/sysctl.go
|
|
- testname: Environment variables, expansion
|
|
codename: '[sig-node] Variable Expansion should allow composing env vars into new
|
|
env vars [NodeConformance] [Conformance]'
|
|
description: Create a Pod with environment variables. Environment variables defined
|
|
using previously defined environment variables MUST expand to proper values.
|
|
release: v1.9
|
|
file: test/e2e/common/node/expansion.go
|
|
- testname: Environment variables, command argument expansion
|
|
codename: '[sig-node] Variable Expansion should allow substituting values in a container''s
|
|
args [NodeConformance] [Conformance]'
|
|
description: Create a Pod with environment variables and container command arguments
|
|
using them. Container command arguments using the defined environment variables
|
|
MUST expand to proper values.
|
|
release: v1.9
|
|
file: test/e2e/common/node/expansion.go
|
|
- testname: Environment variables, command expansion
|
|
codename: '[sig-node] Variable Expansion should allow substituting values in a container''s
|
|
command [NodeConformance] [Conformance]'
|
|
description: Create a Pod with environment variables and container command using
|
|
them. Container command using the defined environment variables MUST expand to
|
|
proper values.
|
|
release: v1.9
|
|
file: test/e2e/common/node/expansion.go
|
|
- testname: VolumeSubpathEnvExpansion, subpath expansion
|
|
codename: '[sig-node] Variable Expansion should allow substituting values in a volume
|
|
subpath [Conformance]'
|
|
description: Make sure a container's subpath can be set using an expansion of environment
|
|
variables.
|
|
release: v1.19
|
|
file: test/e2e/common/node/expansion.go
|
|
- testname: VolumeSubpathEnvExpansion, subpath with absolute path
|
|
codename: '[sig-node] Variable Expansion should fail substituting values in a volume
|
|
subpath with absolute path [Slow] [Conformance]'
|
|
description: Make sure a container's subpath can not be set using an expansion of
|
|
environment variables when absolute path is supplied.
|
|
release: v1.19
|
|
file: test/e2e/common/node/expansion.go
|
|
- testname: VolumeSubpathEnvExpansion, subpath with backticks
|
|
codename: '[sig-node] Variable Expansion should fail substituting values in a volume
|
|
subpath with backticks [Slow] [Conformance]'
|
|
description: Make sure a container's subpath can not be set using an expansion of
|
|
environment variables when backticks are supplied.
|
|
release: v1.19
|
|
file: test/e2e/common/node/expansion.go
|
|
- testname: VolumeSubpathEnvExpansion, subpath test writes
|
|
codename: '[sig-node] Variable Expansion should succeed in writing subpaths in container
|
|
[Slow] [Conformance]'
|
|
description: "Verify that a subpath expansion can be used to write files into subpaths.
|
|
1.\tvalid subpathexpr starts a container running 2.\ttest for valid subpath writes
|
|
3.\tsuccessful expansion of the subpathexpr isn't required for volume cleanup"
|
|
release: v1.19
|
|
file: test/e2e/common/node/expansion.go
|
|
- testname: VolumeSubpathEnvExpansion, subpath ready from failed state
|
|
codename: '[sig-node] Variable Expansion should verify that a failing subpath expansion
|
|
can be modified during the lifecycle of a container [Slow] [Conformance]'
|
|
description: Verify that a failing subpath expansion can be modified during the
|
|
lifecycle of a container.
|
|
release: v1.19
|
|
file: test/e2e/common/node/expansion.go
|
|
- testname: LimitRange, resources
|
|
codename: '[sig-scheduling] LimitRange should create a LimitRange with defaults
|
|
and ensure pod has those defaults applied. [Conformance]'
|
|
description: Creating a Limitrange and verifying the creation of Limitrange, updating
|
|
the Limitrange and validating the Limitrange. Creating Pods with resources and
|
|
validate the pod resources are applied to the Limitrange
|
|
release: v1.18
|
|
file: test/e2e/scheduling/limit_range.go
|
|
- testname: Scheduler, resource limits
|
|
codename: '[sig-scheduling] SchedulerPredicates [Serial] validates resource limits
|
|
of pods that are allowed to run [Conformance]'
|
|
description: Scheduling Pods MUST fail if the resource requests exceed Machine capacity.
|
|
release: v1.9
|
|
file: test/e2e/scheduling/predicates.go
|
|
- testname: Scheduler, node selector matching
|
|
codename: '[sig-scheduling] SchedulerPredicates [Serial] validates that NodeSelector
|
|
is respected if matching [Conformance]'
|
|
description: 'Create a label on the node {k: v}. Then create a Pod with a NodeSelector
|
|
set to {k: v}. Check to see if the Pod is scheduled. When the NodeSelector matches
|
|
then Pod MUST be scheduled on that node.'
|
|
release: v1.9
|
|
file: test/e2e/scheduling/predicates.go
|
|
- testname: Scheduler, node selector not matching
|
|
codename: '[sig-scheduling] SchedulerPredicates [Serial] validates that NodeSelector
|
|
is respected if not matching [Conformance]'
|
|
description: Create a Pod with a NodeSelector set to a value that does not match
|
|
a node in the cluster. Since there are no nodes matching the criteria the Pod
|
|
MUST not be scheduled.
|
|
release: v1.9
|
|
file: test/e2e/scheduling/predicates.go
|
|
- testname: Scheduling, HostPort and Protocol match, HostIPs different but one is
|
|
default HostIP (0.0.0.0)
|
|
codename: '[sig-scheduling] SchedulerPredicates [Serial] validates that there exists
|
|
conflict between pods with same hostPort and protocol but one using 0.0.0.0 hostIP
|
|
[Conformance]'
|
|
description: Pods with the same HostPort and Protocol, but different HostIPs, MUST
|
|
NOT schedule to the same node if one of those IPs is the default HostIP of 0.0.0.0,
|
|
which represents all IPs on the host.
|
|
release: v1.16
|
|
file: test/e2e/scheduling/predicates.go
|
|
- testname: Pod preemption verification
|
|
codename: '[sig-scheduling] SchedulerPreemption [Serial] PreemptionExecutionPath
|
|
runs ReplicaSets to verify preemption running path [Conformance]'
|
|
description: Four levels of Pods in ReplicaSets with different levels of Priority,
|
|
restricted by given CPU limits MUST launch. Priority 1 - 3 Pods MUST spawn first
|
|
followed by Priority 4 Pod. The ReplicaSets with Replicas MUST contain the expected
|
|
number of Replicas.
|
|
release: v1.19
|
|
file: test/e2e/scheduling/preemption.go
|
|
- testname: Scheduler, Verify PriorityClass endpoints
|
|
codename: '[sig-scheduling] SchedulerPreemption [Serial] PriorityClass endpoints
|
|
verify PriorityClass endpoints can be operated with different HTTP methods [Conformance]'
|
|
description: Verify that PriorityClass endpoints can be listed. When any mutable
|
|
field is either patched or updated it MUST succeed. When any immutable field is
|
|
either patched or updated it MUST fail.
|
|
release: v1.20
|
|
file: test/e2e/scheduling/preemption.go
|
|
- testname: Scheduler, Basic Preemption
|
|
codename: '[sig-scheduling] SchedulerPreemption [Serial] validates basic preemption
|
|
works [Conformance]'
|
|
description: When a higher priority pod is created and no node with enough resources
|
|
is found, the scheduler MUST preempt a lower priority pod and schedule the high
|
|
priority pod.
|
|
release: v1.19
|
|
file: test/e2e/scheduling/preemption.go
|
|
- testname: Scheduler, Preemption for critical pod
|
|
codename: '[sig-scheduling] SchedulerPreemption [Serial] validates lower priority
|
|
pod preemption by critical pod [Conformance]'
|
|
description: When a critical pod is created and no node with enough resources is
|
|
found, the scheduler MUST preempt a lower priority pod to schedule the critical
|
|
pod.
|
|
release: v1.19
|
|
file: test/e2e/scheduling/preemption.go
|
|
- testname: ConfigMap Volume, text data, binary data
|
|
codename: '[sig-storage] ConfigMap binary data should be reflected in volume [NodeConformance]
|
|
[Conformance]'
|
|
description: The ConfigMap that is created with text data and binary data MUST be
|
|
accessible to read from the newly created Pod using the volume mount that is mapped
|
|
to custom path in the Pod. ConfigMap's text data and binary data MUST be verified
|
|
by reading the content from the mounted files in the Pod.
|
|
release: v1.12
|
|
file: test/e2e/common/storage/configmap_volume.go
|
|
- testname: ConfigMap Volume, create, update and delete
|
|
codename: '[sig-storage] ConfigMap optional updates should be reflected in volume
|
|
[NodeConformance] [Conformance]'
|
|
description: The ConfigMap that is created MUST be accessible to read from the newly
|
|
created Pod using the volume mount that is mapped to custom path in the Pod. When
|
|
the config map is updated the change to the config map MUST be verified by reading
|
|
the content from the mounted file in the Pod. Also when the item(file) is deleted
|
|
from the map that MUST result in a error reading that item(file).
|
|
release: v1.9
|
|
file: test/e2e/common/storage/configmap_volume.go
|
|
- testname: ConfigMap Volume, without mapping
|
|
codename: '[sig-storage] ConfigMap should be consumable from pods in volume [NodeConformance]
|
|
[Conformance]'
|
|
description: Create a ConfigMap, create a Pod that mounts a volume and populates
|
|
the volume with data stored in the ConfigMap. The ConfigMap that is created MUST
|
|
be accessible to read from the newly created Pod using the volume mount. The data
|
|
content of the file MUST be readable and verified and file modes MUST default
|
|
to 0x644.
|
|
release: v1.9
|
|
file: test/e2e/common/storage/configmap_volume.go
|
|
- testname: ConfigMap Volume, without mapping, non-root user
|
|
codename: '[sig-storage] ConfigMap should be consumable from pods in volume as non-root
|
|
[NodeConformance] [Conformance]'
|
|
description: Create a ConfigMap, create a Pod that mounts a volume and populates
|
|
the volume with data stored in the ConfigMap. Pod is run as a non-root user with
|
|
uid=1000. The ConfigMap that is created MUST be accessible to read from the newly
|
|
created Pod using the volume mount. The file on the volume MUST have file mode
|
|
set to default value of 0x644.
|
|
release: v1.9
|
|
file: test/e2e/common/storage/configmap_volume.go
|
|
- testname: ConfigMap Volume, without mapping, volume mode set
|
|
codename: '[sig-storage] ConfigMap should be consumable from pods in volume with
|
|
defaultMode set [LinuxOnly] [NodeConformance] [Conformance]'
|
|
description: Create a ConfigMap, create a Pod that mounts a volume and populates
|
|
the volume with data stored in the ConfigMap. File mode is changed to a custom
|
|
value of '0x400'. The ConfigMap that is created MUST be accessible to read from
|
|
the newly created Pod using the volume mount. The data content of the file MUST
|
|
be readable and verified and file modes MUST be set to the custom value of '0x400'
|
|
This test is marked LinuxOnly since Windows does not support setting specific
|
|
file permissions.
|
|
release: v1.9
|
|
file: test/e2e/common/storage/configmap_volume.go
|
|
- testname: ConfigMap Volume, with mapping
|
|
codename: '[sig-storage] ConfigMap should be consumable from pods in volume with
|
|
mappings [NodeConformance] [Conformance]'
|
|
description: Create a ConfigMap, create a Pod that mounts a volume and populates
|
|
the volume with data stored in the ConfigMap. Files are mapped to a path in the
|
|
volume. The ConfigMap that is created MUST be accessible to read from the newly
|
|
created Pod using the volume mount. The data content of the file MUST be readable
|
|
and verified and file modes MUST default to 0x644.
|
|
release: v1.9
|
|
file: test/e2e/common/storage/configmap_volume.go
|
|
- testname: ConfigMap Volume, with mapping, volume mode set
|
|
codename: '[sig-storage] ConfigMap should be consumable from pods in volume with
|
|
mappings and Item mode set [LinuxOnly] [NodeConformance] [Conformance]'
|
|
description: Create a ConfigMap, create a Pod that mounts a volume and populates
|
|
the volume with data stored in the ConfigMap. Files are mapped to a path in the
|
|
volume. File mode is changed to a custom value of '0x400'. The ConfigMap that
|
|
is created MUST be accessible to read from the newly created Pod using the volume
|
|
mount. The data content of the file MUST be readable and verified and file modes
|
|
MUST be set to the custom value of '0x400' This test is marked LinuxOnly since
|
|
Windows does not support setting specific file permissions.
|
|
release: v1.9
|
|
file: test/e2e/common/storage/configmap_volume.go
|
|
- testname: ConfigMap Volume, with mapping, non-root user
|
|
codename: '[sig-storage] ConfigMap should be consumable from pods in volume with
|
|
mappings as non-root [NodeConformance] [Conformance]'
|
|
description: Create a ConfigMap, create a Pod that mounts a volume and populates
|
|
the volume with data stored in the ConfigMap. Files are mapped to a path in the
|
|
volume. Pod is run as a non-root user with uid=1000. The ConfigMap that is created
|
|
MUST be accessible to read from the newly created Pod using the volume mount.
|
|
The file on the volume MUST have file mode set to default value of 0x644.
|
|
release: v1.9
|
|
file: test/e2e/common/storage/configmap_volume.go
|
|
- testname: ConfigMap Volume, multiple volume maps
|
|
codename: '[sig-storage] ConfigMap should be consumable in multiple volumes in the
|
|
same pod [NodeConformance] [Conformance]'
|
|
description: The ConfigMap that is created MUST be accessible to read from the newly
|
|
created Pod using the volume mount that is mapped to multiple paths in the Pod.
|
|
The content MUST be accessible from all the mapped volume mounts.
|
|
release: v1.9
|
|
file: test/e2e/common/storage/configmap_volume.go
|
|
- testname: ConfigMap Volume, immutability
|
|
codename: '[sig-storage] ConfigMap should be immutable if `immutable` field is set
|
|
[Conformance]'
|
|
description: Create a ConfigMap. Update it's data field, the update MUST succeed.
|
|
Mark the ConfigMap as immutable, the update MUST succeed. Try to update its data,
|
|
the update MUST fail. Try to mark the ConfigMap back as not immutable, the update
|
|
MUST fail. Try to update the ConfigMap`s metadata (labels), the update must succeed.
|
|
Try to delete the ConfigMap, the deletion must succeed.
|
|
release: v1.21
|
|
file: test/e2e/common/storage/configmap_volume.go
|
|
- testname: ConfigMap Volume, update
|
|
codename: '[sig-storage] ConfigMap updates should be reflected in volume [NodeConformance]
|
|
[Conformance]'
|
|
description: The ConfigMap that is created MUST be accessible to read from the newly
|
|
created Pod using the volume mount that is mapped to custom path in the Pod. When
|
|
the ConfigMap is updated the change to the config map MUST be verified by reading
|
|
the content from the mounted file in the Pod.
|
|
release: v1.9
|
|
file: test/e2e/common/storage/configmap_volume.go
|
|
- testname: DownwardAPI volume, CPU limits
|
|
codename: '[sig-storage] Downward API volume should provide container''s cpu limit
|
|
[NodeConformance] [Conformance]'
|
|
description: A Pod is configured with DownwardAPIVolumeSource and DownwardAPIVolumeFiles
|
|
contains a item for the CPU limits. The container runtime MUST be able to access
|
|
CPU limits from the specified path on the mounted volume.
|
|
release: v1.9
|
|
file: test/e2e/common/storage/downwardapi_volume.go
|
|
- testname: DownwardAPI volume, CPU request
|
|
codename: '[sig-storage] Downward API volume should provide container''s cpu request
|
|
[NodeConformance] [Conformance]'
|
|
description: A Pod is configured with DownwardAPIVolumeSource and DownwardAPIVolumeFiles
|
|
contains a item for the CPU request. The container runtime MUST be able to access
|
|
CPU request from the specified path on the mounted volume.
|
|
release: v1.9
|
|
file: test/e2e/common/storage/downwardapi_volume.go
|
|
- testname: DownwardAPI volume, memory limits
|
|
codename: '[sig-storage] Downward API volume should provide container''s memory
|
|
limit [NodeConformance] [Conformance]'
|
|
description: A Pod is configured with DownwardAPIVolumeSource and DownwardAPIVolumeFiles
|
|
contains a item for the memory limits. The container runtime MUST be able to access
|
|
memory limits from the specified path on the mounted volume.
|
|
release: v1.9
|
|
file: test/e2e/common/storage/downwardapi_volume.go
|
|
- testname: DownwardAPI volume, memory request
|
|
codename: '[sig-storage] Downward API volume should provide container''s memory
|
|
request [NodeConformance] [Conformance]'
|
|
description: A Pod is configured with DownwardAPIVolumeSource and DownwardAPIVolumeFiles
|
|
contains a item for the memory request. The container runtime MUST be able to
|
|
access memory request from the specified path on the mounted volume.
|
|
release: v1.9
|
|
file: test/e2e/common/storage/downwardapi_volume.go
|
|
- testname: DownwardAPI volume, CPU limit, default node allocatable
|
|
codename: '[sig-storage] Downward API volume should provide node allocatable (cpu)
|
|
as default cpu limit if the limit is not set [NodeConformance] [Conformance]'
|
|
description: A Pod is configured with DownwardAPIVolumeSource and DownwardAPIVolumeFiles
|
|
contains a item for the CPU limits. CPU limits is not specified for the container.
|
|
The container runtime MUST be able to access CPU limits from the specified path
|
|
on the mounted volume and the value MUST be default node allocatable.
|
|
release: v1.9
|
|
file: test/e2e/common/storage/downwardapi_volume.go
|
|
- testname: DownwardAPI volume, memory limit, default node allocatable
|
|
codename: '[sig-storage] Downward API volume should provide node allocatable (memory)
|
|
as default memory limit if the limit is not set [NodeConformance] [Conformance]'
|
|
description: A Pod is configured with DownwardAPIVolumeSource and DownwardAPIVolumeFiles
|
|
contains a item for the memory limits. memory limits is not specified for the
|
|
container. The container runtime MUST be able to access memory limits from the
|
|
specified path on the mounted volume and the value MUST be default node allocatable.
|
|
release: v1.9
|
|
file: test/e2e/common/storage/downwardapi_volume.go
|
|
- testname: DownwardAPI volume, pod name
|
|
codename: '[sig-storage] Downward API volume should provide podname only [NodeConformance]
|
|
[Conformance]'
|
|
description: A Pod is configured with DownwardAPIVolumeSource and DownwardAPIVolumeFiles
|
|
contains a item for the Pod name. The container runtime MUST be able to access
|
|
Pod name from the specified path on the mounted volume.
|
|
release: v1.9
|
|
file: test/e2e/common/storage/downwardapi_volume.go
|
|
- testname: DownwardAPI volume, volume mode 0400
|
|
codename: '[sig-storage] Downward API volume should set DefaultMode on files [LinuxOnly]
|
|
[NodeConformance] [Conformance]'
|
|
description: A Pod is configured with DownwardAPIVolumeSource with the volumesource
|
|
mode set to -r-------- and DownwardAPIVolumeFiles contains a item for the Pod
|
|
name. The container runtime MUST be able to access Pod name from the specified
|
|
path on the mounted volume. This test is marked LinuxOnly since Windows does not
|
|
support setting specific file permissions.
|
|
release: v1.9
|
|
file: test/e2e/common/storage/downwardapi_volume.go
|
|
- testname: DownwardAPI volume, file mode 0400
|
|
codename: '[sig-storage] Downward API volume should set mode on item file [LinuxOnly]
|
|
[NodeConformance] [Conformance]'
|
|
description: A Pod is configured with DownwardAPIVolumeSource and DownwardAPIVolumeFiles
|
|
contains a item for the Pod name with the file mode set to -r--------. The container
|
|
runtime MUST be able to access Pod name from the specified path on the mounted
|
|
volume. This test is marked LinuxOnly since Windows does not support setting specific
|
|
file permissions.
|
|
release: v1.9
|
|
file: test/e2e/common/storage/downwardapi_volume.go
|
|
- testname: DownwardAPI volume, update annotations
|
|
codename: '[sig-storage] Downward API volume should update annotations on modification
|
|
[NodeConformance] [Conformance]'
|
|
description: A Pod is configured with DownwardAPIVolumeSource and DownwardAPIVolumeFiles
|
|
contains list of items for each of the Pod annotations. The container runtime
|
|
MUST be able to access Pod annotations from the specified path on the mounted
|
|
volume. Update the annotations by adding a new annotation to the running Pod.
|
|
The new annotation MUST be available from the mounted volume.
|
|
release: v1.9
|
|
file: test/e2e/common/storage/downwardapi_volume.go
|
|
- testname: DownwardAPI volume, update label
|
|
codename: '[sig-storage] Downward API volume should update labels on modification
|
|
[NodeConformance] [Conformance]'
|
|
description: A Pod is configured with DownwardAPIVolumeSource and DownwardAPIVolumeFiles
|
|
contains list of items for each of the Pod labels. The container runtime MUST
|
|
be able to access Pod labels from the specified path on the mounted volume. Update
|
|
the labels by adding a new label to the running Pod. The new label MUST be available
|
|
from the mounted volume.
|
|
release: v1.9
|
|
file: test/e2e/common/storage/downwardapi_volume.go
|
|
- testname: EmptyDir, Shared volumes between containers
|
|
codename: '[sig-storage] EmptyDir volumes pod should support shared volumes between
|
|
containers [Conformance]'
|
|
description: A Pod created with an 'emptyDir' Volume, should share volumes between
|
|
the containeres in the pod. The two busybox image containers shoud share the volumes
|
|
mounted to the pod. The main container shoud wait until the sub container drops
|
|
a file, and main container acess the shared data.
|
|
release: v1.15
|
|
file: test/e2e/common/storage/empty_dir.go
|
|
- testname: EmptyDir, medium default, volume mode 0644
|
|
codename: '[sig-storage] EmptyDir volumes should support (non-root,0644,default)
|
|
[LinuxOnly] [NodeConformance] [Conformance]'
|
|
description: A Pod created with an 'emptyDir' Volume, the volume mode set to 0644.
|
|
Volume is mounted into the container where container is run as a non-root user.
|
|
The volume MUST have mode -rw-r--r-- and mount type set to tmpfs and the contents
|
|
MUST be readable. This test is marked LinuxOnly since Windows does not support
|
|
setting specific file permissions, or running as UID / GID.
|
|
release: v1.9
|
|
file: test/e2e/common/storage/empty_dir.go
|
|
- testname: EmptyDir, medium memory, volume mode 0644, non-root user
|
|
codename: '[sig-storage] EmptyDir volumes should support (non-root,0644,tmpfs) [LinuxOnly]
|
|
[NodeConformance] [Conformance]'
|
|
description: A Pod created with an 'emptyDir' Volume and 'medium' as 'Memory', the
|
|
volume mode set to 0644. Volume is mounted into the container where container
|
|
is run as a non-root user. The volume MUST have mode -rw-r--r-- and mount type
|
|
set to tmpfs and the contents MUST be readable. This test is marked LinuxOnly
|
|
since Windows does not support setting specific file permissions, or running as
|
|
UID / GID, or the medium = 'Memory'.
|
|
release: v1.9
|
|
file: test/e2e/common/storage/empty_dir.go
|
|
- testname: EmptyDir, medium default, volume mode 0666
|
|
codename: '[sig-storage] EmptyDir volumes should support (non-root,0666,default)
|
|
[LinuxOnly] [NodeConformance] [Conformance]'
|
|
description: A Pod created with an 'emptyDir' Volume, the volume mode set to 0666.
|
|
Volume is mounted into the container where container is run as a non-root user.
|
|
The volume MUST have mode -rw-rw-rw- and mount type set to tmpfs and the contents
|
|
MUST be readable. This test is marked LinuxOnly since Windows does not support
|
|
setting specific file permissions, or running as UID / GID.
|
|
release: v1.9
|
|
file: test/e2e/common/storage/empty_dir.go
|
|
- testname: EmptyDir, medium memory, volume mode 0666,, non-root user
|
|
codename: '[sig-storage] EmptyDir volumes should support (non-root,0666,tmpfs) [LinuxOnly]
|
|
[NodeConformance] [Conformance]'
|
|
description: A Pod created with an 'emptyDir' Volume and 'medium' as 'Memory', the
|
|
volume mode set to 0666. Volume is mounted into the container where container
|
|
is run as a non-root user. The volume MUST have mode -rw-rw-rw- and mount type
|
|
set to tmpfs and the contents MUST be readable. This test is marked LinuxOnly
|
|
since Windows does not support setting specific file permissions, or running as
|
|
UID / GID, or the medium = 'Memory'.
|
|
release: v1.9
|
|
file: test/e2e/common/storage/empty_dir.go
|
|
- testname: EmptyDir, medium default, volume mode 0777
|
|
codename: '[sig-storage] EmptyDir volumes should support (non-root,0777,default)
|
|
[LinuxOnly] [NodeConformance] [Conformance]'
|
|
description: A Pod created with an 'emptyDir' Volume, the volume mode set to 0777.
|
|
Volume is mounted into the container where container is run as a non-root user.
|
|
The volume MUST have mode -rwxrwxrwx and mount type set to tmpfs and the contents
|
|
MUST be readable. This test is marked LinuxOnly since Windows does not support
|
|
setting specific file permissions, or running as UID / GID.
|
|
release: v1.9
|
|
file: test/e2e/common/storage/empty_dir.go
|
|
- testname: EmptyDir, medium memory, volume mode 0777, non-root user
|
|
codename: '[sig-storage] EmptyDir volumes should support (non-root,0777,tmpfs) [LinuxOnly]
|
|
[NodeConformance] [Conformance]'
|
|
description: A Pod created with an 'emptyDir' Volume and 'medium' as 'Memory', the
|
|
volume mode set to 0777. Volume is mounted into the container where container
|
|
is run as a non-root user. The volume MUST have mode -rwxrwxrwx and mount type
|
|
set to tmpfs and the contents MUST be readable. This test is marked LinuxOnly
|
|
since Windows does not support setting specific file permissions, or running as
|
|
UID / GID, or the medium = 'Memory'.
|
|
release: v1.9
|
|
file: test/e2e/common/storage/empty_dir.go
|
|
- testname: EmptyDir, medium default, volume mode 0644
|
|
codename: '[sig-storage] EmptyDir volumes should support (root,0644,default) [LinuxOnly]
|
|
[NodeConformance] [Conformance]'
|
|
description: A Pod created with an 'emptyDir' Volume, the volume mode set to 0644.
|
|
The volume MUST have mode -rw-r--r-- and mount type set to tmpfs and the contents
|
|
MUST be readable. This test is marked LinuxOnly since Windows does not support
|
|
setting specific file permissions, or running as UID / GID.
|
|
release: v1.9
|
|
file: test/e2e/common/storage/empty_dir.go
|
|
- testname: EmptyDir, medium memory, volume mode 0644
|
|
codename: '[sig-storage] EmptyDir volumes should support (root,0644,tmpfs) [LinuxOnly]
|
|
[NodeConformance] [Conformance]'
|
|
description: A Pod created with an 'emptyDir' Volume and 'medium' as 'Memory', the
|
|
volume mode set to 0644. The volume MUST have mode -rw-r--r-- and mount type set
|
|
to tmpfs and the contents MUST be readable. This test is marked LinuxOnly since
|
|
Windows does not support setting specific file permissions, or running as UID
|
|
/ GID, or the medium = 'Memory'.
|
|
release: v1.9
|
|
file: test/e2e/common/storage/empty_dir.go
|
|
- testname: EmptyDir, medium default, volume mode 0666
|
|
codename: '[sig-storage] EmptyDir volumes should support (root,0666,default) [LinuxOnly]
|
|
[NodeConformance] [Conformance]'
|
|
description: A Pod created with an 'emptyDir' Volume, the volume mode set to 0666.
|
|
The volume MUST have mode -rw-rw-rw- and mount type set to tmpfs and the contents
|
|
MUST be readable. This test is marked LinuxOnly since Windows does not support
|
|
setting specific file permissions, or running as UID / GID.
|
|
release: v1.9
|
|
file: test/e2e/common/storage/empty_dir.go
|
|
- testname: EmptyDir, medium memory, volume mode 0666
|
|
codename: '[sig-storage] EmptyDir volumes should support (root,0666,tmpfs) [LinuxOnly]
|
|
[NodeConformance] [Conformance]'
|
|
description: A Pod created with an 'emptyDir' Volume and 'medium' as 'Memory', the
|
|
volume mode set to 0666. The volume MUST have mode -rw-rw-rw- and mount type set
|
|
to tmpfs and the contents MUST be readable. This test is marked LinuxOnly since
|
|
Windows does not support setting specific file permissions, or running as UID
|
|
/ GID, or the medium = 'Memory'.
|
|
release: v1.9
|
|
file: test/e2e/common/storage/empty_dir.go
|
|
- testname: EmptyDir, medium default, volume mode 0777
|
|
codename: '[sig-storage] EmptyDir volumes should support (root,0777,default) [LinuxOnly]
|
|
[NodeConformance] [Conformance]'
|
|
description: A Pod created with an 'emptyDir' Volume, the volume mode set to 0777. The
|
|
volume MUST have mode set as -rwxrwxrwx and mount type set to tmpfs and the contents
|
|
MUST be readable. This test is marked LinuxOnly since Windows does not support
|
|
setting specific file permissions, or running as UID / GID.
|
|
release: v1.9
|
|
file: test/e2e/common/storage/empty_dir.go
|
|
- testname: EmptyDir, medium memory, volume mode 0777
|
|
codename: '[sig-storage] EmptyDir volumes should support (root,0777,tmpfs) [LinuxOnly]
|
|
[NodeConformance] [Conformance]'
|
|
description: A Pod created with an 'emptyDir' Volume and 'medium' as 'Memory', the
|
|
volume mode set to 0777. The volume MUST have mode set as -rwxrwxrwx and mount
|
|
type set to tmpfs and the contents MUST be readable. This test is marked LinuxOnly
|
|
since Windows does not support setting specific file permissions, or running as
|
|
UID / GID, or the medium = 'Memory'.
|
|
release: v1.9
|
|
file: test/e2e/common/storage/empty_dir.go
|
|
- testname: EmptyDir, medium default, volume mode default
|
|
codename: '[sig-storage] EmptyDir volumes volume on default medium should have the
|
|
correct mode [LinuxOnly] [NodeConformance] [Conformance]'
|
|
description: A Pod created with an 'emptyDir' Volume, the volume MUST have mode
|
|
set as -rwxrwxrwx and mount type set to tmpfs. This test is marked LinuxOnly since
|
|
Windows does not support setting specific file permissions.
|
|
release: v1.9
|
|
file: test/e2e/common/storage/empty_dir.go
|
|
- testname: EmptyDir, medium memory, volume mode default
|
|
codename: '[sig-storage] EmptyDir volumes volume on tmpfs should have the correct
|
|
mode [LinuxOnly] [NodeConformance] [Conformance]'
|
|
description: A Pod created with an 'emptyDir' Volume and 'medium' as 'Memory', the
|
|
volume MUST have mode set as -rwxrwxrwx and mount type set to tmpfs. This test
|
|
is marked LinuxOnly since Windows does not support setting specific file permissions,
|
|
or the medium = 'Memory'.
|
|
release: v1.9
|
|
file: test/e2e/common/storage/empty_dir.go
|
|
- testname: EmptyDir Wrapper Volume, ConfigMap volumes, no race
|
|
codename: '[sig-storage] EmptyDir wrapper volumes should not cause race condition
|
|
when used for configmaps [Serial] [Conformance]'
|
|
description: Create 50 ConfigMaps Volumes and 5 replicas of pod with these ConfigMapvolumes
|
|
mounted. Pod MUST NOT fail waiting for Volumes.
|
|
release: v1.13
|
|
file: test/e2e/storage/empty_dir_wrapper.go
|
|
- testname: EmptyDir Wrapper Volume, Secret and ConfigMap volumes, no conflict
|
|
codename: '[sig-storage] EmptyDir wrapper volumes should not conflict [Conformance]'
|
|
description: Secret volume and ConfigMap volume is created with data. Pod MUST be
|
|
able to start with Secret and ConfigMap volumes mounted into the container.
|
|
release: v1.13
|
|
file: test/e2e/storage/empty_dir_wrapper.go
|
|
- testname: Projected Volume, multiple projections
|
|
codename: '[sig-storage] Projected combined should project all components that make
|
|
up the projection API [Projection][NodeConformance] [Conformance]'
|
|
description: A Pod is created with a projected volume source for secrets, configMap
|
|
and downwardAPI with pod name, cpu and memory limits and cpu and memory requests.
|
|
Pod MUST be able to read the secrets, configMap values and the cpu and memory
|
|
limits as well as cpu and memory requests from the mounted DownwardAPIVolumeFiles.
|
|
release: v1.9
|
|
file: test/e2e/common/storage/projected_combined.go
|
|
- testname: Projected Volume, ConfigMap, create, update and delete
|
|
codename: '[sig-storage] Projected configMap optional updates should be reflected
|
|
in volume [NodeConformance] [Conformance]'
|
|
description: Create a Pod with three containers with ConfigMaps namely a create,
|
|
update and delete container. Create Container when started MUST not have configMap,
|
|
update and delete containers MUST be created with a ConfigMap value as 'value-1'.
|
|
Create a configMap in the create container, the Pod MUST be able to read the configMap
|
|
from the create container. Update the configMap in the update container, Pod MUST
|
|
be able to read the updated configMap value. Delete the configMap in the delete
|
|
container. Pod MUST fail to read the configMap from the delete container.
|
|
release: v1.9
|
|
file: test/e2e/common/storage/projected_configmap.go
|
|
- testname: Projected Volume, ConfigMap, volume mode default
|
|
codename: '[sig-storage] Projected configMap should be consumable from pods in volume
|
|
[NodeConformance] [Conformance]'
|
|
description: A Pod is created with projected volume source 'ConfigMap' to store
|
|
a configMap with default permission mode. Pod MUST be able to read the content
|
|
of the ConfigMap successfully and the mode on the volume MUST be -rw-r--r--.
|
|
release: v1.9
|
|
file: test/e2e/common/storage/projected_configmap.go
|
|
- testname: Projected Volume, ConfigMap, non-root user
|
|
codename: '[sig-storage] Projected configMap should be consumable from pods in volume
|
|
as non-root [NodeConformance] [Conformance]'
|
|
description: A Pod is created with projected volume source 'ConfigMap' to store
|
|
a configMap as non-root user with uid 1000. Pod MUST be able to read the content
|
|
of the ConfigMap successfully and the mode on the volume MUST be -rw-r--r--.
|
|
release: v1.9
|
|
file: test/e2e/common/storage/projected_configmap.go
|
|
- testname: Projected Volume, ConfigMap, volume mode 0400
|
|
codename: '[sig-storage] Projected configMap should be consumable from pods in volume
|
|
with defaultMode set [LinuxOnly] [NodeConformance] [Conformance]'
|
|
description: A Pod is created with projected volume source 'ConfigMap' to store
|
|
a configMap with permission mode set to 0400. Pod MUST be able to read the content
|
|
of the ConfigMap successfully and the mode on the volume MUST be -r--------. This
|
|
test is marked LinuxOnly since Windows does not support setting specific file
|
|
permissions.
|
|
release: v1.9
|
|
file: test/e2e/common/storage/projected_configmap.go
|
|
- testname: Projected Volume, ConfigMap, mapped
|
|
codename: '[sig-storage] Projected configMap should be consumable from pods in volume
|
|
with mappings [NodeConformance] [Conformance]'
|
|
description: A Pod is created with projected volume source 'ConfigMap' to store
|
|
a configMap with default permission mode. The ConfigMap is also mapped to a custom
|
|
path. Pod MUST be able to read the content of the ConfigMap from the custom location
|
|
successfully and the mode on the volume MUST be -rw-r--r--.
|
|
release: v1.9
|
|
file: test/e2e/common/storage/projected_configmap.go
|
|
- testname: Projected Volume, ConfigMap, mapped, volume mode 0400
|
|
codename: '[sig-storage] Projected configMap should be consumable from pods in volume
|
|
with mappings and Item mode set [LinuxOnly] [NodeConformance] [Conformance]'
|
|
description: A Pod is created with projected volume source 'ConfigMap' to store
|
|
a configMap with permission mode set to 0400. The ConfigMap is also mapped to
|
|
a custom path. Pod MUST be able to read the content of the ConfigMap from the
|
|
custom location successfully and the mode on the volume MUST be -r--r--r--. This
|
|
test is marked LinuxOnly since Windows does not support setting specific file
|
|
permissions.
|
|
release: v1.9
|
|
file: test/e2e/common/storage/projected_configmap.go
|
|
- testname: Projected Volume, ConfigMap, mapped, non-root user
|
|
codename: '[sig-storage] Projected configMap should be consumable from pods in volume
|
|
with mappings as non-root [NodeConformance] [Conformance]'
|
|
description: A Pod is created with projected volume source 'ConfigMap' to store
|
|
a configMap as non-root user with uid 1000. The ConfigMap is also mapped to a
|
|
custom path. Pod MUST be able to read the content of the ConfigMap from the custom
|
|
location successfully and the mode on the volume MUST be -r--r--r--.
|
|
release: v1.9
|
|
file: test/e2e/common/storage/projected_configmap.go
|
|
- testname: Projected Volume, ConfigMap, multiple volume paths
|
|
codename: '[sig-storage] Projected configMap should be consumable in multiple volumes
|
|
in the same pod [NodeConformance] [Conformance]'
|
|
description: A Pod is created with a projected volume source 'ConfigMap' to store
|
|
a configMap. The configMap is mapped to two different volume mounts. Pod MUST
|
|
be able to read the content of the configMap successfully from the two volume
|
|
mounts.
|
|
release: v1.9
|
|
file: test/e2e/common/storage/projected_configmap.go
|
|
- testname: Projected Volume, ConfigMap, update
|
|
codename: '[sig-storage] Projected configMap updates should be reflected in volume
|
|
[NodeConformance] [Conformance]'
|
|
description: A Pod is created with projected volume source 'ConfigMap' to store
|
|
a configMap and performs a create and update to new value. Pod MUST be able to
|
|
create the configMap with value-1. Pod MUST be able to update the value in the
|
|
confgiMap to value-2.
|
|
release: v1.9
|
|
file: test/e2e/common/storage/projected_configmap.go
|
|
- testname: Projected Volume, DownwardAPI, CPU limits
|
|
codename: '[sig-storage] Projected downwardAPI should provide container''s cpu limit
|
|
[NodeConformance] [Conformance]'
|
|
description: A Pod is created with a projected volume source for downwardAPI with
|
|
pod name, cpu and memory limits and cpu and memory requests. Pod MUST be able
|
|
to read the cpu limits from the mounted DownwardAPIVolumeFiles.
|
|
release: v1.9
|
|
file: test/e2e/common/storage/projected_downwardapi.go
|
|
- testname: Projected Volume, DownwardAPI, CPU request
|
|
codename: '[sig-storage] Projected downwardAPI should provide container''s cpu request
|
|
[NodeConformance] [Conformance]'
|
|
description: A Pod is created with a projected volume source for downwardAPI with
|
|
pod name, cpu and memory limits and cpu and memory requests. Pod MUST be able
|
|
to read the cpu request from the mounted DownwardAPIVolumeFiles.
|
|
release: v1.9
|
|
file: test/e2e/common/storage/projected_downwardapi.go
|
|
- testname: Projected Volume, DownwardAPI, memory limits
|
|
codename: '[sig-storage] Projected downwardAPI should provide container''s memory
|
|
limit [NodeConformance] [Conformance]'
|
|
description: A Pod is created with a projected volume source for downwardAPI with
|
|
pod name, cpu and memory limits and cpu and memory requests. Pod MUST be able
|
|
to read the memory limits from the mounted DownwardAPIVolumeFiles.
|
|
release: v1.9
|
|
file: test/e2e/common/storage/projected_downwardapi.go
|
|
- testname: Projected Volume, DownwardAPI, memory request
|
|
codename: '[sig-storage] Projected downwardAPI should provide container''s memory
|
|
request [NodeConformance] [Conformance]'
|
|
description: A Pod is created with a projected volume source for downwardAPI with
|
|
pod name, cpu and memory limits and cpu and memory requests. Pod MUST be able
|
|
to read the memory request from the mounted DownwardAPIVolumeFiles.
|
|
release: v1.9
|
|
file: test/e2e/common/storage/projected_downwardapi.go
|
|
- testname: Projected Volume, DownwardAPI, CPU limit, node allocatable
|
|
codename: '[sig-storage] Projected downwardAPI should provide node allocatable (cpu)
|
|
as default cpu limit if the limit is not set [NodeConformance] [Conformance]'
|
|
description: A Pod is created with a projected volume source for downwardAPI with
|
|
pod name, cpu and memory limits and cpu and memory requests. The CPU and memory
|
|
resources for requests and limits are NOT specified for the container. Pod MUST
|
|
be able to read the default cpu limits from the mounted DownwardAPIVolumeFiles.
|
|
release: v1.9
|
|
file: test/e2e/common/storage/projected_downwardapi.go
|
|
- testname: Projected Volume, DownwardAPI, memory limit, node allocatable
|
|
codename: '[sig-storage] Projected downwardAPI should provide node allocatable (memory)
|
|
as default memory limit if the limit is not set [NodeConformance] [Conformance]'
|
|
description: A Pod is created with a projected volume source for downwardAPI with
|
|
pod name, cpu and memory limits and cpu and memory requests. The CPU and memory
|
|
resources for requests and limits are NOT specified for the container. Pod MUST
|
|
be able to read the default memory limits from the mounted DownwardAPIVolumeFiles.
|
|
release: v1.9
|
|
file: test/e2e/common/storage/projected_downwardapi.go
|
|
- testname: Projected Volume, DownwardAPI, pod name
|
|
codename: '[sig-storage] Projected downwardAPI should provide podname only [NodeConformance]
|
|
[Conformance]'
|
|
description: A Pod is created with a projected volume source for downwardAPI with
|
|
pod name, cpu and memory limits and cpu and memory requests. Pod MUST be able
|
|
to read the pod name from the mounted DownwardAPIVolumeFiles.
|
|
release: v1.9
|
|
file: test/e2e/common/storage/projected_downwardapi.go
|
|
- testname: Projected Volume, DownwardAPI, volume mode 0400
|
|
codename: '[sig-storage] Projected downwardAPI should set DefaultMode on files [LinuxOnly]
|
|
[NodeConformance] [Conformance]'
|
|
description: A Pod is created with a projected volume source for downwardAPI with
|
|
pod name, cpu and memory limits and cpu and memory requests. The default mode
|
|
for the volume mount is set to 0400. Pod MUST be able to read the pod name from
|
|
the mounted DownwardAPIVolumeFiles and the volume mode must be -r--------. This
|
|
test is marked LinuxOnly since Windows does not support setting specific file
|
|
permissions.
|
|
release: v1.9
|
|
file: test/e2e/common/storage/projected_downwardapi.go
|
|
- testname: Projected Volume, DownwardAPI, volume mode 0400
|
|
codename: '[sig-storage] Projected downwardAPI should set mode on item file [LinuxOnly]
|
|
[NodeConformance] [Conformance]'
|
|
description: A Pod is created with a projected volume source for downwardAPI with
|
|
pod name, cpu and memory limits and cpu and memory requests. The default mode
|
|
for the volume mount is set to 0400. Pod MUST be able to read the pod name from
|
|
the mounted DownwardAPIVolumeFiles and the volume mode must be -r--------. This
|
|
test is marked LinuxOnly since Windows does not support setting specific file
|
|
permissions.
|
|
release: v1.9
|
|
file: test/e2e/common/storage/projected_downwardapi.go
|
|
- testname: Projected Volume, DownwardAPI, update annotation
|
|
codename: '[sig-storage] Projected downwardAPI should update annotations on modification
|
|
[NodeConformance] [Conformance]'
|
|
description: A Pod is created with a projected volume source for downwardAPI with
|
|
pod name, cpu and memory limits and cpu and memory requests and annotation items.
|
|
Pod MUST be able to read the annotations from the mounted DownwardAPIVolumeFiles.
|
|
Annotations are then updated. Pod MUST be able to read the updated values for
|
|
the Annotations.
|
|
release: v1.9
|
|
file: test/e2e/common/storage/projected_downwardapi.go
|
|
- testname: Projected Volume, DownwardAPI, update labels
|
|
codename: '[sig-storage] Projected downwardAPI should update labels on modification
|
|
[NodeConformance] [Conformance]'
|
|
description: A Pod is created with a projected volume source for downwardAPI with
|
|
pod name, cpu and memory limits and cpu and memory requests and label items. Pod
|
|
MUST be able to read the labels from the mounted DownwardAPIVolumeFiles. Labels
|
|
are then updated. Pod MUST be able to read the updated values for the Labels.
|
|
release: v1.9
|
|
file: test/e2e/common/storage/projected_downwardapi.go
|
|
- testname: Projected Volume, Secrets, create, update delete
|
|
codename: '[sig-storage] Projected secret optional updates should be reflected in
|
|
volume [NodeConformance] [Conformance]'
|
|
description: Create a Pod with three containers with secrets namely a create, update
|
|
and delete container. Create Container when started MUST no have a secret, update
|
|
and delete containers MUST be created with a secret value. Create a secret in
|
|
the create container, the Pod MUST be able to read the secret from the create
|
|
container. Update the secret in the update container, Pod MUST be able to read
|
|
the updated secret value. Delete the secret in the delete container. Pod MUST
|
|
fail to read the secret from the delete container.
|
|
release: v1.9
|
|
file: test/e2e/common/storage/projected_secret.go
|
|
- testname: Projected Volume, Secrets, volume mode default
|
|
codename: '[sig-storage] Projected secret should be consumable from pods in volume
|
|
[NodeConformance] [Conformance]'
|
|
description: A Pod is created with a projected volume source 'secret' to store a
|
|
secret with a specified key with default permission mode. Pod MUST be able to
|
|
read the content of the key successfully and the mode MUST be -rw-r--r-- by default.
|
|
release: v1.9
|
|
file: test/e2e/common/storage/projected_secret.go
|
|
- testname: Project Volume, Secrets, non-root, custom fsGroup
|
|
codename: '[sig-storage] Projected secret should be consumable from pods in volume
|
|
as non-root with defaultMode and fsGroup set [LinuxOnly] [NodeConformance] [Conformance]'
|
|
description: A Pod is created with a projected volume source 'secret' to store a
|
|
secret with a specified key. The volume has permission mode set to 0440, fsgroup
|
|
set to 1001 and user set to non-root uid of 1000. Pod MUST be able to read the
|
|
content of the key successfully and the mode MUST be -r--r-----. This test is
|
|
marked LinuxOnly since Windows does not support setting specific file permissions,
|
|
or running as UID / GID.
|
|
release: v1.9
|
|
file: test/e2e/common/storage/projected_secret.go
|
|
- testname: Projected Volume, Secrets, volume mode 0400
|
|
codename: '[sig-storage] Projected secret should be consumable from pods in volume
|
|
with defaultMode set [LinuxOnly] [NodeConformance] [Conformance]'
|
|
description: A Pod is created with a projected volume source 'secret' to store a
|
|
secret with a specified key with permission mode set to 0x400 on the Pod. Pod
|
|
MUST be able to read the content of the key successfully and the mode MUST be
|
|
-r--------. This test is marked LinuxOnly since Windows does not support setting
|
|
specific file permissions.
|
|
release: v1.9
|
|
file: test/e2e/common/storage/projected_secret.go
|
|
- testname: Projected Volume, Secrets, mapped
|
|
codename: '[sig-storage] Projected secret should be consumable from pods in volume
|
|
with mappings [NodeConformance] [Conformance]'
|
|
description: A Pod is created with a projected volume source 'secret' to store a
|
|
secret with a specified key with default permission mode. The secret is also mapped
|
|
to a custom path. Pod MUST be able to read the content of the key successfully
|
|
and the mode MUST be -r--------on the mapped volume.
|
|
release: v1.9
|
|
file: test/e2e/common/storage/projected_secret.go
|
|
- testname: Projected Volume, Secrets, mapped, volume mode 0400
|
|
codename: '[sig-storage] Projected secret should be consumable from pods in volume
|
|
with mappings and Item Mode set [LinuxOnly] [NodeConformance] [Conformance]'
|
|
description: A Pod is created with a projected volume source 'secret' to store a
|
|
secret with a specified key with permission mode set to 0400. The secret is also
|
|
mapped to a specific name. Pod MUST be able to read the content of the key successfully
|
|
and the mode MUST be -r-------- on the mapped volume. This test is marked LinuxOnly
|
|
since Windows does not support setting specific file permissions.
|
|
release: v1.9
|
|
file: test/e2e/common/storage/projected_secret.go
|
|
- testname: Projected Volume, Secrets, mapped, multiple paths
|
|
codename: '[sig-storage] Projected secret should be consumable in multiple volumes
|
|
in a pod [NodeConformance] [Conformance]'
|
|
description: A Pod is created with a projected volume source 'secret' to store a
|
|
secret with a specified key. The secret is mapped to two different volume mounts.
|
|
Pod MUST be able to read the content of the key successfully from the two volume
|
|
mounts and the mode MUST be -r-------- on the mapped volumes.
|
|
release: v1.9
|
|
file: test/e2e/common/storage/projected_secret.go
|
|
- testname: Secrets Volume, create, update and delete
|
|
codename: '[sig-storage] Secrets optional updates should be reflected in volume
|
|
[NodeConformance] [Conformance]'
|
|
description: Create a Pod with three containers with secrets volume sources namely
|
|
a create, update and delete container. Create Container when started MUST not
|
|
have secret, update and delete containers MUST be created with a secret value.
|
|
Create a secret in the create container, the Pod MUST be able to read the secret
|
|
from the create container. Update the secret in the update container, Pod MUST
|
|
be able to read the updated secret value. Delete the secret in the delete container.
|
|
Pod MUST fail to read the secret from the delete container.
|
|
release: v1.9
|
|
file: test/e2e/common/storage/secrets_volume.go
|
|
- testname: Secrets Volume, volume mode default, secret with same name in different
|
|
namespace
|
|
codename: '[sig-storage] Secrets should be able to mount in a volume regardless
|
|
of a different secret existing with same name in different namespace [NodeConformance]
|
|
[Conformance]'
|
|
description: Create a secret with same name in two namespaces. Create a Pod with
|
|
secret volume source configured into the container. Pod MUST be able to read the
|
|
secrets from the mounted volume from the container runtime and only secrets which
|
|
are associated with namespace where pod is created. The file mode of the secret
|
|
MUST be -rw-r--r-- by default.
|
|
release: v1.12
|
|
file: test/e2e/common/storage/secrets_volume.go
|
|
- testname: Secrets Volume, default
|
|
codename: '[sig-storage] Secrets should be consumable from pods in volume [NodeConformance]
|
|
[Conformance]'
|
|
description: Create a secret. Create a Pod with secret volume source configured
|
|
into the container. Pod MUST be able to read the secret from the mounted volume
|
|
from the container runtime and the file mode of the secret MUST be -rw-r--r--
|
|
by default.
|
|
release: v1.9
|
|
file: test/e2e/common/storage/secrets_volume.go
|
|
- testname: Secrets Volume, volume mode 0440, fsGroup 1001 and uid 1000
|
|
codename: '[sig-storage] Secrets should be consumable from pods in volume as non-root
|
|
with defaultMode and fsGroup set [LinuxOnly] [NodeConformance] [Conformance]'
|
|
description: Create a secret. Create a Pod with secret volume source configured
|
|
into the container with file mode set to 0x440 as a non-root user with uid 1000
|
|
and fsGroup id 1001. Pod MUST be able to read the secret from the mounted volume
|
|
from the container runtime and the file mode of the secret MUST be -r--r-----by
|
|
default. This test is marked LinuxOnly since Windows does not support setting
|
|
specific file permissions, or running as UID / GID.
|
|
release: v1.9
|
|
file: test/e2e/common/storage/secrets_volume.go
|
|
- testname: Secrets Volume, volume mode 0400
|
|
codename: '[sig-storage] Secrets should be consumable from pods in volume with defaultMode
|
|
set [LinuxOnly] [NodeConformance] [Conformance]'
|
|
description: Create a secret. Create a Pod with secret volume source configured
|
|
into the container with file mode set to 0x400. Pod MUST be able to read the secret
|
|
from the mounted volume from the container runtime and the file mode of the secret
|
|
MUST be -r-------- by default. This test is marked LinuxOnly since Windows does
|
|
not support setting specific file permissions.
|
|
release: v1.9
|
|
file: test/e2e/common/storage/secrets_volume.go
|
|
- testname: Secrets Volume, mapping
|
|
codename: '[sig-storage] Secrets should be consumable from pods in volume with mappings
|
|
[NodeConformance] [Conformance]'
|
|
description: Create a secret. Create a Pod with secret volume source configured
|
|
into the container with a custom path. Pod MUST be able to read the secret from
|
|
the mounted volume from the specified custom path. The file mode of the secret
|
|
MUST be -rw-r--r-- by default.
|
|
release: v1.9
|
|
file: test/e2e/common/storage/secrets_volume.go
|
|
- testname: Secrets Volume, mapping, volume mode 0400
|
|
codename: '[sig-storage] Secrets should be consumable from pods in volume with mappings
|
|
and Item Mode set [LinuxOnly] [NodeConformance] [Conformance]'
|
|
description: Create a secret. Create a Pod with secret volume source configured
|
|
into the container with a custom path and file mode set to 0x400. Pod MUST be
|
|
able to read the secret from the mounted volume from the specified custom path.
|
|
The file mode of the secret MUST be -r--r--r--. This test is marked LinuxOnly
|
|
since Windows does not support setting specific file permissions.
|
|
release: v1.9
|
|
file: test/e2e/common/storage/secrets_volume.go
|
|
- testname: Secrets Volume, mapping multiple volume paths
|
|
codename: '[sig-storage] Secrets should be consumable in multiple volumes in a pod
|
|
[NodeConformance] [Conformance]'
|
|
description: Create a secret. Create a Pod with two secret volume sources configured
|
|
into the container in to two different custom paths. Pod MUST be able to read
|
|
the secret from the both the mounted volumes from the two specified custom paths.
|
|
release: v1.9
|
|
file: test/e2e/common/storage/secrets_volume.go
|
|
- testname: Secrets Volume, immutability
|
|
codename: '[sig-storage] Secrets should be immutable if `immutable` field is set
|
|
[Conformance]'
|
|
description: Create a secret. Update it's data field, the update MUST succeed. Mark
|
|
the secret as immutable, the update MUST succeed. Try to update its data, the
|
|
update MUST fail. Try to mark the secret back as not immutable, the update MUST
|
|
fail. Try to update the secret`s metadata (labels), the update must succeed. Try
|
|
to delete the secret, the deletion must succeed.
|
|
release: v1.21
|
|
file: test/e2e/common/storage/secrets_volume.go
|
|
- testname: 'SubPath: Reading content from a configmap volume.'
|
|
codename: '[sig-storage] Subpath Atomic writer volumes should support subpaths with
|
|
configmap pod [LinuxOnly] [Conformance]'
|
|
description: Containers in a pod can read content from a configmap mounted volume
|
|
which was configured with a subpath. This test is marked LinuxOnly since Windows
|
|
cannot mount individual files in Containers.
|
|
release: v1.12
|
|
file: test/e2e/storage/subpath.go
|
|
- testname: 'SubPath: Reading content from a configmap volume.'
|
|
codename: '[sig-storage] Subpath Atomic writer volumes should support subpaths with
|
|
configmap pod with mountPath of existing file [LinuxOnly] [Conformance]'
|
|
description: Containers in a pod can read content from a configmap mounted volume
|
|
which was configured with a subpath and also using a mountpath that is a specific
|
|
file. This test is marked LinuxOnly since Windows cannot mount individual files
|
|
in Containers.
|
|
release: v1.12
|
|
file: test/e2e/storage/subpath.go
|
|
- testname: 'SubPath: Reading content from a downwardAPI volume.'
|
|
codename: '[sig-storage] Subpath Atomic writer volumes should support subpaths with
|
|
downward pod [LinuxOnly] [Conformance]'
|
|
description: Containers in a pod can read content from a downwardAPI mounted volume
|
|
which was configured with a subpath. This test is marked LinuxOnly since Windows
|
|
cannot mount individual files in Containers.
|
|
release: v1.12
|
|
file: test/e2e/storage/subpath.go
|
|
- testname: 'SubPath: Reading content from a projected volume.'
|
|
codename: '[sig-storage] Subpath Atomic writer volumes should support subpaths with
|
|
projected pod [LinuxOnly] [Conformance]'
|
|
description: Containers in a pod can read content from a projected mounted volume
|
|
which was configured with a subpath. This test is marked LinuxOnly since Windows
|
|
cannot mount individual files in Containers.
|
|
release: v1.12
|
|
file: test/e2e/storage/subpath.go
|
|
- testname: 'SubPath: Reading content from a secret volume.'
|
|
codename: '[sig-storage] Subpath Atomic writer volumes should support subpaths with
|
|
secret pod [LinuxOnly] [Conformance]'
|
|
description: Containers in a pod can read content from a secret mounted volume which
|
|
was configured with a subpath. This test is marked LinuxOnly since Windows cannot
|
|
mount individual files in Containers.
|
|
release: v1.12
|
|
file: test/e2e/storage/subpath.go
|
|
|