Golang App Deployment With Vagrant
https://github.com/susimsek/golang-echo-graphql-example
- Docker 19.03+
- Docker Compose 1.25+
docker-compose up -d
- Kubernetes 1.12+
- Helm 3.1.0
- PV provisioner support in the underlying infrastructure
helm install app helm-chart/app
- Vagrant 2.2+
- Virtualbox or Hyperv
vagrant up
vagrant ssh
cd vagrant/docker-compose-setup
sudo chmod u+x *.sh
./install-prereqs.sh
exit
vagrant ssh
docker-compose up -d
You can access the Playground from the following url.
http://192.168.12.11:9000/playground
- Vagrant 2.2+
- Virtualbox or Hyperv
vagrant up
vagrant ssh
cd vagrant/kubernetes-setup
sudo chmod u+x *.sh
./install-prereqs.sh
exit
vagrant ssh
helm install app helm-chart/app
You can access the Playground from the following url.
- Golang 1.16.3
- Echo
- Query & Mutation & Subscription Example
- Gqlgen
- Gqlparser
- Go Uuid
- Air