Skip to content

Commit

Permalink
Merge pull request #2 from tiagodread/infra
Browse files Browse the repository at this point in the history
Update image name
  • Loading branch information
tiagodread authored Aug 8, 2024
2 parents fbc37c2 + 8b6ddae commit d7d52f1
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 12 deletions.
4 changes: 0 additions & 4 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,6 @@ jobs:
needs: build-and-test
steps:
- uses: actions/checkout@v4


- name: Set up QEMU
uses: docker/setup-qemu-action@v3

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
Expand Down
4 changes: 0 additions & 4 deletions .github/workflows/deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,6 @@ jobs:
needs: build-and-test
steps:
- uses: actions/checkout@v4


- name: Set up QEMU
uses: docker/setup-qemu-action@v3

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
Expand Down
2 changes: 1 addition & 1 deletion deployment/k8s/deployment/app-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ spec:
spec:
containers:
- name: todo-api
image: tiagodreadd/todo-api-api:latest
image: tiagodreadd/todo-api:latest
imagePullPolicy: Always
ports:
- containerPort: 8080
Expand Down
2 changes: 1 addition & 1 deletion deployment/k8s/deployment/pg-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ spec:
spec:
containers:
- name: postgres
image: tiagodreadd/todo-api-db:latest
image: tiagodreadd/todo-db:latest
imagePullPolicy: Always
ports:
- containerPort: 5432
Expand Down
4 changes: 2 additions & 2 deletions docker-compose.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
services:
api:
image: tiagodreadd/todo-api-api:latest
image: tiagodreadd/todo-api:latest
restart: always
ports:
- "8080:8080"
Expand All @@ -13,7 +13,7 @@ services:
- todo-network

db:
image: tiagodreadd/todo-api-db:latest
image: tiagodreadd/todo-db:latest
container_name: database
restart: always
ports:
Expand Down

0 comments on commit d7d52f1

Please sign in to comment.