Kubernetes vagrant - Get dashboard access
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Usage: Assuming a vagrant based kubernetes (as in https://coreos.com/kubernetes/docs/latest/kubernetes-on-vagrant-single.html), run this script in the same folder of the Vagrantfile (where you would normally do "vagrant up") | |
# * Then insert the password (by default: kubernetes) | |
# * Browse localhost:9090 | |
USERNAME='kubernetes' | |
PASSWORD='kubernetes' | |
function main() { | |
Create_user_on_kubernetes_machine | |
SSH_port_forwarding | |
# Enjoy (at localhost:9090) | |
} | |
function Create_user_on_kubernetes_machine() { | |
# Attribution: https://help.ubuntu.com/community/AddUsersHowto | |
# Attribution: http://stackoverflow.com/questions/2150882/how-to-automatically-add-user-account-and-password-with-a-bash-script | |
vagrant ssh -c "if [ ! -d /home/$USERNAME ]; then sudo useradd $USERNAME -m -s /bin/bash && echo '$USERNAME:$PASSWORD' | sudo chpasswd; fi" | |
} | |
function SSH_port_forwarding() { | |
KUBERNETES_HOST=$(kubectl cluster-info | head -n 1 | grep -o -E '([0-9]+\.){3}[0-9]+') | |
# Attribution: https://github.com/kubernetes/dashboard/issues/692 | |
# * Comment: https://github.com/kubernetes/dashboard/issues/692#issuecomment-251617588 | |
# * By bbalzola: https://github.com/bbalzola | |
TARGET=$(kubectl describe services kubernetes-dashboard --namespace=kube-system | grep Endpoints | awk '{ print $2 }') | |
# Attribution: https://help.ubuntu.com/community/SSH/OpenSSH/PortForwarding | |
ssh -L 9090:$TARGET $USERNAME@$KUBERNETES_HOST | |
} | |
main |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment