-
Notifications
You must be signed in to change notification settings - Fork 209
101 lines (101 loc) · 4.01 KB
/
deploy-k8s.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
name: deploy-k8s
run-name: ${{ github.actor }} is testing out GitHub Actions NEXT 🚀
on:
push:
branches:
- FOUR-9465
workflow_dispatch:
env:
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
aws-region: ${{ secrets.AWS_REGION }}
aws-url: ${{ secrets.AWS_URL }}
DATE: $(date -d '-1 day' '+%Y-%m-%d'|sed 's/-//g')
BRANCH: next
CI_PACKAGE_BRANCH: ${{github.event.pull_request.head.ref || 'develop' }}
CI_PROJECT: ${{github.event.pull_request.head.repo.name || 'processmaker' }}
IMAGE_TAG: $(echo "$CI_PROJECT-$CI_PACKAGE_BRANCH" | sed "s;/;-;g")
DEPLOY: ${{ secrets.DEPLOY }}
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
#imageEKS:
# name: build-docker-image-EKS
# runs-on: ubuntu-22.04
# steps:
# #- uses: actions/checkout@v3
# - name: Clone repo K8S
# run: |
# git clone --depth 1 -b cicd "https://[email protected]/ProcessMaker/pm4-k8s-distribution.git" pm4-k8s-distribution
# cd pm4-k8s-distribution
# - name: Print Params
# run: |
# echo "***********************"
# echo ${{env.IMAGE_TAG}}
# deploy=$(echo -n ${{env.IMAGE_TAG}} | md5sum | head -c 10)
# echo ci-$deploy
# echo "************************"
# - name: Generate image EKS
# run: |
# cd pm4-k8s-distribution
# bash ./images/build.local.sh $CI_PACKAGE_BRANCH ${{env.IMAGE_TAG}}
# - name: List Images
# run: |
# docker images
# echo "Version: $VERSION"
# - name: Configure AWS Credentials
# uses: aws-actions/configure-aws-credentials@v1
# with:
# aws-access-key-id: ${{ env.aws-access-key-id }}
# aws-secret-access-key: ${{ env.aws-secret-access-key }}
# aws-region: ${{ env.aws-region }}
# - name: Login to ECR
# run: |
# aws ecr-public get-login-password --region us-east-1 | docker login --username AWS --password-stdin public.ecr.aws/processmaker
# - name: Push OpenSource Image to ECR
# run: |
# cd pm4-k8s-distribution
# docker tag local/processmaker:${{env.IMAGE_TAG}} public.ecr.aws/processmaker/processmaker:${{env.IMAGE_TAG}}
# docker push public.ecr.aws/processmaker/processmaker:${{env.IMAGE_TAG}}
# - name: Push Enterprise Image to ECR
# run: |
# cd pm4-k8s-distribution
# docker tag local/enterprise:${{env.IMAGE_TAG}} public.ecr.aws/processmaker/enterprise:${{env.IMAGE_TAG}}
# docker push public.ecr.aws/processmaker/enterprise:${{env.IMAGE_TAG}}
deployEKS:
name: build-deploy-EKS
runs-on: ubuntu-22.04
steps:
- name: Clone private repository
run: |
git clone --depth 1 -b main "https://[email protected]/ProcessMaker/argocd.git" argocd
cd argocd
- run: git config --global user.email "[email protected]"
- run: git config --global user.name "cloudops"
- name: View Connection
run: |
echo "---------------------------1"
pwd
ls -la
cd argocd
ls -la
# echo "---------------------------2"
# deploy=$(echo -n ${{env.IMAGE_TAG}} | md5sum | head -c 10)
# echo ci-$deploy
# cp template-argocd.yaml ci/ci-$deploy.yaml
# sed -i "s/{{instance}}/ci-$deploy/" ./ci/ci-$deploy.yaml
# sed -i "s/{{image}}/${{env.IMAGE_TAG}}/" ./ci/ci-$deploy.yaml
# echo "---------------------------3"
# git status
# echo "---------------------------4"
# git add .
# echo "---------------------------5 "
# git commit -m "Develop CICD"
# echo "---------------------------6"
# git push origin develop
# echo "---------------------------7"
# pwd
# echo "---------------------------8"
# ls -la
# echo "---------------------------"