From dfeac5062f9485ff9eea088a18037361659d8b91 Mon Sep 17 00:00:00 2001 From: sumedh Date: Wed, 6 Nov 2024 13:29:37 +0530 Subject: [PATCH] apollo-fe dpeloyment added --- apollo-fe-deployment.yaml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 apollo-fe-deployment.yaml diff --git a/apollo-fe-deployment.yaml b/apollo-fe-deployment.yaml new file mode 100644 index 0000000..8b57971 --- /dev/null +++ b/apollo-fe-deployment.yaml @@ -0,0 +1,20 @@ +kind: Deployment +apiVersion: apps/v1 +metadata: + name: apollo-fe + namespace: olympus +spec: + replicas: 1 + selector: + matchLabels: + app: apollo-fe + template: + metadata: + labels: + app: apollo-fe + spec: + containers: + - name: apollo-fe + image: olympusreg.azurecr.io/apollo-fe:6b2396b2 + imagePullPolicy: Always +