This is my Kubernetes reference page. Most are commands that I don't want to forget, links to credits where due.
kubectl cluster-info dump
kubectl get nodes -o jsonpath='{ $.items[*].status.addresses[?(@.type=="InternalIP")].address }'
This is my Kubernetes reference page. Most are commands that I don't want to forget, links to credits where due.
kubectl cluster-info dump
kubectl get nodes -o jsonpath='{ $.items[*].status.addresses[?(@.type=="InternalIP")].address }'
Beginning in Systemd v197, network interfaces assigned by systemd/udev are "predicatble";
Names are now based on;
The repository for the assignment is public and Github does not allow the creation of private forks for public repositories.
The correct way of creating a private frok by duplicating the repo is documented here.
For this assignment the commands are:
git clone --bare git@github.com:usi-systems/easytrace.git
| #!/bin/bash | |
| if [ "$(xcode-select -p 1>/dev/null; echo $?)" -ne 0 ]; then xcode-select --install; fi && \ | |
| curl -O -L -J https://sourceforge.net/projects/sshpass/files/latest/download && \ | |
| ARCHIVE="$(find . -name sshpass*.tar.gz -ctime -30s)" && \ | |
| tar xvzf "$ARCHIVE" && \ | |
| cd "${ARCHIVE%%.*}" && \ | |
| echo "./configure" && \ | |
| echo "make" && \ | |
| echo "sudo make install" && \ |
| # Brewfile: Homebrew bundle file for macOS or Linux app install (with notes/source repos) | |
| # | |
| # Author : Chad Mayfield (chad@chadmayfield.com) | |
| # License : GPLv3 | |
| # | |
| # INFO: * Links and comments are added because I'm too old to remember where everything is :) | |
| # * install.sh can be used, but it needs some love (some of it doesn't work correctly). | |
| # * TODO items (and additional information) is listed at the bottom | |
| # | |
| # Installation steps; |