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
# Source: https://gist.github.com/9a9752cf5355f1b8095bd34565b80aae | |
#################### | |
# Create A Cluster # | |
#################### | |
# Open Docker Preferences, select the Kubernetes tab, and select the "Enable Kubernetes" checkbox | |
# Open Docker Preferences, select the Resources > Advanced tab, set CPUs to 4, and Memory to 6.0 GiB, and press the "Apply & Restart" button | |
################# | |
# Install Istio # | |
################# | |
# Make sure that nginx Ingress is not running | |
istioctl manifest install \ | |
--skip-confirmation | |
# If Docker Desktop | |
export INGRESS_HOST=127.0.0.1 | |
echo $INGRESS_HOST | |
####################### | |
# Destroy the cluster # | |
####################### | |
# Open Docker Troubleshoot, and select the "Reset Kubernetes cluster" button | |
# Select *Quit Docker Desktop* |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment