From 47d7b1676d2bc7796ad304dd2738f13d239e85f1 Mon Sep 17 00:00:00 2001 From: sumedh Date: Thu, 7 Nov 2024 18:43:07 +0530 Subject: [PATCH] deployment file modified --- hermione-deployment.yaml | 31 ------------------------------- hermione-fe-deployment.yaml | 20 ++++++++++++++++++++ 2 files changed, 20 insertions(+), 31 deletions(-) delete mode 100644 hermione-deployment.yaml create mode 100644 hermione-fe-deployment.yaml diff --git a/hermione-deployment.yaml b/hermione-deployment.yaml deleted file mode 100644 index 96a7de7..0000000 --- a/hermione-deployment.yaml +++ /dev/null @@ -1,31 +0,0 @@ -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 diff --git a/hermione-fe-deployment.yaml b/hermione-fe-deployment.yaml new file mode 100644 index 0000000..bb3dd68 --- /dev/null +++ b/hermione-fe-deployment.yaml @@ -0,0 +1,20 @@ +kind: Deployment +apiVersion: apps/v1 +metadata: + name: hermione-fe + namespace: olympus +spec: + replicas: 1 + selector: + matchLabels: + app: hermione-fe + template: + metadata: + labels: + app: hermione-fe + spec: + containers: + - name: hermione-fe + image: olympusreg.azurecr.io/hermione-fe:10edf802 + resources: {} + imagePullPolicy: Always \ No newline at end of file