forked from asizikov/cluster-guinea-pig
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapi-deploy.yaml
51 lines (51 loc) · 968 Bytes
/
api-deploy.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
apiVersion: apps/v1
kind: Deployment
metadata:
name: api
labels:
app: api
spec:
replicas: 1
selector:
matchLabels:
app: api
strategy:
type: RollingUpdate
rollingUpdate:
maxSurge: 1
maxUnavailable: 1
template:
metadata:
labels:
app: api
spec:
containers:
- name: api
image: ghcr.io/norbinto/api:1.0
imagePullPolicy: Always
env:
- name: REDIS
value: redis
- name: ASPNETCORE_ENVIRONMENT
value: Development
resources:
requests:
memory: "64Mi"
cpu: "500m"
limits:
memory: "512Mi"
cpu: "1"
imagePullSecrets:
- name: dockerconfigjson-github-com
---
apiVersion: v1
kind: Service
metadata:
name: api-service
spec:
selector:
app: api
ports:
- protocol: TCP
port: 8080
targetPort: 80