Remove deprecated kustomization.yaml files and update resource paths to DM-Initiator

main
Ishrath Ahamed 2 months ago
parent 2f46f5f385
commit 7c86b8dc4a

@ -1,5 +0,0 @@
apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization
resources:
- presync.yaml
- postsync.yaml

@ -1,42 +0,0 @@
apiVersion: batch/v1
kind: Job
metadata:
name: sync-postsync
namespace: moh-uat
annotations:
argocd.argoproj.io/hook: PostSync
# argocd.argoproj.io/hook-delete-policy: HookSucceeded
spec:
backoffLimit: 3
template:
spec:
containers:
- name: postsync-pod
image: registry.cloudsolutions.com.sa/vida-qa/csi-data-migration-initiator:4.0.57.5
imagePullPolicy: IfNotPresent
resources:
limits:
cpu: 500m
memory: 3Gi
requests:
cpu: 250m
memory: 256Mi
env:
- name: MIGRATION_TYPE
value: "2"
- name: owner
value: "CSI-UAT"
- name: repo
value: "CSI_UAT"
envFrom:
- configMapRef:
name: service-configs
- secretRef:
name: service-configs-secret
- configMapRef:
name: init-database-configs
- secretRef:
name: init-database-secrets
restartPolicy: Never
imagePullSecrets:
- name: regcred

@ -1,44 +0,0 @@
apiVersion: batch/v1
kind: Job
metadata:
name: sync-presync
namespace: moh-uat
annotations:
argocd.argoproj.io/hook: PreSync
# argocd.argoproj.io/hook-delete-policy: HookSucceeded
spec:
backoffLimit: 3
template:
spec:
containers:
- name: presync-pod
image: registry.cloudsolutions.com.sa/vida-qa/csi-data-migration-initiator:4.0.57.5
imagePullPolicy: IfNotPresent
resources:
limits:
cpu: 500m
memory: 3Gi
requests:
cpu: 250m
memory: 256Mi
env:
- name: MIGRATION_TYPE
value: "1"
- name: isDropValidationDisabled
value: "true"
- name: owner
value: "CSI-UAT"
- name: repo
value: "CSI_UAT"
envFrom:
- configMapRef:
name: service-configs
- secretRef:
name: service-configs-secret
- configMapRef:
name: init-database-configs
- secretRef:
name: init-database-secrets
restartPolicy: Never
imagePullSecrets:
- name: regcred

@ -1,70 +0,0 @@
apiVersion: batch/v1
kind: Job
metadata:
name: data-migration-postsync
namespace: moh-uat
annotations:
argocd.argoproj.io/hook: PostSync
argocd.argoproj.io/hook-delete-policy: HookSucceeded
argocd.argoproj.io/sync-wave: "2"
#argocd.argoproj.io/sync-options: Prune=false
spec:
backoffLimit: 3
template:
spec:
containers:
- name: presync-pod
image: registry.cloudsolutions.com.sa/vida-qa/csi-data-migration-initiator:4.0.27.11
imagePullPolicy: IfNotPresent
command: ["/bin/sh", "-c"]
args: ["mkdir automation && git config --global http.sslVerify false && git clone --depth 1 https://$(GITEA_UN):$(GITEA_PW)@git.cloudsolutions.com.sa/Automation/Automation.git /app/automation/ && python3 main.py"]
resources:
limits:
cpu: 500m
memory: 3Gi
requests:
cpu: 250m
memory: 256Mi
env:
- name: owner
value: "CSI_DEV"
- name: repo
value: "CSI_DEV_CS"
- name: filePath
value: "kustomization.yaml"
- name: MIGRATION_TYPE
value: "2"
- name: active_profile
valueFrom:
configMapKeyRef:
key: activeProfile
name: service-configs
- name: SPRING_JPA_HIBERNATE_DIALECT
valueFrom:
configMapKeyRef:
key: db-dialect
name: service-configs
- name: SPRING_JPA_DATABASE-PLATFORM
valueFrom:
configMapKeyRef:
key: db-dialect
name: service-configs
- name: configserver
valueFrom:
configMapKeyRef:
key: config_server
name: service-configs
- name: hostname
value: csi-java-ehr-config
envFrom:
- configMapRef:
name: service-configs
- secretRef:
name: service-configs-secret
- configMapRef:
name: init-database-configs
- secretRef:
name: init-database-secrets
restartPolicy: Never
imagePullSecrets:
- name: regcred

