You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This label instructs the Kueue Operator that the namespace should be managed by its webhook admission controllers. As a result, any Kueue resources within that namespace will be properly validated and mutated.
127
+
128
+
### Debugging
129
+
Run your changes against a cluster using `go run`
130
+
131
+
1. create a kind cluster:
132
+
unset KUBECONFIG environment variable, the cluster access configuration is stored in ${HOME}/.kube/config
133
+
```
134
+
unset KUBECONFIG
135
+
kind create cluster --name=kueue-debug
136
+
```
137
+
138
+
You can use an existing cluster you have
139
+
140
+
2. create the namespace from where the operator will run:
141
+
```
142
+
export KUBECONFIG=${HOME}/.kube/config
143
+
# make sure you are at the root of the kueue operator repo
0 commit comments