├── .travis.yml ├── Dockerfile ├── Makefile ├── README.md ├── confd ├── conf.d │ └── in │ │ └── haproxy.toml.in ├── confd.toml └── templates │ └── in │ └── haproxy.tmpl.in ├── entrypoint.sh ├── keys └── pem └── test.sh /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcompass/haproxy-confd/HEAD/.travis.yml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcompass/haproxy-confd/HEAD/Dockerfile -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcompass/haproxy-confd/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcompass/haproxy-confd/HEAD/README.md -------------------------------------------------------------------------------- /confd/conf.d/in/haproxy.toml.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcompass/haproxy-confd/HEAD/confd/conf.d/in/haproxy.toml.in -------------------------------------------------------------------------------- /confd/confd.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcompass/haproxy-confd/HEAD/confd/confd.toml -------------------------------------------------------------------------------- /confd/templates/in/haproxy.tmpl.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcompass/haproxy-confd/HEAD/confd/templates/in/haproxy.tmpl.in -------------------------------------------------------------------------------- /entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcompass/haproxy-confd/HEAD/entrypoint.sh -------------------------------------------------------------------------------- /keys/pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcompass/haproxy-confd/HEAD/keys/pem -------------------------------------------------------------------------------- /test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcompass/haproxy-confd/HEAD/test.sh --------------------------------------------------------------------------------