diff options
author | siddharth <s@ricketyspace.net> | 2022-05-28 15:33:06 -0400 |
---|---|---|
committer | siddharth <s@ricketyspace.net> | 2022-05-28 15:33:06 -0400 |
commit | b8845b615be19912ce5d36900956bafe6b3ae7f3 (patch) | |
tree | 756e8bcfe68be1db1261a386bf5cd6a9a777bdfb | |
parent | 841f131a92289aadc1b329d0c6eaea5645ad0ef4 (diff) |
update peach.yaml
-rw-r--r-- | peach.yaml | 22 |
1 files changed, 20 insertions, 2 deletions
@@ -16,6 +16,24 @@ spec: spec: containers: - name: peach - image: public.ecr.aws/w3h8c8i8/peach:20220523000158 + image: public.ecr.aws/w3h8c8i8/peach:20220528135201 ports: - - containerPort: 8151 + - 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 |