-
Notifications
You must be signed in to change notification settings - Fork 0
minio operator Consider RuntimeClassName as a string
Allan Roger Reid edited this page Jan 25, 2023
·
1 revision
Status: Open
https://github.com/minio/operator/pull/1393
RuntimeClassName is currently defined as a pointer to a string. It should simply be a string to simplify downstream usage in console.
1a. Clone https://github.com/allanrogerr/operator.git
1b. Checkout fix-runtimeclass-string
-
Comment out "destroy_kind" from testing/deploy-tenant.sh
-
Add
runtimeClassName: runc
to examples/kustomization/tenant-lite/tenant.yaml
-
Run
testing/deploy-tenant.sh
-
Define
runc
cat <<EOF | kubectl apply -f -
apiVersion: node.k8s.io/v1
kind: RuntimeClass
metadata:
name: runc
handler: runc
EOF
- Observe tenant pods with runc
k -n tenant-lite get pods
k -n tenant-lite describe pod/storage-lite-pool-0-0 | grep "Runtime Class Name"