-
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: github action ci파일 작성 * feat: github action cd파일 작성 * fix: 경로 설정 수정 * fix: 잘못된 부분 수정 * fix: 잘못된 부분 수정 * feat: GKE 관련 부분 추가
- Loading branch information
Showing
6 changed files
with
246 additions
and
1 deletion.
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 |
---|---|---|
@@ -0,0 +1,81 @@ | ||
name: cd for click-service | ||
on: | ||
push: | ||
branches: [ "main" ] | ||
|
||
env: | ||
PROJECT_ID: ${{ secrets.PROJECT_ID }} | ||
DOCKER_REPO: ${{ secrets.DOCKER_REPO }} | ||
REGION: ${{ secrets.REGION }} | ||
WORKSTATION_IMAGE: click-service | ||
VERSION: '1.0.0' | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-22.04 | ||
defaults: | ||
run: | ||
working-directory: ./click-service | ||
|
||
steps: | ||
- name: Check out Repository | ||
uses: actions/checkout@v3 | ||
|
||
- name: Set Kubernetes Yaml | ||
uses: microsoft/variable-substitution@v1 | ||
with: | ||
files: ./resources.yaml | ||
env: | ||
image: ${{env.REGION}}-docker.pkg.dev/${{env.PROJECT_ID}}/${{env.DOCKER_REPO}}/${{env.WORKSTATION_IMAGE}} | ||
spec.template.spec.containers.image: ${{env.image}} | ||
|
||
- name: Set Application Yml | ||
uses: microsoft/variable-substitution@v1 | ||
with: | ||
files: ./src/main/resources/application-prod.yml | ||
env: | ||
spring.data.redis.host: ${{secrets.REDIS_HOST}} | ||
spring.data.redis.port: ${{secrets.REDIS_PORT}} | ||
spring.datasource.url: ${{secrets.DB_URL}} | ||
spring.datasource.username: ${{secrets.DB_USERNAME}} | ||
spring.datasource.password: ${{secrets.DB_PASSWORD}} | ||
spec.template.spec.containers.image: ${{env.image}} | ||
|
||
- name: Set up google auth | ||
id: 'auth' | ||
uses: google-github-actions/auth@v1 | ||
with: | ||
credentials_json: ${{ secrets.GCE_SA_KEY }} | ||
|
||
- id: get-credentials | ||
uses: google-github-actions/get-gke-credentials@v1 | ||
with: | ||
cluster_name: autopilot-cluster-1 | ||
location: ${{env.REGION}} | ||
|
||
- name: Set up Cloud SDK | ||
uses: google-github-actions/setup-gcloud@v1 | ||
with: | ||
project_id: ${{ env.PROJECT_ID }} | ||
|
||
- name: Set up Java version | ||
uses: actions/setup-java@v1 | ||
with: | ||
java-version: '17' | ||
|
||
- name: Run tests | ||
run: ../gradlew test | ||
|
||
- name: Docker Build | ||
if: success() | ||
run: ../gradlew docker | ||
|
||
- name: Docker tag | ||
run: docker tag click-me-${{env.WORKSTATION_IMAGE}}:${env.VERSION} ${{env.image}} | ||
|
||
- name: Docker Push | ||
run: docker push ${{env.image}} | ||
|
||
- name: Deploy | ||
run: kubectl apply -f ./resources.yaml | ||
|
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,34 @@ | ||
name: CI-click-service | ||
|
||
on: | ||
pull_request: | ||
branches: [ main ] | ||
paths: | ||
- click-service/** | ||
- .github/** | ||
|
||
jobs: | ||
ci: | ||
runs-on: ubuntu-22.04 | ||
|
||
defaults: | ||
run: | ||
working-directory: ./click-service | ||
|
||
steps: | ||
- name: Check out Repository | ||
uses: actions/checkout@v3 | ||
|
||
- name: set up JDK 17 | ||
uses: actions/setup-java@v3 | ||
with: | ||
java-version: '17' | ||
distribution: 'corretto' | ||
|
||
- name: Grant execute permission gradlew | ||
run: chmod +x ../gradlew | ||
|
||
- name: Test with Gradle | ||
run: ../gradlew test | ||
|
||
|
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,65 @@ | ||
name: cd for transfer-service | ||
on: | ||
push: | ||
branches: [ "main" ] | ||
|
||
env: | ||
PROJECT_ID: ${{ secrets.PROJECT_ID }} | ||
DOCKER_REPO: ${{ secrets.DOCKER_REPO }} | ||
REGION: ${{ secrets.REGION }} | ||
WORKSTATION_IMAGE: transfer-service | ||
VERSION: '1.0.0' | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-22.04 | ||
defaults: | ||
run: | ||
working-directory: ./transfer-service | ||
|
||
steps: | ||
- name: Check out Repository | ||
uses: actions/checkout@v3 | ||
|
||
- name: Set Application Yml | ||
uses: microsoft/variable-substitution@v1 | ||
with: | ||
files: ./src/main/resources/application-prod.yml | ||
env: | ||
spring.data.redis.host: ${{secrets.REDIS_HOST}} | ||
spring.data.redis.port: ${{secrets.REDIS_PORT}} | ||
spring.datasource.url: ${{secrets.DB_URL}} | ||
spring.datasource.username: ${{secrets.DB_USERNAME}} | ||
spring.datasource.password: ${{secrets.DB_PASSWORD}} | ||
spec.template.spec.containers.image: ${{env.image}} | ||
|
||
- name: Set up google auth | ||
id: 'auth' | ||
uses: google-github-actions/auth@v1 | ||
with: | ||
credentials_json: ${{ secrets.GCE_SA_KEY }} | ||
|
||
- name: Set up Cloud SDK | ||
uses: google-github-actions/setup-gcloud@v1 | ||
with: | ||
project_id: ${{ env.PROJECT_ID }} | ||
|
||
- name: Set up Java version | ||
uses: actions/setup-java@v1 | ||
with: | ||
java-version: '17' | ||
|
||
- name: Run tests | ||
run: ../gradlew test | ||
|
||
- name: Docker Build | ||
if: success() | ||
run: ../gradlew docker | ||
|
||
- name: Docker tag | ||
env: | ||
image: ${{env.REGION}}-docker.pkg.dev/${{env.PROJECT_ID}}/${{env.DOCKER_REPO}}/${{env.WORKSTATION_IMAGE}} | ||
run: docker tag click-me-${{env.WORKSTATION_IMAGE}}:${env.VERSION} ${{env.image}} | ||
|
||
- name: Docker Push | ||
run: docker push ${{env.image}} |
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,34 @@ | ||
name: CI-transfer-service | ||
|
||
on: | ||
pull_request: | ||
branches: [ main ] | ||
paths: | ||
- transfer-service/** | ||
- .github/** | ||
|
||
jobs: | ||
ci: | ||
runs-on: ubuntu-22.04 | ||
|
||
defaults: | ||
run: | ||
working-directory: ./transfer-service | ||
|
||
steps: | ||
- name: Check out Repository | ||
uses: actions/checkout@v3 | ||
|
||
- name: set up JDK 17 | ||
uses: actions/setup-java@v3 | ||
with: | ||
java-version: '17' | ||
distribution: 'corretto' | ||
|
||
- name: Grant execute permission gradlew | ||
run: chmod +x ../gradlew | ||
|
||
- name: Test with Gradle | ||
run: ../gradlew test | ||
|
||
|
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,31 @@ | ||
apiVersion: apps/v1 | ||
kind: Deployment | ||
metadata: | ||
name: click-service | ||
spec: | ||
selector: | ||
matchLabels: | ||
app: click-service | ||
replicas: 1 | ||
template: | ||
metadata: | ||
labels: | ||
app: click-service | ||
spec: | ||
containers: | ||
- name: core | ||
image: ${image} | ||
--- | ||
apiVersion: v1 | ||
kind: Service | ||
metadata: | ||
name: click-me-nginx | ||
spec: | ||
type: NodePort | ||
ports: | ||
- port: 80 | ||
protocol: TCP | ||
targetPort: 8080 | ||
selector: | ||
app: click-service | ||
|