kubernetes/test/e2e/testing-manifests
Jitesh Kumar 7bc0a4a16d test/images/agnhost: bump to 2.65.0
The new version includes a generic /envvar endpoint in netexec that
reads any named environment variable, enabling e2e tests to retrieve
spec.nodeName via the Downward API instead of relying on os.Hostname().

Ref: https://github.com/kubernetes/k8s.io/pull/9608
Signed-off-by: Jitesh Kumar <jiteshkumardj@gmail.com>
2026-06-16 00:05:07 +05:30
..
auth/encrypt test: fix kind local registry config for kms ci jobs 2026-01-12 12:59:14 -08:00
dra DRA: use full image name in test manifests 2026-04-10 17:10:40 +02:00
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 v2.5.8 for COS M125 2026-04-28 10:31:01 -07:00
guestbook ci: redis removal for e2e test dependency simplicity 2025-07-08 09:14:54 +08:00
kubectl test/images/agnhost: bump to 2.65.0 2026-06-16 00:05:07 +05:30
sample-device-plugin Bump sample-device-plugin image version 2024-02-06 15:35:11 +02:00
serviceloadbalancer test/images/agnhost: bump to 2.65.0 2026-06-16 00:05:07 +05:30
statefulset etcd: update etcd image to v3.7.0-rc.0 2026-06-01 20:29:57 -04:00
storage-csi csi: update CSI sidecar images in test manifests 2026-06-09 12:55:31 +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.