@ -1,70 +0,0 @@
apiVersion: batch/v1
kind: Job
metadata:
name: data-migration-presync
namespace: moh-uat
annotations:
argocd.argoproj.io/hook: PreSync
argocd.argoproj.io/hook-delete-policy: HookSucceeded
argocd.argoproj.io/sync-wave: "2"
#argocd.argoproj.io/sync-options: Prune=false
spec:
backoffLimit: 3
template:
spec:
containers:
- name: presync-pod
image: registry.cloudsolutions.com.sa/vida-qa/csi-data-migration-initiator:4.0.27.11
imagePullPolicy: IfNotPresent
command: ["/bin/sh", "-c"]
args: ["mkdir automation && git config --global http.sslVerify false && git clone --depth 1 https://$(GITEA_UN):$(GITEA_PW)@git.cloudsolutions.com.sa/Automation/Automation.git /app/automation/ && python3 main.py"]
resources:
limits:
cpu: 500m
memory: 3Gi
requests:
cpu: 250m
memory: 256Mi
env:
- name: owner
value: "CSI_DEV"
- name: repo
value: "CSI_DEV_CS"
- name: filePath
value: "kustomization.yaml"
- name: MIGRATION_TYPE
value: "1"
- name: active_profile
valueFrom:
configMapKeyRef:
key: activeProfile
name: service-configs
- name: SPRING_JPA_HIBERNATE_DIALECT
valueFrom:
configMapKeyRef:
key: db-dialect
name: service-configs
- name: SPRING_JPA_DATABASE-PLATFORM
valueFrom:
configMapKeyRef:
key: db-dialect
name: service-configs
- name: configserver
valueFrom:
configMapKeyRef:
key: config_server
name: service-configs
- name: hostname
value: csi-java-ehr-config
envFrom:
- configMapRef:
name: service-configs
- secretRef:
name: service-configs-secret
- configMapRef:
name: init-database-configs
- secretRef:
name: init-database-secrets
restartPolicy: Never
imagePullSecrets:
- name: regcred

@ -1,5 +0,0 @@
apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization
resources:
- data-migration_presync.yaml
- data-migration_postsync.yaml

@ -1,72 +0,0 @@
apiVersion: batch/v1
kind: Job
metadata:
name: before
namespace: moh-uat
annotations:
argocd.argoproj.io/hook: PreSync
argocd.argoproj.io/hook-delete-policy: HookSucceeded
argocd.argoproj.io/sync-wave: "1"
#argocd.argoproj.io/sync-options: Prune=false
spec:
backoffLimit: 3
template:
spec:
containers:
- name: presync-pod
#image: registry.cloudsolutions.com.sa/vida-qa/csi-automation-initiator-stable:latest
image: registry.cloudsolutions.com.sa/vida-qa/csi-automation-initiator:3.0.1.0 #3.0.0.96.2 #3.0.0.88 #3.0.0.76.2 #3.0.0.74 #3.0.0.66 #3.0.0.69 #V3.0.0.46
imagePullPolicy: IfNotPresent
command: ["/bin/sh", "-c"]
args: ["mkdir automation && git config --global http.sslVerify false && git clone --depth 1 https://$(GITEA_UN):$(GITEA_PW)@git.cloudsolutions.com.sa/Automation/Automation.git /usr/app/automation/ && node index.js"]
#args: ["mkdir kafka && mkdir db-Change && mkdir screenPermissions && mkdir mongoIndex && mkdir featureToggles && mkdir LabelTranslations && mkdir masterData && mkdir BusinessPermissions && mkdir Configurations && git config --global http.sslVerify false && git clone https://$(GITEA_UN):$(GITEA_PW)@git.cloudsolutions.com.sa/Automation/Kafka-topic-automation.git /usr/app/kafka/ && git config --global http.sslVerify false && git clone https://$(GITEA_UN):$(GITEA_PW)@git.cloudsolutions.com.sa/Automation/DB-Change-automation.git /usr/app/db-Change/ && git config --global http.sslVerify false && git clone https://$(GITEA_UN):$(GITEA_PW)@git.cloudsolutions.com.sa/Automation/Screen-permissions.git /usr/app/screenPermissions/ && git config --global http.sslVerify false && git clone https://$(GITEA_UN):$(GITEA_PW)@git.cloudsolutions.com.sa/Automation/MongoDB-indexes.git /usr/app/mongoIndex/ && git config --global http.sslVerify false && git clone https://$(GITEA_UN):$(GITEA_PW)@git.cloudsolutions.com.sa/Automation/Feature-Toggles.git /usr/app/featureToggles/ && git config --global http.sslVerify false && git clone https://$(GITEA_UN):$(GITEA_PW)@git.cloudsolutions.com.sa/Automation/LabelTranslations.git /usr/app/LabelTranslations/ && git config --global http.sslVerify false && git clone https://$(GITEA_UN):$(GITEA_PW)@git.cloudsolutions.com.sa/Automation/masterData.git /usr/app/masterData/ && git config --global http.sslVerify false && git clone https://$(GITEA_UN):$(GITEA_PW)@git.cloudsolutions.com.sa/Automation/Business-Permissions.git /usr/app/BusinessPermissions/ && git config --global http.sslVerify false && git clone https://$(GITEA_UN):$(GITEA_PW)@git.cloudsolutions.com.sa/Automation/Configuration.git /usr/app/Configurations/ && node index.js && sleep 10"]
resources:
#limits:
#cpu: 750m
#memory: 3Gi
requests:
cpu: 128m
memory: 128Mi
env:
- name: owner
value: "CSI_DEV"
- name: repo
value: "CSI_DEV_CS"
- name: filePath
value: "kustomization.yaml"
- name: DISABLE_STEP_TRACKER
value: "true"
- name: active_profile
valueFrom:
configMapKeyRef:
key: activeProfile
name: service-configs
- name: SPRING_JPA_HIBERNATE_DIALECT
valueFrom:
configMapKeyRef:
key: db-dialect
name: service-configs
- name: SPRING_JPA_DATABASE-PLATFORM
valueFrom:
configMapKeyRef:
key: db-dialect
name: service-configs
- name: configserver
valueFrom:
configMapKeyRef:
key: config_server
name: service-configs
- name: hostname
value: csi-java-ehr-config
envFrom:
- configMapRef:
name: service-configs
- secretRef:
name: service-configs-secret
- configMapRef:
name: init-database-configs
- secretRef:
name: init-database-secrets
restartPolicy: Never
imagePullSecrets:
- name: regcred

