kubernetes/test/e2e/testing-manifests
Paco Xu 4e5171b396 upgrade csi provisioner to v3.4.0
Signed-off-by: Paco Xu <paco.xu@daocloud.io>
2023-03-14 16:51:46 +08:00
..
auth/encrypt feat: implements encrypt all 2023-03-08 22:18:49 +00:00
cluster-dns
dra e2e dra: add test driver and tests for dynamic resource allocation 2022-11-12 00:17:15 +01:00
flexvolume
guestbook
ingress replace echoserver image with agnhost 2022-06-29 09:49:19 +02:00
kubectl
sample-device-plugin node: device-mgr: sample device plugin: manifest to avoid registration 2023-03-01 10:01:34 +00:00
scheduling Updating pause image refernces to 3.9 2022-11-14 10:24:54 -08:00
serviceloadbalancer
statefulset
storage-csi upgrade csi provisioner to v3.4.0 2023-03-14 16:51:46 +08:00
embed.go node: device-mgr: sample device plugin: manifest to avoid registration 2023-03-01 10:01:34 +00:00
pod
rbd-storage-class.yaml
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.