summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--peach.yaml39
1 files changed, 0 insertions, 39 deletions
diff --git a/peach.yaml b/peach.yaml
deleted file mode 100644
index beb3226..0000000
--- a/peach.yaml
+++ /dev/null
@@ -1,39 +0,0 @@
-apiVersion: apps/v1
-kind: Deployment
-metadata:
- name: peach-deployment
- labels:
- app: peach
-spec:
- replicas: 3
- selector:
- matchLabels:
- app: peach
- template:
- metadata:
- labels:
- app: peach
- spec:
- containers:
- - name: peach
- image: public.ecr.aws/w3h8c8i8/peach:20220603204647
- ports:
- - containerPort: 8151
- name: peach-port
- env:
- - name: PEACH_PHOTON_URL
- value: https://photon.komoot.io
----
-apiVersion: v1
-kind: Service
-metadata:
- name: peach-service
-spec:
- type: NodePort
- selector:
- app: peach
- ports:
- - protocol: TCP
- port: 8151
- targetPort: peach-port
- nodePort: 30151