@ -1,4 +0,0 @@
apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization
resources:
- PreSync/dbsync.yaml

@ -1,150 +0,0 @@
apiVersion: batch/v1
kind: Job
metadata:
name: before
namespace: moh-uat
annotations:
argocd.argoproj.io/hook: PreSync
argocd.argoproj.io/hook-delete-policy: HookSucceeded
argocd.argoproj.io/sync-wave: "1"
#argocd.argoproj.io/sync-options: Prune=false
spec:
backoffLimit: 3
template:
spec:
containers:
- name: presync-pod
image: registry.cloudsolutions.com.sa/vida-qa/csi-automation-initiator:3.0.0.72
imagePullPolicy: IfNotPresent
command: ["/bin/sh", "-c"]
args:
- |
# Step 1: Navigate to the app directory
git config --global http.sslVerify false &&
cd /usr/app/automation &&
# Step 2: Check if it's a valid Git repository, initialize if not
if [ ! -d .git ]; then
echo "Initializing Git repository in /usr/app/automation" &&
git clone -c https://$(GITEA_UN):$(GITEA_PW)@git.cloudsolutions.com.sa/Automation/Automation.git ./
fi &&
# Step 3: Pull the latest changes from the 'main' branch directly into the current directory
git pull origin main &&
echo "Pulled latest changes from 'main' branch." &&
ls -la &&
cd ../ &&
ls -la &&
pwd &&
# Step 5: Perform your database sync operation (replace with your actual command)
node /usr/app/index.js
##--new change end
# # Step 1: Create directory, configure Git, and clone repository
# cd /usr/app/automation/ &&
# rm -rf * &&
# rm -rf .git &&
# mkdir -p /usr/app/automation &&
# # Step 2: Check if the folder 'Automation' exists in /usr/app/automation and handle concurrent cloning
# git config --global http.sslVerify false &&
# #cd /usr/app/automation/ &&
# ls -al /usr/app/automation/ &&
# #-- Clone condition start
# # Step 1: Check if the directory is empty
# if [ -z "$(ls -A /usr/app/automation/)" ]; then
# # Directory is empty, clone the repository
# echo "Directory is empty. Cloning repository..." &&
# git config --global http.sslVerify false &&
# #git clone --depth 1 --branch main https://$(GITEA_UN):$(GITEA_PW)@git.cloudsolutions.com.sa/Automation/Automation.git &&
# git config --global init.defaultBranch main
# git init
# git pull https://$(GITEA_UN):$(GITEA_PW)@git.cloudsolutions.com.sa/Automation/Automation.git /usr/app/automation/ &&
# echo "Repository cloned successfully from branch main."
# else
# # Directory is not empty, pull the latest changes
# echo "Directory is not empty. Pulling the latest changes..." &&
# if [ -d /usr/app/automation/.git ]; then
# #cd /usr/app/automation/Automation/ &&
# git config --global http.sslVerify false &&
# git pull https://$(GITEA_UN):$(GITEA_PW)@git.cloudsolutions.com.sa/Automation/Automation.git /usr/app/automation/ &&
# echo "Pulled latest changes from branch main."
# echo "Here's directory list"
# ls -al /usr/app/automation/
# echo "Here's Current folder path"
# pwd
# else
# echo "Directory contains files but is not a valid Git repository. Exiting..." &&
# exit 1
# fi
# fi &&
# #-- Clone condition end
# # Step 3: Run the Node.js application
# sleep 10 &&
# node /usr/app/index.js
# # Step 4: Sleep test
# #sleep infinity
volumeMounts:
- name: git-clone
mountPath: /usr/app/automation/
resources:
limits:
cpu: 300m
memory: 1Gi
requests:
cpu: 250m
memory: 256Mi
env:
- name: owner
value: "CSI_DEV"
- name: repo
value: "CSI_DEV"
- name: filePath
value: "kustomization.yaml"
- name: active_profile
valueFrom:
configMapKeyRef:
key: activeProfile
name: service-configs
- name: SPRING_JPA_HIBERNATE_DIALECT
valueFrom:
configMapKeyRef:
key: db-dialect
name: service-configs
- name: SPRING_JPA_DATABASE-PLATFORM
valueFrom:
configMapKeyRef:
key: db-dialect
name: service-configs
- name: configserver
valueFrom:
configMapKeyRef:
key: config_server
name: service-configs
- name: hostname
value: csi-java-ehr-config
envFrom:
- configMapRef:
name: service-configs
- secretRef:
name: service-configs-secret
- configMapRef:
name: init-database-configs
- secretRef:
name: init-database-secrets
restartPolicy: Never
volumes:
- name: git-clone
persistentVolumeClaim:
claimName: pre-sync-pvc
imagePullSecrets:
- name: regcred

