From 4d15502e438d64c1c07b741dd489a9c3dc4c976c Mon Sep 17 00:00:00 2001 From: Swati Sehgal Date: Thu, 17 Nov 2022 14:31:59 +0000 Subject: [PATCH] dra: test examples: ensure that the claim parameter name is consistent In the Dynamic Resource allocation example specs, the claim parameter name specified was inconsistent. This commit fixes that with a better/more consistent name, which is used to define the configmap and referenced in the `ResourceClaimTemplate` spec. Signed-off-by: Swati Sehgal --- test/e2e/dra/test-driver/deploy/example/pod-inline.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/e2e/dra/test-driver/deploy/example/pod-inline.yaml b/test/e2e/dra/test-driver/deploy/example/pod-inline.yaml index d1145e3dae6..4b6cf6c5c10 100644 --- a/test/e2e/dra/test-driver/deploy/example/pod-inline.yaml +++ b/test/e2e/dra/test-driver/deploy/example/pod-inline.yaml @@ -3,7 +3,7 @@ apiVersion: v1 kind: ConfigMap metadata: - name: inline-claim-parameters + name: test-inline-claim-parameters namespace: default data: a: b @@ -21,7 +21,7 @@ spec: resourceClassName: example parametersRef: kind: ConfigMap - name: pause-claim-parameters + name: test-inline-claim-parameters --- apiVersion: v1 kind: Pod