Remove data migration post-sync job configuration and its reference from kustomization.yaml

main
Ishrath Ahamed 2 months ago
parent 9969f580f4
commit 7aa97c5a19

@ -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.17
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/ && sleep 3600 && 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,4 +0,0 @@
apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization
resources:
- data-migration_postync.yaml
Loading…
Cancel
Save