@ -1,4 +0,0 @@
apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization
resources:
- PreSync/dbsyncwithpv.yaml

@ -1,63 +0,0 @@
apiVersion: batch/v1
kind: Job
metadata:
name: before
namespace: moh-uat
annotations:
argocd.argoproj.io/hook: PreSync
argocd.argoproj.io/hook-delete-policy: HookSucceeded
#argocd.argoproj.io/sync-options: Prune=false
spec:
backoffLimit: 2
template:
spec:
containers:
- name: presync-pod
image: harbor.moh.gov.sa/vidamoh/csi-database-initiator:V1.0.0.125
imagePullPolicy: IfNotPresent
resources:
limits:
cpu: 300m
memory: 1Gi
requests:
cpu: 250m
memory: 256Mi
env:
# - name: CSI_MODULENAME
# value: "csi-rms-masterdata-java-sev"
# - name: CSI_DATA_VERSION
# value: "4.0.127.0"
- name: active_profile
valueFrom:
configMapKeyRef:
key: activeProfile
name: service-configs
- name: SPRING_JPA_HIBERNATE_DIALECT
valueFrom:
configMapKeyRef:
key: db-dialect
name: service-configs
- name: SPRING_JPA_DATABASE-PLATFORM
valueFrom:
configMapKeyRef:
key: db-dialect
name: service-configs
- name: configserver
valueFrom:
configMapKeyRef:
key: config_server
name: service-configs
- name: hostname
value: csi-java-ehr-config
envFrom:
- configMapRef:
name: service-configs
- secretRef:
name: service-configs-secret
- configMapRef:
name: init-database-configs
- secretRef:
name: init-database-secrets
restartPolicy: Never
imagePullSecrets:
- name: regcred

@ -1,4 +0,0 @@
apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization
resources:
- PreSync/dbsync.yaml

@ -1,7 +1,8 @@
apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization
resources:
- https://git.cloudsolutions.com.sa/BASE/CENTRAL-BASE-REPO/billing/bmbillingapprovaljava- ../../../DM-Sync/
- https://git.cloudsolutions.com.sa/BASE/CENTRAL-BASE-REPO/billing/bmbillingapprovaljava
- ../../../DM-Initiator/
- post-sync.yaml
patchesStrategicMerge:

@ -2,7 +2,7 @@ apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization
resources:
- https://git.cloudsolutions.com.sa/BASE/CENTRAL-BASE-REPO/billing/bmapprovalui
- ../../../DM-Sync/
- ../../../DM-Initiator/
#patches:
#- patch-pod.yaml

@ -2,7 +2,7 @@ apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization
resources:
- https://git.cloudsolutions.com.sa/BASE/CENTRAL-BASE-REPO/billing/bmbillingjava
- ../../../Sync-new/
- ../../../DM-Initiator/
patchesStrategicMerge:
- hpa.yaml

@ -2,21 +2,13 @@ apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization
resources:
- https://git.cloudsolutions.com.sa/BASE/CENTRAL-BASE-REPO/billing/billingmasterui
# resources:
# - ../../../DM-Sync/- ../../../Sync-new/
#patches:
#- hpa.yaml
- ../../../DM-Initiator/
replicas:
- name: csi-billing-ui
count: 1
images:
# - name: harbor.moh.gov.sa/vidamoh/csi-database-initiator
# newName: registry.cloudsolutions.com.sa/vida-qa/csi-database-initiator
# newTag: V1.0.0.178 #V1.0.0.150 #V1.0.0.66 #V1.0.0.58 #Dont change this value#
- name: harbor.moh.gov.sa/vidamoh/billing-ui
newName: registry.cloudsolutions.com.sa/vida-qa/billing-ui
newTag: 4.7.103.0_qa # Deployed this QA tag due to build issue in 4.2503_1_D8_dev #4.2503_1_D7_dev #4.2503_1_D6_dev

@ -2,7 +2,7 @@ apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization
resources:
- https://git.cloudsolutions.com.sa/BASE/CENTRAL-BASE-REPO/billing/csi-bm-inte-bridge-java-service
- ../../../DM-Sync/
- ../../../DM-Initiator/
#- post-sync.yaml
patchesStrategicMerge:

