diff --git a/README.md b/README.md index 39e3264..f18807e 100644 --- a/README.md +++ b/README.md @@ -2,6 +2,16 @@ ## Holy crap this is hard +## Installing + +```bash +export SERVER= + +helm template traefik ./helm --values values.yaml | cat - > ~/Infrastructure/$SERVER-traefik.yaml + +cat ~/Infrastructure/$SERVER-traefik.yaml | ssh $SERVER "kubectl apply -f -" +``` + ## Docs Configuration Examples: diff --git a/resource.yaml b/helm/templates/resource.yaml similarity index 100% rename from resource.yaml rename to helm/templates/resource.yaml diff --git a/values.yaml b/values.yaml index 4f8957a..594cb00 100644 --- a/values.yaml +++ b/values.yaml @@ -13,11 +13,11 @@ middleware: config: ingressclass: traefik - http_port: 9080 - https_port: 9443 + http_port: 80 + https_port: 443 admin_port: 8080 # statsd reporting - statsd_endpoint: graphite.ducoterra.net:8125 + # statsd_endpoint: graphite.ducoterra.net:8125 acme_email: ducoterra@icloud.com # zipkin tracing - tracing_endpoint: http://zipkin:9411/api/v2/spans \ No newline at end of file + # tracing_endpoint: http://zipkin:9411/api/v2/spans \ No newline at end of file