Skip to content

Commit

Permalink
Test new image
Browse files Browse the repository at this point in the history
  • Loading branch information
mavalosn committed Dec 21, 2023
1 parent 663eacf commit 1c6350d
Showing 1 changed file with 36 additions and 15 deletions.
51 changes: 36 additions & 15 deletions .github/workflows/deploy-k8s.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,24 +41,45 @@ concurrency:
cancel-in-progress: true
jobs:
imageEKS:
name: build-docker-image-EKS
name: CreateDB
runs-on: self-hosted
container:
image: processmaker/cicd:latest
options: --user root
steps:
- name: Clone private repository
- name: CreateDB
run: |
git clone --depth 1 -b eng "https://[email protected]/ProcessMaker/argocd.git" argocd
cd argocd
ls -la
- name: Version Helm
run: |
echo "Get HELM................"
helm version
- name: Helm list
run: |
echo "Creating DB ............."
pwd
ls -la
helm list
cd argocd
helm list && helm repo add processmaker ${{ secrets.HELM_REPO }} --username ${{ secrets.HELM_USERNAME }} --password ${{ secrets.HELM_PASSWORD }}
echo "Finish migration ...................."
cd /bin/
ls -la
echo "************************************"
cat db.sh
echo "************************************"
chmod +x /bin/db.sh
/bin/db.sh
echo "##### HELM VERSION ######"
helm version
#imageEKS:
# name: build-docker-image-EKS
# runs-on: self-hosted
# steps:
# - name: Clone private repository
# run: |
# git clone --depth 1 -b eng "https://[email protected]/ProcessMaker/argocd.git" argocd
# cd argocd
# ls -la
# - name: Version Helm
# run: |
# echo "Get HELM................"
# helm version
# - name: Helm list
# run: |
# pwd
# ls -la
# helm list
# cd argocd
# helm list && helm repo add processmaker ${{ secrets.HELM_REPO }} --username ${{ secrets.HELM_USERNAME }} --password ${{ secrets.HELM_PASSWORD }}
# echo "Finish migration ...................."

0 comments on commit 1c6350d

Please sign in to comment.