Skip to content

Commit

Permalink
fix: 누락된 부분 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
Seungpang committed Dec 1, 2023
1 parent cc8e550 commit ff6e3a6
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/click-service-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ jobs:
run: ../gradlew docker

- name: Docker tag
run: docker tag click-me-${{env.WORKSTATION_IMAGE}}:${env.VERSION} ${{env.image}}
run: docker tag click-me-${{env.WORKSTATION_IMAGE}}:${{env.VERSION}} ${{env.image}}

- name: Docker Push
run: docker push ${{env.image}}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/transfer-service-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ jobs:
- 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}}
run: docker tag click-me-${{env.WORKSTATION_IMAGE}}:${{env.VERSION}} ${{env.image}}

- name: Docker Push
run: docker push ${{env.image}}
8 changes: 8 additions & 0 deletions click-service/resources.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,14 @@ spec:
containers:
- name: core
image: ${image}
imagePullPolicy: Always
ports:
- containerPort: 8080
protocol: TCP
resources:
requests:
cpu: 500m
memory: 1000Mi
---
apiVersion: v1
kind: Service
Expand Down

0 comments on commit ff6e3a6

Please sign in to comment.