├── README.md ├── brickpriv.yaml ├── clusterrole_restricted.yaml ├── demo └── demo_asciinema.cast ├── demokubeconfig ├── docs └── command_cheat_sheet.md ├── images ├── .gitignore ├── .zsh_history ├── README.md ├── botty │ ├── .gotty │ ├── .zsh_history │ ├── ConMachi │ ├── Dockerfile │ ├── README.md │ ├── helm-v2.16.1-linux-amd64.tar.gz │ ├── istioctl │ ├── krew_plugin_list.txt │ ├── linux-amd64 │ │ ├── LICENSE │ │ ├── README.md │ │ ├── helm │ │ └── tiller │ └── reg-pillage ├── package.json └── pwn_python │ ├── Dockerfile │ ├── README.md │ ├── app.py │ ├── package.json │ └── requirements.txt ├── mirror_pod.yaml ├── public_webadminsvc.yaml ├── setup.sh ├── setup_kubeconfig.sh ├── webadmin.yaml └── webadmin_allow_role_to_see_endpoints.yaml /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antitree/cmd_and_kubectl_demos/HEAD/README.md -------------------------------------------------------------------------------- /brickpriv.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antitree/cmd_and_kubectl_demos/HEAD/brickpriv.yaml -------------------------------------------------------------------------------- /clusterrole_restricted.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antitree/cmd_and_kubectl_demos/HEAD/clusterrole_restricted.yaml -------------------------------------------------------------------------------- /demo/demo_asciinema.cast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antitree/cmd_and_kubectl_demos/HEAD/demo/demo_asciinema.cast -------------------------------------------------------------------------------- /demokubeconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antitree/cmd_and_kubectl_demos/HEAD/demokubeconfig -------------------------------------------------------------------------------- /docs/command_cheat_sheet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antitree/cmd_and_kubectl_demos/HEAD/docs/command_cheat_sheet.md -------------------------------------------------------------------------------- /images/.gitignore: -------------------------------------------------------------------------------- 1 | istio- 2 | -------------------------------------------------------------------------------- /images/.zsh_history: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antitree/cmd_and_kubectl_demos/HEAD/images/.zsh_history -------------------------------------------------------------------------------- /images/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antitree/cmd_and_kubectl_demos/HEAD/images/README.md -------------------------------------------------------------------------------- /images/botty/.gotty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antitree/cmd_and_kubectl_demos/HEAD/images/botty/.gotty -------------------------------------------------------------------------------- /images/botty/.zsh_history: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antitree/cmd_and_kubectl_demos/HEAD/images/botty/.zsh_history -------------------------------------------------------------------------------- /images/botty/ConMachi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antitree/cmd_and_kubectl_demos/HEAD/images/botty/ConMachi -------------------------------------------------------------------------------- /images/botty/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antitree/cmd_and_kubectl_demos/HEAD/images/botty/Dockerfile -------------------------------------------------------------------------------- /images/botty/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antitree/cmd_and_kubectl_demos/HEAD/images/botty/README.md -------------------------------------------------------------------------------- /images/botty/helm-v2.16.1-linux-amd64.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antitree/cmd_and_kubectl_demos/HEAD/images/botty/helm-v2.16.1-linux-amd64.tar.gz -------------------------------------------------------------------------------- /images/botty/istioctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antitree/cmd_and_kubectl_demos/HEAD/images/botty/istioctl -------------------------------------------------------------------------------- /images/botty/krew_plugin_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antitree/cmd_and_kubectl_demos/HEAD/images/botty/krew_plugin_list.txt -------------------------------------------------------------------------------- /images/botty/linux-amd64/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antitree/cmd_and_kubectl_demos/HEAD/images/botty/linux-amd64/LICENSE -------------------------------------------------------------------------------- /images/botty/linux-amd64/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antitree/cmd_and_kubectl_demos/HEAD/images/botty/linux-amd64/README.md -------------------------------------------------------------------------------- /images/botty/linux-amd64/helm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antitree/cmd_and_kubectl_demos/HEAD/images/botty/linux-amd64/helm -------------------------------------------------------------------------------- /images/botty/linux-amd64/tiller: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antitree/cmd_and_kubectl_demos/HEAD/images/botty/linux-amd64/tiller -------------------------------------------------------------------------------- /images/botty/reg-pillage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antitree/cmd_and_kubectl_demos/HEAD/images/botty/reg-pillage -------------------------------------------------------------------------------- /images/package.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /images/pwn_python/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antitree/cmd_and_kubectl_demos/HEAD/images/pwn_python/Dockerfile -------------------------------------------------------------------------------- /images/pwn_python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antitree/cmd_and_kubectl_demos/HEAD/images/pwn_python/README.md -------------------------------------------------------------------------------- /images/pwn_python/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antitree/cmd_and_kubectl_demos/HEAD/images/pwn_python/app.py -------------------------------------------------------------------------------- /images/pwn_python/package.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /images/pwn_python/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antitree/cmd_and_kubectl_demos/HEAD/images/pwn_python/requirements.txt -------------------------------------------------------------------------------- /mirror_pod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antitree/cmd_and_kubectl_demos/HEAD/mirror_pod.yaml -------------------------------------------------------------------------------- /public_webadminsvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antitree/cmd_and_kubectl_demos/HEAD/public_webadminsvc.yaml -------------------------------------------------------------------------------- /setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antitree/cmd_and_kubectl_demos/HEAD/setup.sh -------------------------------------------------------------------------------- /setup_kubeconfig.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antitree/cmd_and_kubectl_demos/HEAD/setup_kubeconfig.sh -------------------------------------------------------------------------------- /webadmin.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antitree/cmd_and_kubectl_demos/HEAD/webadmin.yaml -------------------------------------------------------------------------------- /webadmin_allow_role_to_see_endpoints.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antitree/cmd_and_kubectl_demos/HEAD/webadmin_allow_role_to_see_endpoints.yaml --------------------------------------------------------------------------------