-
-
Notifications
You must be signed in to change notification settings - Fork 13
Add guide for deploying operators and CSI drivers on separate nodes #818
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Conversation
NOTE: This is work-in-progress
✅ Deploy Preview for stackable-docs ready!
To edit notification comments on pull requests, go to your Netlify project configuration. |
|
Note to self for next time I work on this:
|
| Remaining operators:: | ||
| + | ||
| -- | ||
| NOTE: These operator use the same values file. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
| NOTE: These operator use the same values file. | |
| NOTE: These operators use the same values file. |
| [source,bash] | ||
| ---- | ||
| OPERATORS_NODEPOOL=$(kubectl get nodes -l nodepool=stackable-operators -o jsonpath="{.items[*].metadata.name}" | tr ' ' ',') | ||
| echo "Nodes in operators pool: $OPERATORS_NODEPOOL\n" | ||
| kubectl get pods -o json | jq --raw-output --arg nodepool "$OPERATORS_NODEPOOL" '.items[] | .metadata.name as $podname | .spec.nodeName as $nodename | select($nodename | IN($nodepool | split(",")[])) | $podname' | ||
| ---- |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
note: This is tricky to read on the live page, so maybe introduce line breaks in appropriate places.
Part of stackabletech/issues#763 (comment)
Note
This is work-in-progress