Skip to content

Commit 9d66662

Browse files
committedAug 25, 2021
Added new website deployment
1 parent ddc8479 commit 9d66662

File tree

2 files changed

+114
-0
lines changed

2 files changed

+114
-0
lines changed
 

‎.devops/deploy-website-cluster.yml

+111
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,111 @@
1+
trigger:
2+
batch: true
3+
branches:
4+
include:
5+
- main
6+
- develop
7+
paths:
8+
include:
9+
- .devops/deploy-website-cluster.yml
10+
- .docker/website
11+
- src/website
12+
13+
pr: none
14+
15+
pool:
16+
vmImage: "ubuntu-20.04"
17+
18+
steps:
19+
- task: DockerInstaller@0
20+
displayName: "Install Docker"
21+
inputs:
22+
dockerVersion: "17.09.0-ce"
23+
24+
- task: KubectlInstaller@0
25+
displayName: "Install Kubectl"
26+
inputs:
27+
kubectlVersion: "latest"
28+
29+
- task: NodeTool@0
30+
displayName: "Install Node.js"
31+
inputs:
32+
versionSpec: "14.x"
33+
checkLatest: true
34+
35+
- task: YarnInstaller@3
36+
displayName: "Install Yarn"
37+
inputs:
38+
versionSpec: "1.x"
39+
checkLatest: true
40+
41+
- task: Yarn@3
42+
displayName: "Install Packages"
43+
inputs:
44+
projectDirectory: "website"
45+
arguments: "--frozen-lockfile"
46+
47+
- task: Yarn@3
48+
displayName: "Run yarn build"
49+
inputs:
50+
projectDirectory: "website"
51+
arguments: "build --prefix-paths"
52+
53+
- task: Docker@2
54+
displayName: "Build WebSite Container"
55+
inputs:
56+
containerRegistry: '$(container-registry)'
57+
repository: 'ccc-website-$(Build.SourceBranchName)'
58+
command: 'buildAndPush'
59+
Dockerfile: '.docker/website/dockerfile'
60+
buildContext: '.'
61+
62+
- task: Kubernetes@1
63+
displayName: "Deploy WebSite Service"
64+
inputs:
65+
connectionType: "Kubernetes Service Connection"
66+
kubernetesServiceEndpoint: "$(aks-cluster)"
67+
namespace: "$(portal-namespace)"
68+
command: "apply"
69+
useConfigurationFile: true
70+
configurationType: "inline"
71+
inline: |
72+
apiVersion: apps/v1
73+
kind: Deployment
74+
metadata:
75+
name: ccc-website-$(Build.SourceBranchName)
76+
spec:
77+
replicas: 2
78+
selector:
79+
matchLabels:
80+
app: ccc-website-$(Build.SourceBranchName)
81+
template:
82+
metadata:
83+
labels:
84+
app: ccc-website-$(Build.SourceBranchName)
85+
spec:
86+
containers:
87+
- image: $(container-registry-domain)/ccc-website-$(Build.SourceBranchName):$(Build.BuildId)
88+
resources:
89+
limits:
90+
memory: "128Mi"
91+
cpu: "500m"
92+
requests:
93+
memory: "32Mi"
94+
cpu: "1m"
95+
name: ccc-website-$(Build.SourceBranchName)
96+
ports:
97+
- containerPort: 80
98+
---
99+
apiVersion: v1
100+
kind: Service
101+
metadata:
102+
name: ccc-website-$(Build.SourceBranchName)
103+
spec:
104+
type: ClusterIP
105+
ports:
106+
- port: 80
107+
selector:
108+
app: ccc-website-$(Build.SourceBranchName)
109+
secretType: "dockerRegistry"
110+
containerRegistryType: "Azure Container Registry"
111+

‎.docker/website/dockerfile

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# syntax=docker/dockerfile:1
2+
FROM nginx:alpine
3+
COPY ./website/public /usr/share/nginx/html

0 commit comments

Comments
 (0)
Please sign in to comment.