traefik v1.7 kubernetes doc fixes

This commit is contained in:
Thom Seddon
2020-04-28 17:15:53 +01:00
parent 9abf5645b7
commit 1ac0ca9732
9 changed files with 48 additions and 15 deletions

View File

@ -1,4 +1,26 @@
#
# Traefik Service
#
apiVersion: v1
kind: Service
metadata:
name: traefik
labels:
app: traefik
spec:
# Use NodePort if required
type: LoadBalancer
selector:
app: traefik
ports:
- name: http
port: 80
targetPort: 80
- name: https
port: 443
targetPort: 443
---
#
# Auth Service
#
apiVersion: v1