-
Notifications
You must be signed in to change notification settings - Fork 0
/
gac-deployment.yml
91 lines (91 loc) · 1.96 KB
/
gac-deployment.yml
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
apiVersion: v1
kind: Namespace
metadata:
name: autoscaling
---
kind: ServiceAccount
apiVersion: v1
metadata:
name: gac
namespace: autoscaling
---
apiVersion: rbac.authorization.k8s.io/v1
kind: ClusterRoleBinding
metadata:
name: gac-resource-reader
roleRef:
apiGroup: rbac.authorization.k8s.io
kind: ClusterRole
name: custom-metrics-server-resources
subjects:
- kind: ServiceAccount
name: gac
namespace: autoscaling
---
apiVersion: rbac.authorization.k8s.io/v1
kind: ClusterRole
metadata:
name: deployment-access
rules:
- apiGroups: ["apps"]
resources: ["deployments", "statefulsets"]
verbs: ["*"]
---
apiVersion: rbac.authorization.k8s.io/v1
kind: ClusterRole
metadata:
name: crd-access
rules:
- apiGroups: ["bsinfo.hhu.de"]
resources: ["autoscalingrules"]
verbs: ["*"]
---
apiVersion: rbac.authorization.k8s.io/v1
kind: ClusterRoleBinding
metadata:
name: gac-resource-access
roleRef:
apiGroup: rbac.authorization.k8s.io
kind: ClusterRole
name: deployment-access
subjects:
- kind: ServiceAccount
name: gac
namespace: autoscaling
---
apiVersion: rbac.authorization.k8s.io/v1
kind: ClusterRoleBinding
metadata:
name: gac-crd-access
roleRef:
apiGroup: rbac.authorization.k8s.io
kind: ClusterRole
name: crd-access
subjects:
- kind: ServiceAccount
name: gac
namespace: autoscaling
---
apiVersion: apps/v1
kind: Deployment
metadata:
name: gac-deployment
namespace: autoscaling
labels:
app: generic-autoscaler-controller
spec:
selector:
matchLabels:
app: generic-autoscaler-controller
template:
metadata:
labels:
app: generic-autoscaler-controller
spec:
serviceAccountName: gac
containers:
- name: generic-autoscaler-controller-container
image: freddyfroehlich/generic-autoscaler-controller:latest
args: ["-rulesNamespace", "autoscaling", "-targetNamespace", "workload-sim", "-minReplicas", "0"]
imagePullSecrets:
- name: regcred