Skip to content

Commit 9d8af20

Browse files
committed
initial import
1 parent 37cb453 commit 9d8af20

16 files changed

+8534
-0
lines changed

.github/workflows/chat-ops.yml

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: Chatops
2+
on:
3+
issue_comment:
4+
types: [created]
5+
6+
jobs:
7+
command-dispatch:
8+
runs-on: ubuntu-latest
9+
if: startsWith(github.event.comment.body, '/deploy') || startsWith(github.event.comment.body, '/swap')
10+
steps:
11+
- name: Slash Command Dispatch
12+
uses: peter-evans/slash-command-dispatch@v2
13+
with:
14+
token: ${{ secrets.CHAT_OPS_TOKEN }}
15+
reaction-token: ${{ github.token }}
16+
commands: |
17+
deploy
18+
swap
19+
permission: admin
20+
issue-type: pull-request

.github/workflows/cleanup-pr.yml

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: Cleanup PR
2+
on:
3+
pull_request:
4+
types: [closed]
5+
branches: master
6+
7+
jobs:
8+
delete-review-slot:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- name: Azure login
12+
uses: azure/login@v1
13+
with:
14+
creds: ${{ secrets.AZURE_SUBSCRIPTION_SECRET }}
15+
16+
- name: Create deployment slot
17+
continue-on-error: true
18+
run: |
19+
az webapp deployment slot delete --name popular-repos --slot review-pr-${{ github.event.number }} --resource-group pied-piper-inc

.github/workflows/deploy-prod.yml