@ -2,12 +2,11 @@ apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization
resources:
- https://git.cloudsolutions.com.sa/BASE/CENTRAL-BASE-REPO/billing/bmbillinginvoicejava
- ../../../Sync-new/
- ../../../DM-Initiator/
patchesStrategicMerge:
- hpa.yaml
#- patch-pod.yaml
images:

@ -2,10 +2,7 @@ apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization
resources:
- https://git.cloudsolutions.com.sa/BASE/CENTRAL-BASE-REPO/billing/bminvoiceui
- ../../../Sync-new/
#patches:
##- patch-pod.yaml
- ../../../DM-Initiator/
replicas:
- name: csi-bm-invoice-ui

@ -2,7 +2,7 @@ apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization
resources:
- https://git.cloudsolutions.com.sa/BASE/CENTRAL-BASE-REPO/billing/csi-bm-promotion-java-service
- ../../../DM-Sync/
- ../../../DM-Initiator/
#- post-sync.yaml

@ -2,19 +2,16 @@ apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization
resources:
- https://git.cloudsolutions.com.sa/BASE/CENTRAL-BASE-REPO/bloodbank/bloodbankui
- ../../../Sync-new/
#- dbsyncwithpv.yaml
- ../../../DM-Initiator/
#patches:
#- patch-hpa.yaml
images:
- name: harbor.moh.gov.sa/vidamoh/bloodbank-ui
newName: registry.cloudsolutions.com.sa/vida-qa/bb-bloodbankgui
newTag: 4.2.58.0-a200_dev #4.2.58.0-a198_dev #4.2.58.0-a197_dev #4.2.58.0-a195_dev #4.2.58.0-a194_dev #4.2.58.0-a193_dev #4.2.58.0-a192_dev #4.2.58.0-a191_dev #4.2.58.0-a188_dev #4.2.58.0-a187_dev #4.2.58.0-a185_dev #4.2.58.0-a184_dev #4.2.58.0-a176_dev #4.2.69.0-b127_qa #4.2.58.0-a170_dev #4.2.58.0-a169_dev #4.2.58.0-a168_dev #4.2.58.0-a166_dev #4.2.58.0-a159_dev #4.2.58.0-a152_dev #4.2.58.0-a151_dev #4.2.58.0-a147_dev #4.2.58.0-a146_dev #4.2.58.0-a145_dev #4.2.58.0-a144_dev #4.2.58.0-a143_dev #4.2.58.0-a140_dev #4.2.58.0-a136_dev #4.2.58.0-a129_dev #4.2.58.0-a128_dev #4.2.58.0-a127_dev #4.2.58.0-a125_dev #4.2.58.0-a121_dev #4.2.58.0-a119_dev #4.2.58.0-a110_dev #4.2.58.0-a108_dev #4.2.58.0-a103_dev #4.2.58.0-a98_dev #4.2.58.0-a97_dev #4.2.69.0-b42_qa #4.2.58.0-a79_dev #4.2.58.0-a78 #4.2.58.0-a77 #4.2.58.0-a76 #4.2.58.0-a69 #4.2.58.0-a68 #4.2.58.0-a61 #4.2.58.0-a59 #4.2.58.0-a32 #4.2.58.0-a29-a2 #4.2.58.0-a27-a1 #4.2.58.0-a29 #4.2.58.0-a28 #4.2.58.0-a23 #4.2.58.0-a22 #4.2.58.0-a21 #4.2.58.0-a20 #4.2.58.0-a18 #4.2.58.0-a16 #4.2.58.0-a15 #4.2.58.0-a14.2 #4.2.58.0-a10.1 #4.2.58.0-a9.1 #4.2.58.0-a10 #4.2.58.0-a8 #4.2.58.0-a7 #4.2.58.0-a5 #4.2.57.0-a1 #4.1.225.0-HF_prod #4.2405_5_prod #4.2405_1_prod #4.2.46.0_prod #4.2.45.2
namespace: csi-uat
patchesJSON6902:
- target:
group: batch

@ -2,9 +2,7 @@ apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization
resources:
- https://git.cloudsolutions.com.sa/BASE/CENTRAL-BASE-REPO/bloodbank/bloodbanknet
- ../../../Sync-new/
# ../../../DM-Sync/
# - ../../../DM-Sync/
- ../../../DM-Initiator/
patchesStrategicMerge:
- hpa.yaml

@ -1,7 +1,8 @@
apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization
resources:
- https://git.cloudsolutions.com.sa/BASE/CENTRAL-BASE-REPO/bloodbank/bloodbankjava- ../../../DM-Sync/
- https://git.cloudsolutions.com.sa/BASE/CENTRAL-BASE-REPO/bloodbank/bloodbankjava
- ../../../DM-Initiator/
- post-sync.yaml
patchesStrategicMerge:

@ -2,7 +2,7 @@ apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization
resources:
- https://git.cloudsolutions.com.sa/BASE/CENTRAL-BASE-REPO/cssd/csi-cssd-java-sev
- ../../../DM-Sync/
- ../../../DM-Initiator/
# patches:
# - hpa.yaml

