This repository was archived by the owner on Jul 22, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathdeployment.yaml
More file actions
46 lines (46 loc) · 1.38 KB
/
deployment.yaml
File metadata and controls
46 lines (46 loc) · 1.38 KB
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
apiVersion: apps/v1
kind: Deployment
metadata:
name: liqo-fixed-resources-plugin
labels:
app.kubernetes.io/name: liqo-resource-plugins
app.kubernetes.io/instance: external-monitor-fixed-resources
app.kubernetes.io/component: plugin
app.kubernetes.io/part-of: liqo
app.kubernetes.io/managed-by: manual
spec:
replicas: 1
selector:
matchLabels:
app.kubernetes.io/name: liqo-resource-plugins
app.kubernetes.io/instance: external-monitor-fixed-resources
app.kubernetes.io/component: plugin
app.kubernetes.io/part-of: liqo
app.kubernetes.io/managed-by: manual
template:
metadata:
labels:
app.kubernetes.io/name: liqo-resource-plugins
app.kubernetes.io/instance: external-monitor-fixed-resources
app.kubernetes.io/component: plugin
app.kubernetes.io/part-of: liqo
app.kubernetes.io/managed-by: manual
spec:
containers:
- name: external-monitor-container
image: ghcr.io/liqotech/fixed-resources:latest
imagePullPolicy: Always
ports:
- name: grpc-api
containerPort: 6001
args:
- --resource=cpu=2000m
- --resource=memory=2G
- --resource=pods=10
resources:
requests:
cpu: 50m
memory: 50Mi
limits:
cpu: 100m
memory: 100Mi