diff --git a/test/conformance/testdata/conformance.txt b/test/conformance/testdata/conformance.txt index aeb40da83c0..886423bba47 100755 --- a/test/conformance/testdata/conformance.txt +++ b/test/conformance/testdata/conformance.txt @@ -113,34 +113,34 @@ test/e2e/common/pods.go: "should allow activeDeadlineSeconds to be updated" test/e2e/common/pods.go: "should contain environment variables for services" test/e2e/common/pods.go: "should support remote command execution over websockets" test/e2e/common/pods.go: "should support retrieving logs from the container over websockets" -test/e2e/common/projected.go: "should be consumable from pods in volume" -test/e2e/common/projected.go: "should be consumable from pods in volume with defaultMode set" -test/e2e/common/projected.go: "should be consumable from pods in volume as non-root with defaultMode and fsGroup set" -test/e2e/common/projected.go: "should be consumable from pods in volume with mappings" -test/e2e/common/projected.go: "should be consumable from pods in volume with mappings and Item Mode set" -test/e2e/common/projected.go: "should be consumable in multiple volumes in a pod" -test/e2e/common/projected.go: "optional updates should be reflected in volume" -test/e2e/common/projected.go: "should be consumable from pods in volume" -test/e2e/common/projected.go: "should be consumable from pods in volume with defaultMode set" -test/e2e/common/projected.go: "should be consumable from pods in volume as non-root" -test/e2e/common/projected.go: "should be consumable from pods in volume with mappings" -test/e2e/common/projected.go: "should be consumable from pods in volume with mappings and Item mode set" -test/e2e/common/projected.go: "should be consumable from pods in volume with mappings as non-root" -test/e2e/common/projected.go: "updates should be reflected in volume" -test/e2e/common/projected.go: "optional updates should be reflected in volume" -test/e2e/common/projected.go: "should be consumable in multiple volumes in the same pod" -test/e2e/common/projected.go: "should provide podname only" -test/e2e/common/projected.go: "should set DefaultMode on files" -test/e2e/common/projected.go: "should set mode on item file" -test/e2e/common/projected.go: "should update labels on modification" -test/e2e/common/projected.go: "should update annotations on modification" -test/e2e/common/projected.go: "should provide container's cpu limit" -test/e2e/common/projected.go: "should provide container's memory limit" -test/e2e/common/projected.go: "should provide container's cpu request" -test/e2e/common/projected.go: "should provide container's memory request" -test/e2e/common/projected.go: "should provide node allocatable (cpu) as default cpu limit if the limit is not set" -test/e2e/common/projected.go: "should provide node allocatable (memory) as default memory limit if the limit is not set" -test/e2e/common/projected.go: "should project all components that make up the projection API" +test/e2e/common/projected_combined.go: "should project all components that make up the projection API" +test/e2e/common/projected_configmap.go: "should be consumable from pods in volume" +test/e2e/common/projected_configmap.go: "should be consumable from pods in volume with defaultMode set" +test/e2e/common/projected_configmap.go: "should be consumable from pods in volume as non-root" +test/e2e/common/projected_configmap.go: "should be consumable from pods in volume with mappings" +test/e2e/common/projected_configmap.go: "should be consumable from pods in volume with mappings and Item mode set" +test/e2e/common/projected_configmap.go: "should be consumable from pods in volume with mappings as non-root" +test/e2e/common/projected_configmap.go: "updates should be reflected in volume" +test/e2e/common/projected_configmap.go: "optional updates should be reflected in volume" +test/e2e/common/projected_configmap.go: "should be consumable in multiple volumes in the same pod" +test/e2e/common/projected_downwardapi.go: "should provide podname only" +test/e2e/common/projected_downwardapi.go: "should set DefaultMode on files" +test/e2e/common/projected_downwardapi.go: "should set mode on item file" +test/e2e/common/projected_downwardapi.go: "should update labels on modification" +test/e2e/common/projected_downwardapi.go: "should update annotations on modification" +test/e2e/common/projected_downwardapi.go: "should provide container's cpu limit" +test/e2e/common/projected_downwardapi.go: "should provide container's memory limit" +test/e2e/common/projected_downwardapi.go: "should provide container's cpu request" +test/e2e/common/projected_downwardapi.go: "should provide container's memory request" +test/e2e/common/projected_downwardapi.go: "should provide node allocatable (cpu) as default cpu limit if the limit is not set" +test/e2e/common/projected_downwardapi.go: "should provide node allocatable (memory) as default memory limit if the limit is not set" +test/e2e/common/projected_secret.go: "should be consumable from pods in volume" +test/e2e/common/projected_secret.go: "should be consumable from pods in volume with defaultMode set" +test/e2e/common/projected_secret.go: "should be consumable from pods in volume as non-root with defaultMode and fsGroup set" +test/e2e/common/projected_secret.go: "should be consumable from pods in volume with mappings" +test/e2e/common/projected_secret.go: "should be consumable from pods in volume with mappings and Item Mode set" +test/e2e/common/projected_secret.go: "should be consumable in multiple volumes in a pod" +test/e2e/common/projected_secret.go: "optional updates should be reflected in volume" test/e2e/common/runtime.go: "should run with the expected status" test/e2e/common/secrets.go: "should be consumable from pods in env vars" test/e2e/common/secrets.go: "should be consumable via the environment" diff --git a/test/e2e/common/BUILD b/test/e2e/common/BUILD index 779fff5ef45..495e99258a4 100644 --- a/test/e2e/common/BUILD +++ b/test/e2e/common/BUILD @@ -29,7 +29,10 @@ go_library( "node_lease.go", "pods.go", "privileged.go", - "projected.go", + "projected_combined.go", + "projected_configmap.go", + "projected_downwardapi.go", + "projected_secret.go", "runtime.go", "secrets.go", "secrets_volume.go",