@ -2,10 +2,7 @@ apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization
resources:
- https://git.cloudsolutions.com.sa/BASE/CENTRAL-BASE-REPO/dms/csi-document-management-service
- ../../../Sync-new/
# patches:
# - patch-hpa.yaml
- ../../../DM-Initiator/
replicas:
- name: csi-document-management-service

@ -2,7 +2,6 @@ apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization
resources:
- https://git.cloudsolutions.com.sa/BASE/CENTRAL-BASE-REPO/ehr/ehripdischargedotnet
#- post-sync.yaml
patchesStrategicMerge:
- hpa.yaml

@ -2,7 +2,7 @@ apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization
resources:
- https://git.cloudsolutions.com.sa/BASE/CENTRAL-BASE-REPO/ehr/ehropdmasterdotnet
- ../../../DM-Sync/
- ../../../DM-Initiator/
#- post-sync.yaml
patchesStrategicMerge:

@ -2,7 +2,7 @@ apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization
resources:
- https://git.cloudsolutions.com.sa/BASE/CENTRAL-BASE-REPO/ehr/ehropdpatientdotnet
- ../../../DM-Sync/
- ../../../DM-Initiator/
patchesStrategicMerge:
- hpa.yaml

@ -3,7 +3,7 @@ apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization
resources:
- https://git.cloudsolutions.com.sa/BASE/CENTRAL-BASE-REPO/ehr/ehrcommonjava
# - ../../../DM-Sync/
# - ../../../DM-Initiator/
# - post-sync.yaml
patches:

@ -2,7 +2,7 @@ apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization
resources:
- https://git.cloudsolutions.com.sa/BASE/CENTRAL-BASE-REPO/ehr/ehrschedulerjava
- ../../../DM-Sync/
- ../../../DM-Initiator/
#- post-sync.yaml
# patches:

@ -2,7 +2,7 @@ apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization
resources:
- https://git.cloudsolutions.com.sa/BASE/CENTRAL-BASE-REPO/ehr/ehrconfigjava
- ../../../DM-Sync/
- ../../../DM-Initiator/
patchesStrategicMerge:
- hpa.yaml

@ -2,7 +2,7 @@ apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization
resources:
- https://git.cloudsolutions.com.sa/BASE/CENTRAL-BASE-REPO/ehr/ehricbundlejava
- ../../../DM-Sync/
- ../../../DM-Initiator/
#- post-sync.yaml
patchesStrategicMerge:

@ -2,13 +2,10 @@ apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization
resources:
- https://git.cloudsolutions.com.sa/BASE/CENTRAL-BASE-REPO/ehr/ehricdashboardjava
- ../../../Sync-new/
# - ../../../DM-Sync/
#- post-sync.yaml
- ../../../DM-Initiator/
patchesStrategicMerge:
- hpa.yaml
#- patch-pod.yaml
images:

@ -2,7 +2,7 @@ apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization
resources:
- https://git.cloudsolutions.com.sa/BASE/CENTRAL-BASE-REPO/ehr/ehricui
- ../../../DM-Sync/
- ../../../DM-Initiator/
#patches:
#- patch-pod.yaml

@ -2,7 +2,7 @@ apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization
resources:
- https://git.cloudsolutions.com.sa/BASE/CENTRAL-BASE-REPO/ehr/ehrintitialassessjava
- ../../../DM-Sync/
- ../../../DM-Initiator/
#- post-sync.yaml
patchesStrategicMerge:

@ -2,7 +2,7 @@ apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization
resources:
- https://git.cloudsolutions.com.sa/BASE/CENTRAL-BASE-REPO/ehr/ehripjava
- ../../../DM-Sync/
- ../../../DM-Initiator/
#- post-sync.yaml
patchesStrategicMerge:

@ -2,7 +2,7 @@ apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization
resources:
- https://git.cloudsolutions.com.sa/BASE/CENTRAL-BASE-REPO/ehr/ehrldrjava
- ../../../DM-Sync/
- ../../../DM-Initiator/
#- post-sync.yaml
patchesStrategicMerge:

@ -2,7 +2,7 @@ apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization
resources:
- https://git.cloudsolutions.com.sa/BASE/CENTRAL-BASE-REPO/ehr/ehrlistnerjava
- ../../../DM-Sync/
- ../../../DM-Initiator/
#- post-sync.yaml
patchesStrategicMerge:

@ -2,12 +2,10 @@ apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization
resources:
- https://git.cloudsolutions.com.sa/BASE/CENTRAL-BASE-REPO/ehr/ehropdjava
- ../../../Sync-new/
#- post-sync.yaml
- ../../../DM-Initiator/
patchesStrategicMerge:
- hpa.yaml
#- patch-pod.yaml
images:
- name: harbor.moh.gov.sa/vidamoh/csi-ehr-opd-java-sev

