-
Notifications
You must be signed in to change notification settings - Fork 0
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
2 changed files
with
31 additions
and
81 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 |
---|---|---|
|
@@ -18,20 +18,37 @@ jobs: | |
DOCKERHUB_USERNAME: ${{ secrets.DOCKERHUB_USERNAME }} | ||
DOCKERHUB_PASSWORD: ${{ secrets.DOCKERHUB_PASSWORD }} | ||
IMAGE_NAME: fyle_integration_settings-api | ||
- name: Deploy to Production | ||
uses: fylein/aws-eks-deploy-action@master | ||
env: | ||
EKS_CLUSTER_NAME: ${{ secrets.EKS_CLUSTER_NAME }} | ||
AWS_REGION: ${{ secrets.AWS_REGION }} | ||
LOCAL_HOST: ${{ secrets.LOCAL_HOST }} | ||
LOCAL_PORT: ${{ secrets.LOCAL_PORT }} | ||
REMOTE_PORT: ${{ secrets.REMOTE_PORT }} | ||
EKS_KUBECTL_ROLE: ${{ secrets.EKS_KUBECTL_ROLE }} | ||
ROLE_SESSION_NAME: ${{ secrets.ROLE_SESSION_NAME }} | ||
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} | ||
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | ||
DOCKERHUB_USERNAME: ${{ secrets.DOCKERHUB_USERNAME }} | ||
KUBERNETES_MANIFEST_FILE_PATH: deployment/production/controller.yml | ||
|
||
- name: Install kustomize | ||
run: | | ||
curl -s "https://raw.githubusercontent.com/kubernetes-sigs/kustomize/master/hack/install_kustomize.sh" | bash | ||
sudo mv kustomize /usr/local/bin/ | ||
- name: Clone another repository | ||
uses: actions/checkout@v2 | ||
with: | ||
repository: ${{ secrets.PROD_DEPLOY_REPO }} | ||
ref: master | ||
path: ${{ secrets.PROD_DEPLOY_REPO }} | ||
persist-credentials: false | ||
token: ${{ secrets.DEPLOY_GIT_ACCESS_TOKEN }} | ||
|
||
- name: Update Image Tag | ||
run: | | ||
NEW_TAG="v$(git rev-parse --short HEAD)" | ||
cd ${{ secrets.PROD_DEPLOY_REPO }}/${{ secrets.EKS_CLUSTER_NAME }}/integrations | ||
kustomize edit set image docker.io/${{ secrets.DOCKERHUB_USERNAME }}/fyle_integration_settings-api=docker.io/${{ secrets.DOCKERHUB_USERNAME }}/fyle_integration_settings-api:$NEW_TAG | ||
- name: Commit and push changes | ||
run: | | ||
cd ${{ secrets.PROD_DEPLOY_REPO }}/ | ||
git config --global user.email "[email protected]" | ||
git config --global user.name "GitHub Actions" | ||
git add . | ||
git commit -m "Update image tag" | ||
git remote set-url origin https://x-access-token:${{ secrets.DEPLOY_GIT_ACCESS_TOKEN }}@github.com/${{ secrets.PROD_DEPLOY_REPO }} | ||
git push origin master | ||
- name: Create new Sentry release | ||
env: | ||
SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }} | ||
|
@@ -50,13 +67,3 @@ jobs: | |
# Create new deploy for this Sentry release | ||
sentry-cli releases deploys $SENTRY_RELEASE new -e $SENTRY_DEPLOY_ENVIRONMENT | ||
- name: Slack Notification | ||
uses: rtCamp/action-slack-notify@v2 | ||
env: | ||
SLACK_COLOR: ${{ job.status }} | ||
SLACK_MESSAGE: Production Deploy Status - ${{ job.status }} | ||
SLACK_TITLE: Deploy Integrations Settings API to Production | ||
SLACK_ICON_EMOJI: ":pepeok:" | ||
SLACK_USERNAME: QBO_API | ||
SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK_URL }} | ||
SLACK_FOOTER: '' |
This file was deleted.
Oops, something went wrong.