kubernetes/test/e2e/testing-manifests
Kubernetes Prow Robot 300eda2f2f
Merge pull request #138746 from humblec/update-etcd-image-3.6.11
etcd: update etcd image to v3.6.11
2026-05-12 17:39:32 +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
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 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.11 2026-05-03 19:28:50 +05:30
storage-csi Merge pull request #137936 from humblec/update-csi-sidecar-images 2026-05-10 08:47:45 +05:30
embed.go Re-add nvidia-gpu-device-plugin.yaml in test suite itself 2024-09-27 14:23:57 -04:00
pod
README.md

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.