kubernetes/test/e2e/testing-manifests
Praveen M 9f1f7dea1c e2e: add executable permission to snapshot metadata test script
The run_snapshot_metadata_e2e.sh script was missing the executable
bit, causing "Permission denied" (exit code 126) when test-infra
invokes it directly from the command line.
2026-03-02 11:23:19 +05:30
..
auth/encrypt test: fix kind local registry config for kms ci jobs 2026-01-12 12:59:14 -08:00
dra Merge pull request #136337 from pohly/dra-e2e-hostpath-image-selection 2026-02-10 00:02:02 +05:30
flexvolume We do not pass device path to unmount device 2018-12-03 17:31:01 -05:00
gpu/gce bump cos-gpu-installer to support cos 121 2025-10-09 10:56:29 +03:00
guestbook ci: redis removal for e2e test dependency simplicity 2025-07-08 09:14:54 +08:00
kubectl Promote agnhost image to 2.63.0 2026-02-05 17:21:34 +00:00
sample-device-plugin Bump sample-device-plugin image version 2024-02-06 15:35:11 +02:00
serviceloadbalancer Promote agnhost image to 2.63.0 2026-02-05 17:21:34 +00:00
statefulset etcd: update etcd image to v3.6.8 2026-02-18 21:29:56 +08:00
storage-csi e2e: add executable permission to snapshot metadata test script 2026-03-02 11:23:19 +05:30
embed.go Re-add nvidia-gpu-device-plugin.yaml in test suite itself 2024-09-27 14:23:57 -04:00
pod Remove examples directory 2018-04-24 19:45:43 +01:00
README.md docs: add documentation on adding files to the embedded data 2021-06-29 23:30:50 +05:30

test/e2e/testing-manifests

Embedded Test Data

In case one needs to use any test fixture inside your tests and those are defined inside this directory, they need to be added to the //go:embed directive in embed.go.

For example, if one wants to include this Readme as a test fixture (potential bad idea in reality!),

// embed.go

...
//go:embed some other files README.md
...

This fixture can be accessed in the e2e tests using test/e2e/framework/testfiles.Read like testfiles.Read("test/e2e/testing-manifests/README.md).

This is needed since migrating to //go:embed from go-bindata.