-
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.
Merge pull request #277 from alwinsimon/v1
V1
- Loading branch information
Showing
6 changed files
with
155 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,31 @@ | ||
# ========================================= CD - Deploy - Client Service ========================================= | ||
|
||
name: CD - Deploy - Client Service | ||
|
||
on: | ||
push: | ||
branches: | ||
- production | ||
paths: | ||
- "client/**" | ||
|
||
jobs: | ||
Client-Service-CD-Pipeline: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
# Build Image and push to Docker registry | ||
- run: cd client && docker build -t alwinsimon/bookmyseat-client . | ||
- run: docker login -u $DOCKER_USERNAME -p $DOCKER_PASSWORD | ||
env: | ||
DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }} | ||
DOCKER_PASSWORD: ${{ secrets.DOCKER_PASSWORD }} | ||
- run: docker push alwinsimon/bookmyseat-client | ||
|
||
# Restart Deployment in K8s cluster deployed in Digital Ocean | ||
- uses: digitalocean/action-doctl@v2 | ||
with: | ||
token: ${{ secrets.DIGITALOCEAN_ACCESS_TOKEN }} | ||
- run: doctl kubernetes cluster kubeconfig save ${{ secrets.DIGITALOCEAN_CLUSTER_ID }} | ||
- run: kubectl rollout restart deployment client-depl |
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 @@ | ||
# ========================================= CD - Deploy - Expiration Service ========================================= | ||
|
||
name: CD - Deploy - Expiration Service | ||
|
||
on: | ||
push: | ||
branches: | ||
- production | ||
paths: | ||
- "expiration/**" | ||
|
||
jobs: | ||
Expiration-Service-CD-Pipeline: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
# Build Image and push to Docker registry | ||
- run: cd expiration && docker build -t alwinsimon/bookmyseat-expiration . | ||
- run: docker login -u $DOCKER_USERNAME -p $DOCKER_PASSWORD | ||
env: | ||
DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }} | ||
DOCKER_PASSWORD: ${{ secrets.DOCKER_PASSWORD }} | ||
- run: docker push alwinsimon/bookmyseat-expiration | ||
|
||
# Restart Deployment in K8s cluster deployed in Digital Ocean | ||
- uses: digitalocean/action-doctl@v2 | ||
with: | ||
token: ${{ secrets.DIGITALOCEAN_ACCESS_TOKEN }} | ||
- run: doctl kubernetes cluster kubeconfig save ${{ secrets.DIGITALOCEAN_CLUSTER_ID }} | ||
- run: kubectl rollout restart deployment expiration-depl |
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 @@ | ||
# ========================================= CD - Deploy - Orders Service ========================================= | ||
|
||
name: CD - Deploy - Orders Service | ||
|
||
on: | ||
push: | ||
branches: | ||
- production | ||
paths: | ||
- "orders/**" | ||
|
||
jobs: | ||
Orders-Service-CD-Pipeline: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
# Build Image and push to Docker registry | ||
- run: cd orders && docker build -t alwinsimon/bookmyseat-orders . | ||
- run: docker login -u $DOCKER_USERNAME -p $DOCKER_PASSWORD | ||
env: | ||
DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }} | ||
DOCKER_PASSWORD: ${{ secrets.DOCKER_PASSWORD }} | ||
- run: docker push alwinsimon/bookmyseat-orders | ||
|
||
# Restart Deployment in K8s cluster deployed in Digital Ocean | ||
- uses: digitalocean/action-doctl@v2 | ||
with: | ||
token: ${{ secrets.DIGITALOCEAN_ACCESS_TOKEN }} | ||
- run: doctl kubernetes cluster kubeconfig save ${{ secrets.DIGITALOCEAN_CLUSTER_ID }} | ||
- run: kubectl rollout restart deployment orders-depl |
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 @@ | ||
# ========================================= CD - Deploy - Payments Service ========================================= | ||
|
||
name: CD - Deploy - Payments Service | ||
|
||
on: | ||
push: | ||
branches: | ||
- production | ||
paths: | ||
- "payments/**" | ||
|
||
jobs: | ||
Payments-Service-CD-Pipeline: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
# Build Image and push to Docker registry | ||
- run: cd payments && docker build -t alwinsimon/bookmyseat-payments . | ||
- run: docker login -u $DOCKER_USERNAME -p $DOCKER_PASSWORD | ||
env: | ||
DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }} | ||
DOCKER_PASSWORD: ${{ secrets.DOCKER_PASSWORD }} | ||
- run: docker push alwinsimon/bookmyseat-payments | ||
|
||
# Restart Deployment in K8s cluster deployed in Digital Ocean | ||
- uses: digitalocean/action-doctl@v2 | ||
with: | ||
token: ${{ secrets.DIGITALOCEAN_ACCESS_TOKEN }} | ||
- run: doctl kubernetes cluster kubeconfig save ${{ secrets.DIGITALOCEAN_CLUSTER_ID }} | ||
- run: kubectl rollout restart deployment payments-depl |
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 @@ | ||
# ========================================= CD - Deploy - Tickets Service ========================================= | ||
|
||
name: CD - Deploy - Tickets Service | ||
|
||
on: | ||
push: | ||
branches: | ||
- production | ||
paths: | ||
- "tickets/**" | ||
|
||
jobs: | ||
Tickets-Service-CD-Pipeline: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
# Build Image and push to Docker registry | ||
- run: cd tickets && docker build -t alwinsimon/bookmyseat-tickets . | ||
- run: docker login -u $DOCKER_USERNAME -p $DOCKER_PASSWORD | ||
env: | ||
DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }} | ||
DOCKER_PASSWORD: ${{ secrets.DOCKER_PASSWORD }} | ||
- run: docker push alwinsimon/bookmyseat-tickets | ||
|
||
# Restart Deployment in K8s cluster deployed in Digital Ocean | ||
- uses: digitalocean/action-doctl@v2 | ||
with: | ||
token: ${{ secrets.DIGITALOCEAN_ACCESS_TOKEN }} | ||
- run: doctl kubernetes cluster kubeconfig save ${{ secrets.DIGITALOCEAN_CLUSTER_ID }} | ||
- run: kubectl rollout restart deployment tickets-depl |
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