|
@@ -1,6 +1,15 @@
|
|
name: DeployFromBranch
|
|
name: DeployFromBranch
|
|
on:
|
|
on:
|
|
workflow_dispatch:
|
|
workflow_dispatch:
|
|
|
|
+ inputs:
|
|
|
|
+ public:
|
|
|
|
+ required: true
|
|
|
|
+ description: Will this environment be publicly available?
|
|
|
|
+ default: "no"
|
|
|
|
+ kafka-ui-password:
|
|
|
|
+ required: true
|
|
|
|
+ description: Password that will be used to login to branch env. If the env is not publicly accessible, this password will not be used.
|
|
|
|
+ default: ""
|
|
pull_request:
|
|
pull_request:
|
|
types: ['labeled']
|
|
types: ['labeled']
|
|
jobs:
|
|
jobs:
|
|
@@ -83,17 +92,24 @@ jobs:
|
|
run: |
|
|
run: |
|
|
cd kafka-ui-infra/aws-infrastructure4eks/argocd/scripts
|
|
cd kafka-ui-infra/aws-infrastructure4eks/argocd/scripts
|
|
echo "Branch:${{ needs.build.outputs.tag }}"
|
|
echo "Branch:${{ needs.build.outputs.tag }}"
|
|
- ./kafka-ui-deployment-from-branch.sh ${{ needs.build.outputs.tag }} ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
|
|
+ ./kafka-ui-deployment-from-branch.sh ${{ needs.build.outputs.tag }} ${{ github.event.inputs.public }} ${{ github.event.inputs.kafka-ui-password }}
|
|
git config --global user.email "kafka-ui-infra@provectus.com"
|
|
git config --global user.email "kafka-ui-infra@provectus.com"
|
|
git config --global user.name "kafka-ui-infra"
|
|
git config --global user.name "kafka-ui-infra"
|
|
git add ../kafka-ui-from-branch/
|
|
git add ../kafka-ui-from-branch/
|
|
git commit -m "added env:${{ needs.build.outputs.deploy }}" && git push || true
|
|
git commit -m "added env:${{ needs.build.outputs.deploy }}" && git push || true
|
|
- - name: make comment with deployment link
|
|
|
|
|
|
+
|
|
|
|
+ - name: make comment with private deployment link
|
|
|
|
+ if: ${{ github.event.inputs.public == 'no' }}
|
|
uses: peter-evans/create-or-update-comment@v1.4.5
|
|
uses: peter-evans/create-or-update-comment@v1.4.5
|
|
with:
|
|
with:
|
|
issue-number: ${{ github.event.pull_request.number }}
|
|
issue-number: ${{ github.event.pull_request.number }}
|
|
body: |
|
|
body: |
|
|
Custom deployment will be available at http://${{ needs.build.outputs.tag }}.internal.kafka-ui.provectus.io
|
|
Custom deployment will be available at http://${{ needs.build.outputs.tag }}.internal.kafka-ui.provectus.io
|
|
|
|
|
|
-
|
|
|
|
-
|
|
|
|
|
|
+ - name: make comment with public deployment link
|
|
|
|
+ if: ${{ github.event.inputs.public == 'yes' }}
|
|
|
|
+ uses: peter-evans/create-or-update-comment@v1.4.5
|
|
|
|
+ with:
|
|
|
|
+ issue-number: ${{ github.event.pull_request.number }}
|
|
|
|
+ body: |
|
|
|
|
+ Custom deployment will be available at http://${{ needs.build.outputs.tag }}.kafka-ui.provectus.io
|