Jenkins X 3.x GitOps repository using Docker/Kind to create a kubernetes cluster, gitea for git hosting and local secrets
Make sure you have installed and are running Docker Desktop
You need to setup some environment variables first...
# if you are on a mac
export PLATFORM=darwin
# or windows...
export PLATFORM=windows
# we need your machines local IP address and the gateway & subnet for making the docker network:
export IP="192.168.1.202"
export GATEWAY="192.168.1.254"
export SUBNET="192.168.1.0/16"
once those are setup you can create a kind cluster with gitea and the Jenkins X Git Operator installed via:
./kind.sh create
to tear it all down again
./kind.sh destroy