-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathdeployment.yaml
34 lines (34 loc) · 922 Bytes
/
deployment.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
apiVersion: apps/v1
kind: Deployment
metadata:
name: stackset-controller
namespace: kube-system
labels:
application: stackset-controller
version: latest
spec:
replicas: 1
selector:
matchLabels:
application: stackset-controller
template:
metadata:
labels:
application: stackset-controller
version: latest
spec:
serviceAccountName: stackset-controller
containers:
- name: stackset-controller
image: registry.opensource.zalan.do/teapot/stackset-controller:v1.3.37
# please adjust this for your environment
# the cluster-domain must match the application domain suffix
# Example application domain: my-app.example.org
args: ["--cluster-domain=example.org"]
resources:
limits:
cpu: 10m
memory: 100Mi
requests:
cpu: 10m
memory: 100Mi