-
Notifications
You must be signed in to change notification settings - Fork 209
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
17 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -52,20 +52,25 @@ jobs: | |
git clone --depth 1 -b eng "https://[email protected]/ProcessMaker/argocd.git" argocd | ||
cd argocd | ||
ls -la | ||
- name: CreateDB | ||
- name: Bouncing Instance | ||
run: | | ||
echo "Creating DB ............." | ||
echo "Bouncing ............." | ||
cd argocd | ||
kubectl apply -f template-db.yaml | ||
echo "##### HELM VERSION ######" | ||
helm version | ||
- name: Deploy instance | ||
run: | | ||
echo "Creating DB ............." | ||
cd argocd | ||
helm list && helm repo add processmaker ${{ secrets.HELM_REPO }} --username ${{ secrets.HELM_USERNAME }} --password ${{ secrets.HELM_PASSWORD }} && helm install --timeout 40m -f processmaker.yaml processmaker processmaker/enterprise --version 2.0.0 | ||
echo "##### HELM VERSION ######" | ||
helm version | ||
kubectl apply -f template-bounce.yaml | ||
#- name: CreateDB | ||
# run: | | ||
# echo "Creating DB ............." | ||
# cd argocd | ||
# kubectl apply -f template-db.yaml | ||
# echo "##### HELM VERSION ######" | ||
# helm version | ||
#- name: Deploy instance | ||
# run: | | ||
# echo "Creating DB ............." | ||
# cd argocd | ||
# helm list && helm repo add processmaker ${{ secrets.HELM_REPO }} --username ${{ secrets.HELM_USERNAME }} --password ${{ secrets.HELM_PASSWORD }} && helm install --timeout 40m -f processmaker.yaml processmaker processmaker/enterprise --version 2.0.0 | ||
# echo "##### HELM VERSION ######" | ||
# helm version | ||
#imageEKS: | ||
# name: build-docker-image-EKS | ||
# runs-on: self-hosted | ||
|