From 2d8c7fba90ff555014fa59ab388d5abc2f4dd4b6 Mon Sep 17 00:00:00 2001 From: sumedh Date: Thu, 7 Nov 2024 18:33:56 +0530 Subject: [PATCH] hermione deployment file added --- hermione-deployment.yaml | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 hermione-deployment.yaml diff --git a/hermione-deployment.yaml b/hermione-deployment.yaml new file mode 100644 index 0000000..96a7de7 --- /dev/null +++ b/hermione-deployment.yaml @@ -0,0 +1,31 @@ +kind: Deployment +apiVersion: apps/v1 +metadata: + name: hermione + namespace: olympus +spec: + replicas: 1 + selector: + matchLabels: + app: hermione + template: + metadata: + labels: + app: hermione + spec: + containers: + - name: hermione + image: olympusreg.azurecr.io/hermione:a843dee4 + envFrom: + - configMapRef: + name: olympus-db-shared-cfg + env: + - name: HERMIONE_FE_URL + value: http://hermione-aks.olympusai.live + - name: ARIADNE_FE_URL + value: http://ariadne-aks.olympusai.live + - name: EUREKA_URI + value: >- + http://eureka-server-service.olympus.svc.cluster.local:8761/eureka + resources: {} + imagePullPolicy: Always \ No newline at end of file