Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Distinguish projected secret, configmap and downward api tests #68910

Merged
merged 4 commits into from
Oct 13, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
56 changes: 28 additions & 28 deletions test/conformance/testdata/conformance.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
5 changes: 4 additions & 1 deletion test/e2e/common/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down