- nmap
- Add
ypuffy.htbto the hosts file so we can refer to the host by name$ echo "10.10.10.121 help.htb" >> /etc/hosts
| #!/usr/bin/env bash | |
| set -e | |
| set -o pipefail | |
| # FORMATTING ################################################################### | |
| DEFAULT=`tput sgr0` | |
| BOLD=`tput bold` | |
| RED=`tput setaf 1` | |
| GREEN=`tput setaf 2` |
The entire Kubernetes architecture is API driven, so the API server is the center of a Kubernetes cluster. All operations go through the API server, like accesssing data in etcd, accepting kubectl and controller requests, and more.
$ curl -k https://127.0.0.1:6443/apisLorem ipsum dolor...
This is a PoC of the kubernetes-vault-client using an instance of Vault running in -dev mode and local instance of minikube. The kubernetes-vault-client tool is run in an init container and uses Vault kubernetes auth to pull secrets from Vault and dump then into a volume that can be mounted in any container in a pod, preferably as an emptyDir with media: Memory. It is meant to be run on a laptop and is used to demonstrate the various configurations necessary to get it working.