We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7ff39fb commit 21f5b1bCopy full SHA for 21f5b1b
1 file changed
test/e2e/run.sh
@@ -2,7 +2,7 @@
2
3
# Usage: $0
4
# Current working directory must be the root of the Git repository.
5
-# The only reason for this is the `make` commands.
+# The reasons for this are the `make` commands and the location of CRDs.
6
7
set -euo pipefail
8
@@ -67,12 +67,22 @@ kubectl get pods -A -o wide
67
68
kubectl create clusterrole node-viewer --verb=get,list,watch --resource=nodes
69
70
+kubectl create -f ./config/crd/
71
+
72
kubectl apply -f - <<EOF
73
apiVersion: rbac.authorization.k8s.io/v1
74
kind: Role
75
metadata:
76
name: testreq
77
rules:
78
+- apiGroups:
79
+ - "fma.llm-d.ai"
80
+ resources:
81
+ - launcherconfigs
82
+ verbs:
83
+ - get
84
+ - list
85
+ - watch
86
- apiGroups:
87
- ""
88
resourceNames:
0 commit comments