-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathk8s.yaml
77 lines (77 loc) · 1.43 KB
/
k8s.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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
---
apiVersion: apps/v1
kind: Deployment
metadata:
name: ips-app
namespace: ips
labels:
service: ips-app
spec:
replicas: 1
selector:
matchLabels:
app.kubernetes.io/name: ips-app
template:
metadata:
labels:
app.kubernetes.io/name: ips-app
spec:
containers:
- name: ips-app
image: ghcr.io/aidbox/examples-ips-ig-cl:main
imagePullPolicy: Always
ports:
- name: api
containerPort: 4000
protocol: TCP
envFrom:
- configMapRef:
name: ips-app
- secretRef:
name: ips-app
restartPolicy: Always
strategy:
type: RollingUpdate
rollingUpdate:
maxUnavailable: 25%
maxSurge: 25%
---
apiVersion: v1
kind: Service
metadata:
name: ips-app
namespace: ips
labels:
service: ips-app
spec:
ports:
- name: ips-app
protocol: TCP
port: 4000
targetPort: 4000
selector:
app.kubernetes.io/name: ips-app
type: ClusterIP
---
apiVersion: v1
kind: ConfigMap
metadata:
name: ips-app
namespace: ips
data:
AIDBOX_BASE_URL: http://aidbox-api.aidbox.svc:80
APP_PORT: "4000"
APP_URL: http://ips-app.ips.svc.cluster.local:4000
APP_CALLBACK_URL: /aidbox
APP_ID: ips-app
---
apiVersion: v1
kind: Secret
metadata:
name: ips-app
namespace: ips
data:
AIDBOX_CLIENT_SECRET:
AIDBOX_CLIENT_ID:
APP_SECRET:
type: Opaque