-
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.
[FEAT] 운영/개발 서버 분리 및 배포자동화 업데이트 (#385)
* [CHORE] gitignore 수정 * [ADD] github action dev & prod 용 추가[ADD] github action dev & prod 용 추가 * [DEL] 기존 deploy github action 제거 * [CHORE] build github action 실행 포인트 변경 * [ADD] 개발/운용용 도커파일 및 도커 컴포즈 추가 * [CHORE] code deploy 배포 스크립트 수정 * [CHORE] 압축 파일 경로 수정 및 키 파일 추가 * [CHORE] 배포 그룹 출력 추가 * [CHORE] -j 옵션 제거 * [CHORE] 오타 수정 * [CHORE] 파일 존재시 덮어쓰기 추가 * [CHORE] private 키 오타 수정 * [CHORE] 배포그룹 오타 수정 * [CHORE] logback profile 추가 * [CHORE] 실행 여부 확인 명령줄 변경
- Loading branch information
Showing
13 changed files
with
360 additions
and
119 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
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
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 |
---|---|---|
@@ -0,0 +1,131 @@ | ||
# This workflow uses actions that are not certified by GitHub. | ||
# They are provided by a third-party and are governed by | ||
# separate terms of service, privacy policy, and support | ||
# documentation. | ||
# This workflow will build a Java project with Gradle and cache/restore any dependencies to improve the workflow execution time | ||
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-java-with-gradle | ||
|
||
name: BackEnd - CI/CD(deploy) | ||
|
||
on: | ||
pull_request: | ||
branches: [ "main" ] | ||
types: [ closed ] | ||
|
||
|
||
permissions: | ||
contents: read | ||
|
||
jobs: | ||
deploy-prod: | ||
if: github.event.pull_request.merged == true | ||
runs-on: ubuntu-latest | ||
environment: production | ||
env: | ||
DEPLOYMENT_GROUP_NAME: meeteam-app | ||
S3_BUCKET_DIR_NAME: prod | ||
steps: | ||
- name: ✅ Checkout branch | ||
uses: actions/checkout@v3 | ||
# JDK를 17 버전으로 셋팅한다. | ||
- name: ⚙️ Set up JDK 17 | ||
uses: actions/setup-java@v3 | ||
with: | ||
java-version: '17' | ||
distribution: 'temurin' | ||
|
||
# Gradle을 캐싱한다 -> 빌드 속도가 증가하는 효과가 있다. | ||
- name: ✅ Gradle 캐싱 | ||
uses: actions/cache@v3 | ||
with: | ||
path: | | ||
~/.gradle/caches | ||
~/.gradle/wrapper | ||
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }} | ||
restore-keys: | | ||
${{ runner.os }}-gradle- | ||
# 프로젝트 저장소에 업로드하면 안되는 설정 파일들을 만들어줍니다. | ||
- name: 🗂️ Make config | ||
run: | | ||
# src/main/resources 경로 이동 | ||
cd ./src/main/resources | ||
# yml 파일 생성 | ||
touch ./application-prod.yml | ||
echo "$APPLICATION_PROD" > ./application-prod.yml | ||
# 키 파일 생성 | ||
touch ./private-key.pem | ||
echo "$CLOUD_FRONT_KEY" > ./private-key.pem | ||
# 폴더 생성 | ||
mkdir templates | ||
# 메일 관련된 html 파일 생성 | ||
cd ./templates | ||
touch ./ApproveMail.html | ||
echo "$MAIL_APPROVE_TEMPLATE" > ./ApproveMail.html | ||
touch ./UniversityAuthMail.html | ||
echo "$MAIL_VERIFY_TEMPLATE" > ./UniversityAuthMail.html | ||
touch ./ApplicationNotificationMail.html | ||
echo "$MAIL_APPLICATION_NOTIFICATION_TEMPLATE" > ./ApplicationNotificationMail.html | ||
env: | ||
APPLICATION_PROD: ${{ secrets.APPLICATION_PROD }} | ||
MAIL_APPROVE_TEMPLATE: ${{ secrets.MAIL_APPROVE_TEMPLATE }} | ||
MAIL_VERIFY_TEMPLATE: ${{ secrets.MAIL_VERIFY_TEMPLATE }} | ||
MAIL_APPLICATION_NOTIFICATION_TEMPLATE: ${{ secrets.MAIL_APPLICATION_NOTIFICATION_TEMPLATE }} | ||
CLOUD_FRONT_KEY: ${{ secrets.CLOUD_FRONT_KEY }} | ||
shell: bash | ||
|
||
- name: ⚙️ Gradle 권한 부여 | ||
run: chmod +x gradlew | ||
|
||
- name: ⚙️ Gradle로 빌드 실행 | ||
run: ./gradlew bootjar | ||
# 배포에 필요한 여러 설정 파일과 프로젝트 빌드파일을 zip 파일로 모아준다. | ||
- name: 📦 zip file 생성 | ||
run: | | ||
mkdir deploy | ||
mkdir deploy/prod | ||
cp ./docker/prod/docker-compose.prod.yml ./deploy/prod | ||
cp ./docker/prod/Dockerfile ./deploy/prod | ||
cp ./src/main/resources/private-key.pem ./deploy/prod | ||
cp ./build/libs/*.jar ./deploy/prod | ||
cp ./scripts/deploy.sh ./deploy/ | ||
cp ./appspec.yml ./deploy/ | ||
zip -r -qq ./spring-app.zip ./deploy | ||
|
||
# AWS에 연결해준다. | ||
- name: 🌎 AWS 연결 | ||
uses: aws-actions/configure-aws-credentials@v1 | ||
with: | ||
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }} | ||
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | ||
aws-region: ${{ secrets.AWS_REGION }} | ||
|
||
# S3에 프로젝트를 업로드 한다. | ||
- name: 🚛 S3에 프로젝트 업로드 | ||
run: | | ||
aws s3 cp \ | ||
--region ap-northeast-2 \ | ||
./spring-app.zip s3://${{ secrets.S3_BUCKET_NAME }}/${{ env.S3_BUCKET_DIR_NAME }}/spring-app.zip | ||
# CodeDelploy에 배포를 요청한다. | ||
- name: 🚀 Code Deploy 배포 요청 | ||
run: aws deploy create-deployment --application-name meeteam-app | ||
--deployment-config-name CodeDeployDefault.OneAtATime | ||
--deployment-group-name ${{ env.DEPLOYMENT_GROUP_NAME }} | ||
--s3-location bucket=${{ secrets.S3_BUCKET_NAME }},bundleType=zip,key=${{ env.S3_BUCKET_DIR_NAME }}/spring-app.zip | ||
|
||
- name: Discord 알림 봇 | ||
uses: sarisia/actions-status-discord@v1 | ||
if: ${{ failure() }} | ||
with: | ||
title: ❗️ Backend CD failed ❗️ | ||
webhook: ${{ secrets.DISCORD_WEBHOOK }} | ||
color: FF0000 |
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
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
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
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 |
---|---|---|
@@ -0,0 +1,26 @@ | ||
version: '3.8' | ||
|
||
networks: | ||
development_network: | ||
driver: bridge | ||
|
||
services: | ||
redis: | ||
image: "redis:alpine" | ||
container_name: redis-dev | ||
networks: | ||
- development_network | ||
expose: | ||
- "6379" | ||
|
||
spring-app: | ||
build: | ||
context: . | ||
dockerfile: Dockerfile | ||
container_name: dev-spring-app | ||
environment: | ||
- SPRING_PROFILES_ACTIVE=dev | ||
networks: | ||
- development_network | ||
ports: | ||
- "1821:8080" |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,10 @@ | ||
### Docker 이미지를 생성할 때 기반이 되는 베이스 이미지를 설정한다. | ||
FROM openjdk:17 | ||
### Dockerfile 내에서 사용할 변수 JAR_FILE을 정의한다. | ||
ARG JAR_FILE=*.jar | ||
### JAR_FILE 경로에 해당하는 파일을 Docker 이미지 내부로 복사한다. | ||
COPY ${JAR_FILE} meeteam.jar | ||
### CloudFront Private Key 복사 | ||
COPY private-key.pem /app/private-key.pem | ||
### Docker 컨테이너가 시작될 때 실행할 명령을 지정한다. | ||
ENTRYPOINT ["java","-jar","-Dspring.profiles.active=prod","-Duser.timezone=Asia/Seoul","meeteam.jar"] |
Oops, something went wrong.