├── .gitignore ├── README.md ├── helloworld-http ├── Dockerfile └── main.go ├── kubernetes-deployment.yaml └── nginx-proxy ├── Dockerfile ├── htpasswd └── nginx.conf /.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eicnix/sidecar-proxy-example/HEAD/README.md -------------------------------------------------------------------------------- /helloworld-http/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eicnix/sidecar-proxy-example/HEAD/helloworld-http/Dockerfile -------------------------------------------------------------------------------- /helloworld-http/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eicnix/sidecar-proxy-example/HEAD/helloworld-http/main.go -------------------------------------------------------------------------------- /kubernetes-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eicnix/sidecar-proxy-example/HEAD/kubernetes-deployment.yaml -------------------------------------------------------------------------------- /nginx-proxy/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eicnix/sidecar-proxy-example/HEAD/nginx-proxy/Dockerfile -------------------------------------------------------------------------------- /nginx-proxy/htpasswd: -------------------------------------------------------------------------------- 1 | admin:$apr1$xXSkq3PU$s3HT.TlwLxQSpeEwVhSRg1 2 | -------------------------------------------------------------------------------- /nginx-proxy/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eicnix/sidecar-proxy-example/HEAD/nginx-proxy/nginx.conf --------------------------------------------------------------------------------