Skip to content

Commit cfcf004

Browse files
committed
mön
1 parent bea3539 commit cfcf004

File tree

6 files changed

+53
-0
lines changed

6 files changed

+53
-0
lines changed

k8s/common/secrets.yaml

Whitespace-only changes.

k8s/ingress/ingress-controller-deployment.yaml

Whitespace-only changes.

k8s/ingress/ingress-controller-service.yaml

Whitespace-only changes.

soemi-moen/k8s/deployment.yaml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
apiVersion: apps/v1
2+
kind: Deployment
3+
metadata:
4+
name: soemi-moen
5+
spec:
6+
replicas: 1
7+
selector:
8+
matchLabels:
9+
app: soemi-moen
10+
template:
11+
metadata:
12+
labels:
13+
app: soemi-moen
14+
spec:
15+
containers:
16+
- name: soemi-moen
17+
image: camunda/camunda-bpm-platform:run-latest
18+
ports:
19+
- containerPort: 8080

soemi-moen/k8s/ingress.yaml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
apiVersion: networking.k8s.io/v1
2+
kind: Ingress
3+
metadata:
4+
name: soemi-moen-ingress
5+
annotations:
6+
kubernetes.io/ingress.class: "nginx"
7+
nginx.ingress.kubernetes.io/rewrite-target: /$2
8+
spec:
9+
rules:
10+
- host: xn--smi-weather-rfb.ch
11+
http:
12+
paths:
13+
- path: /moen(|$)(.*)
14+
pathType: Prefix
15+
backend:
16+
service:
17+
name: soemi-moen
18+
port:
19+
number: 8080

soemi-moen/k8s/service.yaml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
apiVersion: v1
2+
kind: Service
3+
metadata:
4+
name: soemi-moen
5+
labels:
6+
app: soemi-moen
7+
spec:
8+
type: ClusterIP
9+
selector:
10+
app: soemi-moen
11+
ports:
12+
- protocol: TCP
13+
port: 8080
14+
targetPort: v
15+
name: http

0 commit comments

Comments
 (0)