ceph-csi/vendor/k8s.io/kubernetes/test/e2e/testing-manifests
dependabot[bot] e5d9b68d36 rebase: bump the golang-dependencies group with 1 update
Bumps the golang-dependencies group with 1 update: [golang.org/x/crypto](https://github.com/golang/crypto).


Updates `golang.org/x/crypto` from 0.16.0 to 0.17.0
- [Commits](https://github.com/golang/crypto/compare/v0.16.0...v0.17.0)

---
updated-dependencies:
- dependency-name: golang.org/x/crypto
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: golang-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
2023-12-21 13:34:39 +00:00
..
cluster-dns rebase: update kubernetes to v1.25.0 2022-08-25 16:36:35 +00:00
flexvolume rebase: update kubernetes dep to 1.24.0 2022-05-09 09:16:12 +00:00
guestbook rebase: update kubernetes dep to 1.24.0 2022-05-09 09:16:12 +00:00
kubectl rebase: bump the golang-dependencies group with 1 update 2023-12-21 13:34:39 +00:00
sample-device-plugin rebase: bump the golang-dependencies group with 1 update 2023-12-21 13:34:39 +00:00
scheduling rebase: bump the golang-dependencies group with 1 update 2023-12-21 13:34:39 +00:00
statefulset rebase: update kubernetes to v1.25.0 2022-08-25 16:36:35 +00:00
storage-csi rebase: bump k8s.io/kubernetes from 1.26.2 to 1.27.2 2023-06-06 12:21:43 +00:00
embed.go rebase: bump k8s.io/kubernetes from 1.26.2 to 1.27.2 2023-06-06 12:21:43 +00:00
pod rebase: update kubernetes dep to 1.24.0 2022-05-09 09:16:12 +00:00
rbd-storage-class.yaml rebase: update kubernetes dep to 1.24.0 2022-05-09 09:16:12 +00:00
README.md rebase: update kubernetes dep to 1.24.0 2022-05-09 09:16:12 +00:00

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.