+64
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,64 @@
1+
name: Deploy to production
2+
3+
on:
4+
repository_dispatch:
5+
types: [swap-command]
6+
7+
jobs:
8+
deploy-prod:
9+
name: Deploy
10+
runs-on: ubuntu-latest
11+
steps:
12+
- name: Azure login
13+
uses: azure/login@v1
14+
with:
15+
creds: ${{ secrets.AZURE_SUBSCRIPTION_SECRET }}
16+
17+
- uses: chrnorm/[email protected]
18+
name: Create GitHub deployment
19+
id: deployment
20+
with:
21+
token: ${{github.token }}
22+
ref: ${{ github.event.client_payload.pull_request.head.sha }}
23+
environment: production
24+
25+
- name: Swap staging to production
26+
run: |
27+
az webapp deployment slot swap --name popular-repos --resource-group pied-piper-inc --slot staging --target-slot production
28+
29+
- name: Update deployment status (success)
30+
if: success()
31+
uses: chrnorm/deployment-status@releases/v1
32+
with:
33+
token: "${{ github.token }}"
34+
target_url: http://popular-repos.azurewebsites.net
35+
state: "success"
36+
deployment_id: ${{ steps.deployment.outputs.deployment_id }}
37+
38+
- name: Comment on success
39+
if: success()
40+
uses: peter-evans/[email protected]
41+
with:
42+
comment-id: ${{ github.event.client_payload.github.payload.comment.id }}
43+
reaction: hooray
44+
body: |
45+
Successfully deployed [PR-${{ github.event.client_payload.pull_request.number }}](https://github.com/${{ github.repository}}/actions/runs/${{ github.run_id }}) to [production](http://popular-repos.azurewebsites.net)
46+
47+
- name: Update deployment status (failure)
48+
if: failure()
49+
uses: chrnorm/deployment-status@releases/v1
50+
with:
51+
token: "${{ github.token }}"
52+
state: "failure"
53+
deployment_id: ${{ steps.deployment.outputs.deployment_id }}
54+
55+
- name: Comment on failure
56+
if: failure()
57+
uses: peter-evans/[email protected]
58+
with:
59+
comment-id: ${{ github.event.client_payload.github.payload.comment.id }}
60+
reaction: eyes, confused
61+
body: |
62+
Failed to deploy #${{ github.event.client_payload.pull_request.number }} to production
63+
64+
See https://github.com/${{ github.repository}}/actions/runs/${{ github.run_id }}

.github/workflows/deploy-staging.yml

+68
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,68 @@
1+
name: Deploy to staging
2+
on:
3+
repository_dispatch:
4+
types: [deploy-command]
5+
6+
jobs:
7+
deploy-staging:
8+
name: Deploy
9+
runs-on: ubuntu-latest
10+
steps:
11+
- name: Azure login
12+
uses: azure/login@v1
13+
with:
14+
creds: ${{ secrets.AZURE_SUBSCRIPTION_SECRET }}
15+
16+
- uses: chrnorm/[email protected]
17+
name: Create GitHub deployment
18+
id: deployment
19+
with:
20+
token: ${{github.token }}
21+
ref: ${{ github.event.client_payload.pull_request.head.sha }}
22+
environment: staging
23+
24+
- name: Deploy popular repos
25+
uses: azure/webapps-deploy@v2
26+
id: popular-repos-web
27+
with:
28+
app-name: 'popular-repos'
29+
images: '${{ secrets.AZURE_REGISTRY_NAME }}/popular-repos:${{ github.event.client_payload.pull_request.head.sha}}'
30+
slot-name: staging
31+
32+
- name: Update deployment status (success)
33+
if: success()
34+
uses: chrnorm/deployment-status@releases/v1
35+
with:
36+
token: "${{ github.token }}"
37+
target_url: ${{ steps.popular-repos-web.outputs.webapp-url }}
38+
state: "success"
39+
deployment_id: ${{ steps.deployment.outputs.deployment_id }}
40+
41+
- name: Comment on success
42+
if: success()
43+
uses: peter-evans/[email protected]
44+
with:
45+
comment-id: ${{ github.event.client_payload.github.payload.comment.id }}
46+
reaction: hooray
47+
body: |
48+
Successfully deployed [PR-${{ github.event.client_payload.pull_request.number }}](https://github.com/${{ github.repository}}/actions/runs/${{ github.run_id }}) to [staging](${{ steps.popular-repos-web.outputs.webapp-url }})
49+
50+
51+
- name: Update deployment status (failure)
52+
if: failure()
53+
uses: chrnorm/deployment-status@releases/v1
54+
with:
55+
token: "${{ github.token }}"
56+
state: "failure"
57+
deployment_id: ${{ steps.deployment.outputs.deployment_id }}
58+
59+
- name: Comment on failure
60+
if: failure()
61+
uses: peter-evans/[email protected]
62+
with:
63+
comment-id: ${{ github.event.client_payload.github.payload.comment.id }}
64+
reaction: eyes, confused
65+
body: |
66+
Failed to deploy #${{ github.event.client_payload.pull_request.number }} to staging
67+
68+
See https://github.com/${{ github.repository}}/actions/runs/${{ github.run_id }}

.gitignore

+32
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
# Logs
2+
logs
3+
*.log
4+
npm-debug.log*
5+
6+
# Runtime data
7+
pids
8+
*.pid
9+
*.seed
10+
11+
# Directory for instrumented libs generated by jscoverage/JSCover
12+
lib-cov
13+
14+
# Coverage directory used by tools like istanbul
15+
coverage
16+
17+
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
18+
.grunt
19+
20+
# node-waf configuration
21+
.lock-wscript
22+
23+
# Compiled binary addons (http://nodejs.org/api/addons.html)
24+
build/Release
25+
26+
# Dependency directory
27+
# https://stackoverflow.com/questions/11459475/should-i-check-in-node-modules-to-git-when-creating-a-node-js-app-on-heroku
28+
node_modules
29+
30+
TEST-RESULTS.xml
31+
32+
dist

Dockerfile

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
FROM node:12-slim
2+
# Add `/node_modules/.bin` to $PATH
3+
ENV PATH /node_modules/.bin:$PATH
4+
RUN npm install -g http-server
5+
6+
RUN mkdir app
7+
WORKDIR /app
8+
9+
COPY ./dist .
10+
11+
# Expose port 8080
12+
EXPOSE 8080
13+
14+
# Start the web app
15+
CMD ["http-server"]

README.md

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
<h1 align=center>Popular GitHub Repos by Language</h1>
2+
<p align=center>
3+
<a href="https://github.com/pied-piper-inc/container-service-azure"><img alt="GitHub Actions status" src="https://github.com/pied-piper-inc/container-service-azure/workflows/CI/badge.svg?event=push"></a>
4+
5+
</p>
6+
7+
# About
8+
This repo demonstrates how you can orchestrate a continuous delivery process of a container based application to Azure WebApps using GitHub Actions. It is intendended for _for demonstration use only_.
9+
10+

0 commit comments

Comments
 (0)