-
Notifications
You must be signed in to change notification settings - Fork 1
/
k8s.yaml
65 lines (65 loc) · 1.27 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
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/app-examples-ips-ig: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: https://ips.hz.aidbox.dev
APP_PORT: "4000"
APP_URL: http://ips-app.ips.svc.cluster.local:4000
APP_CALLBACK_URL: /aidbox
APP_ID: ips-app