Skip to content

Commit 388bba4

Browse files
committedMay 2, 2022
Latest changes
1 parent 95ca4b3 commit 388bba4

20 files changed

+85
-107
lines changed
 

‎coit-backend1/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
FROM openjdk:8-jdk-alpine
22
# Environment Variable that defines the endpoint of sentiment-analysis python api.
33
ENV SA_LOGIC_API_URL http://localhost:5000
4-
ADD target/sentiment-analysis-web-0.0.2-SNAPSHOT.jar /
54
EXPOSE 8080
65
CMD ["java", "-jar", "sentiment-analysis-web-0.0.2-SNAPSHOT.jar", "--sa.logic.api.url=${SA_LOGIC_API_URL}"]
6+
ADD target/sentiment-analysis-web-0.0.2-SNAPSHOT.jar /

‎coit-backend1/Dockerfile-multistage

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@ RUN mvn install
66
FROM openjdk:8-jdk-alpine
77
# Environment Variable that defines the endpoint of sentiment-analysis python api.
88
ENV SA_LOGIC_API_URL http://localhost:5000
9-
COPY --from=build /usr/app/target/sentiment-analysis-web-0.0.2-SNAPSHOT.jar /
109
EXPOSE 8080
1110
CMD ["java", "-jar", "sentiment-analysis-web-0.0.2-SNAPSHOT.jar", "--sa.logic.api.url=${SA_LOGIC_API_URL}"]
11+
COPY --from=build /usr/app/target/sentiment-analysis-web-0.0.2-SNAPSHOT.jar /

‎coit-backend2/Dockerfile

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
FROM python:3.6-slim
2-
COPY sa /app
32
WORKDIR /app
4-
RUN pip3 install -r requirements.txt && \
5-
python3 -m textblob.download_corpora
63
EXPOSE 5000
74
ENTRYPOINT ["python3"]
85
CMD ["sentiment_analysis.py"]
6+
COPY sa /app
7+
RUN pip3 install -r requirements.txt && \
8+
python3 -m textblob.download_corpora

‎coit-backend2/sa/sentiment_analysis.py

-1
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,5 @@ def analyse_sentiment():
1313
polarity=polarity
1414
)
1515

16-
1716
if __name__ == '__main__':
1817
app.run(host='0.0.0.0', port=5000)

‎coit-frontend/Dockerfile-multistage

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
FROM node:16.13.1 AS build
22
WORKDIR /usr/app
3-
COPY . /usr/app
3+
COPY package.json /usr/app
44
RUN npm install
5+
COPY . /usr/app
56
RUN npm run build
67

78
FROM nginx

‎coit-frontend/src/App.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ class App extends Component {
2020
};
2121