@ -2,7 +2,7 @@ apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization
resources:
- https://git.cloudsolutions.com.sa/BASE/CENTRAL-BASE-REPO/ehr/ehrpomrjava
- ../../../DM-Sync/
- ../../../DM-Initiator/
#- post-sync.yaml
patchesStrategicMerge:

@ -2,10 +2,7 @@ apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization
resources:
- https://git.cloudsolutions.com.sa/BASE/CENTRAL-BASE-REPO/ehr/ehropdui
- ../../../Sync-new/
# patches:
# -hpa.yaml
- ../../../DM-Initiator/
replicas:
- name: csi-ehr-opd-ui

@ -2,7 +2,7 @@ apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization
resources:
- https://git.cloudsolutions.com.sa/BASE/CENTRAL-BASE-REPO/ehr/ehroranesthesiajava
- ../../../DM-Sync/
- ../../../DM-Initiator/
#- post-sync.yaml
patchesStrategicMerge:

@ -2,7 +2,7 @@ apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization
resources:
- https://git.cloudsolutions.com.sa/BASE/CENTRAL-BASE-REPO/ehr/ehrorbookjava
- ../../../DM-Sync/
- ../../../DM-Initiator/
#- post-sync.yaml
patchesStrategicMerge:

@ -2,7 +2,7 @@ apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization
resources:
- https://git.cloudsolutions.com.sa/BASE/CENTRAL-BASE-REPO/ehr/ehrorbookingjava
- ../../../DM-Sync/
- ../../../DM-Initiator/
#- post-sync.yaml
patchesStrategicMerge:

@ -2,7 +2,7 @@ apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization
resources:
- https://git.cloudsolutions.com.sa/BASE/CENTRAL-BASE-REPO/ehr/ehrspecializedclinicjava
- ../../../DM-Sync/
- ../../../DM-Initiator/
#- post-sync.yaml
patchesStrategicMerge:

@ -2,7 +2,7 @@ apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization
resources:
- https://git.cloudsolutions.com.sa/BASE/CENTRAL-BASE-REPO/ehr/ehrtemplatejava
- ../../../DM-Sync/
- ../../../DM-Initiator/
#- post-sync.yaml
patchesStrategicMerge:

@ -2,7 +2,7 @@ apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization
resources:
- https://git.cloudsolutions.com.sa/BASE/CENTRAL-BASE-REPO/ehr/workflow
- ../../../DM-Sync/
- ../../../DM-Initiator/
patchesStrategicMerge:
- hpa.yaml

@ -3,7 +3,7 @@ kind: Kustomization
resources:
- https://git.cloudsolutions.com.sa/BASE/CENTRAL-BASE-REPO/empi/empiui
- ../../../DM-Sync/
- ../../../DM-Initiator/
replicas:
- name: csi-empi-ui

@ -2,7 +2,7 @@ apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization
resources:
- https://git.cloudsolutions.com.sa/BASE/CENTRAL-BASE-REPO/er/erfunctiondotnet
- ../../../DM-Sync/
- ../../../DM-Initiator/
#- post-sync.yaml
#- https://git.cloudsolutions.com.sa/BASE/CENTRAL-BASE-REPO/er/erfunctiondotnet

@ -2,10 +2,7 @@ apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization
resources:
- https://git.cloudsolutions.com.sa/BASE/CENTRAL-BASE-REPO/er/ehrerui
- ../../../Sync-new/
#patches:
#- patch-pod.yaml
- ../../../DM-Initiator/
replicas:
- name: csi-ehr-er-ui

@ -2,7 +2,7 @@ apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization
resources:
- https://git.cloudsolutions.com.sa/BASE/CENTRAL-BASE-REPO/him/csinethimservi
- ../../../DM-Sync/
- ../../../DM-Initiator/
patchesStrategicMerge:
- hpa.yaml

@ -5,7 +5,7 @@ resources:
#patches:
#- patch-pod.yaml
- ../../../DM-Sync/
- ../../../DM-Initiator/
replicas:
- name: csi-him-ui

@ -2,7 +2,7 @@ apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization
resources:
- https://git.cloudsolutions.com.sa/BASE/CENTRAL-BASE-REPO/integration/csiiegeneral
- ../../../DM-Sync/
- ../../../DM-Initiator/
patchesStrategicMerge:
- hpa.yaml

@ -2,7 +2,7 @@ apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization
resources:
- https://git.cloudsolutions.com.sa/BASE/CENTRAL-BASE-REPO/integration/csiiemobile
- ../../../DM-Sync/
- ../../../DM-Initiator/
patchesStrategicMerge:
- hpa.yaml

@ -2,7 +2,7 @@ apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization
resources:
- https://git.cloudsolutions.com.sa/BASE/CENTRAL-BASE-REPO/lab/labui
- ../../../DM-Sync/
- ../../../DM-Initiator/
replicas:
- name: csi-lab-labg-ui

