Skip to content

Commit 3c8505e

Browse files
Add overpass ingress
1 parent 016776c commit 3c8505e

File tree

2 files changed

+28
-0
lines changed

2 files changed

+28
-0
lines changed

apps/overpass/ingress.yaml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
apiVersion: networking.k8s.io/v1
2+
kind: Ingress
3+
metadata:
4+
annotations:
5+
cert-manager.io/cluster-issuer: letsencrypt-c4m
6+
labels:
7+
app.kubernetes.io/instance: overpass-api
8+
app.kubernetes.io/name: overpass-api
9+
app.kubernetes.io/version: 0.7.62
10+
name: overpass-api
11+
spec:
12+
ingressClassName: traefik
13+
rules:
14+
- host: overpass-ms.codeformuenster.org
15+
http:
16+
paths:
17+
- backend:
18+
service:
19+
name: overpass-api
20+
port:
21+
number: 80
22+
path: /
23+
pathType: Prefix
24+
tls:
25+
- hosts:
26+
- overpass-ms.codeformuenster.org
27+
secretName: overpass-tls

apps/overpass/kustomization.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,3 +9,4 @@ resources:
99
- svc.yaml
1010
- pvc.yaml
1111
- deploy.yaml
12+
- ingress.yaml

0 commit comments

Comments
 (0)