2. Logging
Use a DaemonSet for Pods that need to run one per machine, because they provide a machine-specific system service.
Learning k8s basics
For example, to mark a node unschedulable, run this command:
Use a DaemonSet for Pods that need to run one per machine, because they provide a machine-specific system service.
Learning k8s basics
For example, to mark a node unschedulable, run this command:
| #!/usr/bin/env bash | |
| # This script generates a list of repos in a GitHub org. | |
| # The list can be pasted directly to a Microsoft Excel sheet. | |
| # You will need to use your GitHub username in the username field. | |
| # Update the page=N number to get the complete list of repos. | |
| curl --silent --user "username" "https://api.github.com/orgs/vmware/repos?page=1&per_page=100" | npx jq '.[].html_url' | while read repo | |
| do | |
| echo "=Hyperlink("$repo","$repo")" | |
| done |