@ -2,9 +2,7 @@ apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization
resources:
- https://git.cloudsolutions.com.sa/BASE/CENTRAL-BASE-REPO/lab/labmgmtdotnet
- ../../../Sync-new/
# - ../../../DM-Sync/
# - post-sync.yaml
- ../../../DM-Initiator/
patchesStrategicMerge:
- hpa.yaml

@ -1,7 +1,8 @@
apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization
resources:
- https://git.cloudsolutions.com.sa/BASE/CENTRAL-BASE-REPO/lab/labscheduled- ../../../DM-Sync/
- https://git.cloudsolutions.com.sa/BASE/CENTRAL-BASE-REPO/lab/labscheduled
- ../../../DM-Initiator/
- post-sync.yaml
patchesStrategicMerge:

@ -1,7 +1,8 @@
apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization
resources:
- https://git.cloudsolutions.com.sa/BASE/CENTRAL-BASE-REPO/pharmacy/ehripprescriptionjava- ../../../DM-Sync/
- https://git.cloudsolutions.com.sa/BASE/CENTRAL-BASE-REPO/pharmacy/ehripprescriptionjava
- ../../../DM-Initiator/
- post-sync.yaml
patchesStrategicMerge:

@ -2,7 +2,7 @@ apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization
resources:
- https://git.cloudsolutions.com.sa/BASE/CENTRAL-BASE-REPO/pharmacy/phrbasejava
- ../../../Sync-new/
- ../../../DM-Initiator/
- post-sync.yaml
patchesStrategicMerge:

@ -2,7 +2,7 @@ apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization
resources:
- https://git.cloudsolutions.com.sa/BASE/CENTRAL-BASE-REPO/pharmacy/pharmacyui
- ../../../DM-Sync/
- ../../../DM-Initiator/
#patches:
#- patch-pod.yaml

@ -2,7 +2,7 @@ apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization
resources:
- https://git.cloudsolutions.com.sa/BASE/CENTRAL-BASE-REPO/renal/renalnet
- ../../../DM-Sync/
- ../../../DM-Initiator/
patchesStrategicMerge:
- hpa.yaml

@ -2,7 +2,7 @@ apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization
resources:
- https://git.cloudsolutions.com.sa/BASE/CENTRAL-BASE-REPO/rms/dsdental
- ../../../DM-Sync/
- ../../../DM-Initiator/
patchesStrategicMerge:
- hpa.yaml

@ -2,7 +2,7 @@ apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization
resources:
- https://git.cloudsolutions.com.sa/BASE/CENTRAL-BASE-REPO/rms/mlmui
- ../../../DM-Sync/
- ../../../DM-Initiator/
# patches:
# - hpa.yaml

@ -2,7 +2,7 @@ apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization
resources:
- https://git.cloudsolutions.com.sa/BASE/CENTRAL-BASE-REPO/rms/pmsadtrequest
- ../../../Sync-new/
- ../../../DM-Initiator/
patchesStrategicMerge:
- hpa.yaml

@ -2,10 +2,8 @@ apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization
resources:
- https://git.cloudsolutions.com.sa/BASE/CENTRAL-BASE-REPO/rms/adtui
- ../../../Sync-new/
- ../../../DM-Initiator/
# patches:
# - hpa.yaml
images:
- name: harbor.moh.gov.sa/vidamoh/adt-ui

@ -2,15 +2,7 @@ apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization
resources:
- https://git.cloudsolutions.com.sa/BASE/CENTRAL-BASE-REPO/rms/rmsmorgue
resources:
# - db-sync.yaml - ../../../DM-Sync/
#- dbsync.yaml
# - dbsyncwithpv.yaml
- ../../../DM-Initiator/
patchesStrategicMerge:
- hpa.yaml

@ -2,7 +2,7 @@ apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization
resources:
- https://git.cloudsolutions.com.sa/BASE/CENTRAL-BASE-REPO/rms/rmsreservation
- ../../../Sync-new/
- ../../../DM-Initiator/
patchesStrategicMerge:
- hpa.yaml

@ -2,10 +2,7 @@ apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization
resources:
- https://git.cloudsolutions.com.sa/BASE/CENTRAL-BASE-REPO/rms/rmsui
- ../../../Sync-new/
#patches:
#- patch-pod.yaml
- ../../../DM-Initiator/
images:
- name: harbor.moh.gov.sa/vidamoh/rms-ui

@ -2,7 +2,7 @@ apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization
resources:
- https://git.cloudsolutions.com.sa/BASE/CENTRAL-BASE-REPO/rms/setupui
- ../../../DM-Sync/
- ../../../DM-Initiator/
# patches:
# - hpa.yaml

@ -2,7 +2,7 @@ apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization
resources:
- https://git.cloudsolutions.com.sa/BASE/CENTRAL-BASE-REPO/rms/rmsui
- ../../../DM-Sync
- ../../../DM-Initiator
images:
- name: harbor.moh.gov.sa/vidamoh/rms-ui

Loading…
Cancel
Save