├── .gitignore ├── README.md ├── Vagrantfile ├── app.yaml ├── bird.conf ├── calico-bgpconfiguration.yaml ├── calico-installation.yaml ├── calicoctl.cfg ├── daemon.json ├── haproxy-ingress.service ├── haproxy.cfg ├── setup_ingress_controller.sh ├── setup_kubernetes_control_plane.sh └── setup_kubernetes_worker.sh /.gitignore: -------------------------------------------------------------------------------- 1 | .vagrant 2 | *cloudimg-console.log 3 | admin.conf -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytechblog/ingress-controller-external-example/HEAD/README.md -------------------------------------------------------------------------------- /Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytechblog/ingress-controller-external-example/HEAD/Vagrantfile -------------------------------------------------------------------------------- /app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytechblog/ingress-controller-external-example/HEAD/app.yaml -------------------------------------------------------------------------------- /bird.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytechblog/ingress-controller-external-example/HEAD/bird.conf -------------------------------------------------------------------------------- /calico-bgpconfiguration.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytechblog/ingress-controller-external-example/HEAD/calico-bgpconfiguration.yaml -------------------------------------------------------------------------------- /calico-installation.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytechblog/ingress-controller-external-example/HEAD/calico-installation.yaml -------------------------------------------------------------------------------- /calicoctl.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytechblog/ingress-controller-external-example/HEAD/calicoctl.cfg -------------------------------------------------------------------------------- /daemon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytechblog/ingress-controller-external-example/HEAD/daemon.json -------------------------------------------------------------------------------- /haproxy-ingress.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytechblog/ingress-controller-external-example/HEAD/haproxy-ingress.service -------------------------------------------------------------------------------- /haproxy.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytechblog/ingress-controller-external-example/HEAD/haproxy.cfg -------------------------------------------------------------------------------- /setup_ingress_controller.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytechblog/ingress-controller-external-example/HEAD/setup_ingress_controller.sh -------------------------------------------------------------------------------- /setup_kubernetes_control_plane.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytechblog/ingress-controller-external-example/HEAD/setup_kubernetes_control_plane.sh -------------------------------------------------------------------------------- /setup_kubernetes_worker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytechblog/ingress-controller-external-example/HEAD/setup_kubernetes_worker.sh --------------------------------------------------------------------------------