-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvalues.yaml
78 lines (63 loc) · 2.04 KB
/
values.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
78
# Default values for custom-scheduler.
# The Image to use:
# kube-scheduler binary releases can be found here - should fit to cluster version number, of course:
# https://github.com/kubernetes/kube-scheduler/releases
image:
repository: k8s.gcr.io/kube-scheduler
tag: v1.16.3
pullPolicy: IfNotPresent
# Number of scheduler replicas. Settings greater than one defines
# high availability with leader election.
replicaCount: 1
imagePullSecrets: []
# Optional: Custom labels for the scheduler objects
labels: {}
# component: custom-scheduler
# tier: control-plane
# The name of the scheduler. This is the string that is for configuring
# the scheduler for the object, e.g. a pod, a deployment, etc.
# See README.md for example configuration.
schedulerName: my-scheduler
# The filters/predicates for the scheduler to work with, possible
# configuration settings can be found
# [here](<https://kubernetes.io/docs/concepts/scheduling/kube-scheduler/>)
predicates:
- name: PodFitsPorts
- name: PodFitsResources
- name: NoDiskConflict
- name: MatchNodeSelector
- name: HostName
# The scoring/priorities and weights for the scheduler to work
# with, possible configuration settings can be found
# [here](<https://kubernetes.io/docs/concepts/scheduling/kube-scheduler/>)
priorities:
- name: MostRequestedPriority
weight: 1
- name: EqualPriority
weight: 1
# Enable/Disable verbose logging of kube-scheduler. Verbosity can be configured up to 10
logging: {}
# verbosity: 10
serviceAccount:
# Specifies whether a service account should be created (case of rbac active)
create: true
# The name of the service account to use.
# If not set and create is true, a name is generated using the fullname template
name: sa-custom-scheduler
podSecurityContext: {}
# fsGroup: 2000
securityContext: {}
# capabilities:
# drop:
# - ALL
# readOnlyRootFilesystem: true
# runAsNonRoot: true
# runAsUser: 1000
# Ressource usage of kube-scheduler
resources:
requests:
cpu: 100m
memory: 128Mi
nodeSelector: {}
tolerations: []
affinity: {}