diff --git a/k8s/deploy.yaml b/k8s/deploy.yaml index d8442e8..7e0a591 100644 --- a/k8s/deploy.yaml +++ b/k8s/deploy.yaml @@ -23,9 +23,9 @@ spec: name: traefik-external ports: - name: http - containerPort: 80 + containerPort: 9080 - name: https - containerPort: 443 + containerPort: 9443 resources: limits: memory: "2Gi" diff --git a/k8s/service.yaml b/k8s/service.yaml index 9d13961..fbd8602 100644 --- a/k8s/service.yaml +++ b/k8s/service.yaml @@ -9,10 +9,10 @@ spec: ports: - protocol: TCP port: 9080 - targetPort: 80 + targetPort: 9080 name: http - protocol: TCP port: 9443 - targetPort: 443 + targetPort: 9443 name: https type: LoadBalancer \ No newline at end of file