kubernetes/test/e2e/testing-manifests
Anish Ramasekar 900a8030f3
test: fix kind local registry config for kms ci jobs
Signed-off-by: Anish Ramasekar <anish.ramasekar@gmail.com>
2026-01-12 12:59:14 -08:00
..
auth/encrypt test: fix kind local registry config for kms ci jobs 2026-01-12 12:59:14 -08:00
dra Update hostpathplugin image version in DRA test driver manifest 2025-10-02 08:25:46 -03:00
flexvolume
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
ingress test: bump agnhost image to 2.54 2025-05-05 08:25:20 +02:00
kubectl ci: remove httpd usage while using agnhost instead 2025-09-01 20:11:18 +08:00
sample-device-plugin Bump sample-device-plugin image version 2024-02-06 15:35:11 +02:00
serviceloadbalancer test: bump agnhost image to 2.54 2025-05-05 08:25:20 +02:00
statefulset ci: redis removal for e2e test dependency simplicity 2025-07-08 09:14:54 +08:00
storage-csi Merge pull request #135135 from jsafrane/update-csi-manifests 2025-11-06 06:50:54 -08:00
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.