From 766d0bf2e08a6ead083d9e7ff4a89b1d811bd269 Mon Sep 17 00:00:00 2001 From: Ishrath Ahamed Date: Fri, 21 Mar 2025 10:44:16 +0530 Subject: [PATCH] Add deployment configuration for csi-adt-ui application --- manifests/15-csi-adt-ui.yaml | 46 ++++++++++++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) create mode 100644 manifests/15-csi-adt-ui.yaml diff --git a/manifests/15-csi-adt-ui.yaml b/manifests/15-csi-adt-ui.yaml new file mode 100644 index 0000000..1f545a8 --- /dev/null +++ b/manifests/15-csi-adt-ui.yaml @@ -0,0 +1,46 @@ +apiVersion: apps/v1 +kind: Deployment +metadata: + labels: + app.kubernetes.io/instance: adt-ui + name: csi-adt-ui + namespace: csi-uat +spec: + replicas: 2 + selector: + matchLabels: + app: csi-adt-ui + tier: frontend + track: stable + template: + metadata: + labels: + app: csi-adt-ui + tier: frontend + track: stable + spec: + affinity: + podAntiAffinity: + requiredDuringSchedulingIgnoredDuringExecution: + - labelSelector: + matchExpressions: + - key: app + operator: In + values: + - csi-adt-ui + topologyKey: kubernetes.io/hostname + containers: + - image: registry.cloudsolutions.com.sa/vida-qa/csi-pms-adt-ui:4.3.239.0_qa + imagePullPolicy: IfNotPresent + name: csi-adt-ui + ports: + - containerPort: 80 + name: http + resources: + limits: + memory: 100Mi + requests: + cpu: 2m + memory: 25Mi + imagePullSecrets: + - name: regcred