2222
analyzeSentence() {
23-
fetch('http://13.127.201.84:8080/sentiment', {
23+
fetch('http://127.0.0.1:4600/sentiment', {
2424
method: 'POST',
2525
headers: {
2626
'Content-Type': 'application/json'
@@ -46,7 +46,7 @@ class App extends Component {
4646
<MuiThemeProvider>
4747
<div className="centerize">
4848
<Paper zDepth={1} className="content">
49-
<h2>Enter a Message</h2>
49+
<h2>Enter a Message!!!</h2>
5050
<TextField ref={ref => this.textField = ref} onKeyUp={this.onEnterPress.bind(this)}
5151
hintText="Type your sentence."/>
5252
<RaisedButton label="Send" style={style} onClick={this.analyzeSentence.bind(this)}/>

‎resource-manifests/coit-backend1-deployment.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ spec:
2121
app: coit-backend1
2222
spec:
2323
containers:
24-
- image: coitlearning/coit-backend1:v3
24+
- image: coitlearning/coit-backend1:latest
2525
imagePullPolicy: IfNotPresent
2626
name: coit-backend1
2727
env:

‎resource-manifests/coit-backend1/coit-backend1-deployment.yaml

-31
This file was deleted.

‎resource-manifests/coit-backend2-deployment.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ spec:
2121
app: coit-backend2
2222
spec:
2323
containers:
24-
- image: coitlearning/coit-backend2:v3
24+
- image: coitlearning/coit-backend2:latest
2525
imagePullPolicy: IfNotPresent
2626
name: coit-backend2
2727
ports:

‎resource-manifests/coit-backend2/coit-backend2-deployment.yaml

-28
This file was deleted.

‎resource-manifests/coit-backend2/service-coit-backend2.yaml

-11
This file was deleted.

‎resource-manifests/coit-frontend-deployment.yaml

+9-9
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ spec:
88
selector:
99
matchLabels:
1010
app: coit-frontend
11-
replicas: 2 # 2
11+
replicas: 1 # 2
1212
minReadySeconds: 15
1313
strategy:
1414
type: RollingUpdate # 3
@@ -20,16 +20,16 @@ spec:
2020
labels:
2121
app: coit-frontend # 6
2222
spec:
23-
volumes:
24-
- name: frontend-data
25-
persistentVolumeClaim:
26-
claimName: store-persistent-volume-claim
2723
containers:
28-
- image: coitlearning/coit-frontend:v7.0.0
24+
- image: asia.gcr.io/devops-learning-347802/coit-frontend:1.0.0
2925
imagePullPolicy: IfNotPresent # 7
3026
name: coit-frontend
27+
resources:
28+
requests:
29+
memory: "512Mi"
30+
cpu: "250m"
31+
limits:
32+
memory: "1024Mi"
33+
cpu: "500m"
3134
ports:
3235
- containerPort: 80
33-
volumeMounts:
34-
- mountPath: /app
35-
name: frontend-data

‎resource-manifests/coit-frontend/service-coit-frontend-lb.yaml

-12
This file was deleted.
+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
apiVersion: autoscaling/v1
2+
kind: HorizontalPodAutoscaler
3+
metadata:
4+
name: coit-frontend
5+
spec:
6+
scaleTargetRef:
7+
apiVersion: apps/v1
8+
kind: Deployment
9+
name: coit-frontend
10+
minReplicas: 1
11+
maxReplicas: 10
12+
targetCPUUtilizationPercentage: 50
13+

‎resource-manifests/coit-frontend/coit-frontend-deployment.yaml ‎resource-manifests/pvc/coit-frontend-deployment.yaml

+13-1
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,21 @@ spec:
2020
labels:
2121
app: coit-frontend # 6
2222
spec:
23+
volumes:
24+
- name: nginx-root
25+
persistentVolumeClaim:
26+
claimName: coit-frontend
27+
- name: datastore
28+
persistentVolumeClaim:
29+
claimName: coit-frontend-fast
2330
containers:
24-
- image: coitlearning/coit-frontend:v1
31+
- image: asia.gcr.io/devops-learning-347802/coit-frontend:1.0.0
2532
imagePullPolicy: IfNotPresent # 7
2633
name: coit-frontend
2734
ports:
2835
- containerPort: 80
36+
volumeMounts:
37+
- mountPath: /usr/share/nginx/html
38+
name: nginx-root
39+
- mountPath: /var/lib/sql
40+
name: datastore

‎resource-manifests/pvc/fast-pvc.yaml

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
apiVersion: v1
2+
kind: PersistentVolumeClaim
3+
metadata:
4+
name: coit-frontend-fast
5+
spec:
6+
accessModes:
7+
- ReadWriteOnce
8+
volumeMode: Filesystem
9+
resources:
10+
requests:
11+
storage: 8Gi
12+
storageClassName: standard-fast
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
apiVersion: v1
2+
kind: PersistentVolumeClaim
3+
metadata:
4+
name: coit-frontend
5+
spec:
6+
accessModes:
7+
- ReadWriteOnce
8+
volumeMode: Filesystem
9+
resources:
10+
requests:
11+
storage: 8Gi
12+
storageClassName: standard
+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
apiVersion: storage.k8s.io/v1
2+
kind: StorageClass
3+
metadata:
4+
name: standard-fast
5+
parameters:
6+
type: pd-ssd
7+
provisioner: kubernetes.io/gce-pd
8+
reclaimPolicy: Delete
9+
volumeBindingMode: Immediate
10+
allowVolumeExpansion: true

‎resource-manifests/service-coit-frontend-lb.yaml

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ kind: Service # 1
33
metadata:
44
name: coit-frontend-lb
55
spec:
6+
type: LoadBalancer
67
ports:
78
- port: 80 # 3
89
protocol: TCP # 4

‎skaffold.yaml

+4-4
Original file line numberDiff line numberDiff line change
@@ -15,20 +15,20 @@ build:
1515
gitCommit:
1616
variant: AbbrevCommitSha
1717
artifacts:
18-
- image: coit-backend1
18+
- image: asia.gcr.io/devops-learning-347802/coit-backend1
1919
context: coit-backend1
2020
docker:
2121
dockerfile: Dockerfile-multistage
22-
- image: coit-backend2
22+
- image: asia.gcr.io/devops-learning-347802/coit-backend2
2323
context: coit-backend2
2424
docker:
2525
dockerfile: Dockerfile
26-
- image: coit-frontend
26+
- image: asia.gcr.io/devops-learning-347802/coit-frontend
2727
context: coit-frontend
2828
docker:
2929
dockerfile: Dockerfile-multistage
3030
local:
31-
push: false
31+
push: true
3232
deploy:
3333
kubectl:
3434
manifests:

0 commit comments

Comments
 (0)
Please sign in to comment.