Just download podman from their website and follow the instraction steps to install and setup podman on Windows
The steps described here all come from from Podman documentation but for ease of use they are all here described.
Just download podman from their website and follow the instraction steps to install and setup podman on Windows
The steps described here all come from from Podman documentation but for ease of use they are all here described.
| #!/bin/bash | |
| # Variables to keep track of the total available CPU and memory | |
| total_available_cpu=0 | |
| total_available_memory=0 | |
| for node in $(kubectl get nodes -o jsonpath='{.items[*].metadata.name}'); do | |
| echo "Node: $node" | |
| # Get the current usage |