Created
October 31, 2021 14:30
-
-
Save susimsek/ad2e1b18a3a3bf76fe515a674f549bd9 to your computer and use it in GitHub Desktop.
Kubernetes Install Script
This file contains hidden or 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 | |
| # Variables ######################################## | |
| KUBERNETES_DASHBOARD_ENABLED=false | |
| CERT_MANAGER_ENABLED=true | |
| JENKINS_ENABLED=false | |
| SONARQUBE_ENABLED=false | |
| ISTIO_ENABLED=false | |
| RANCHER_ENABLED=false |
This file contains hidden or 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 | |
| # Variables ######################################## | |
| IP_HAPROXY=$(dig +short elb.kub) | |
| KUBESPRAY_VERSION=2.15 | |
| KUBESPRAY_PATH=${HOME}/kubespray | |
| SSH_PASSWORD=vagrant | |
| HELM_ENABLED=true | |
| METRIC_SERVER_ENABLED=true | |
| METALLB_ENABLED=true | |
| METALLB_IP_RANGE=192.168.12.240-192.168.12.250 | |
| NGINX_INGRESS_ENABLED=true | |
| HAPROXY_ENABLED=true | |
| WEAVE_ENABLED=true | |
| AUTH_ENABLED=true |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment