-
Notifications
You must be signed in to change notification settings - Fork 253
/
Copy pathparam.go
121 lines (104 loc) · 3.64 KB
/
param.go
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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
package param
const (
// DryRun logs but does not terminate pods
// Type: bool
// Default: true
DryRun = "kubemonkey.dry_run"
// Timezone specifies the timezone to use when
// scheduling Pod terminations
// Type: string
// Default: America/Los_Angeles
Timezone = "kubemonkey.time_zone"
// RunHour specifies the hour of the weekday
// when the scheduler should run to schedule terminations
// Must be less than StartHour, and [0,23]
// Type: int
// Default: 8
RunHour = "kubemonkey.run_hour"
// StartHour specifies the hour beginning at
// which pod terminations may occur
// Should be set to a time when service owners are expected
// to be available
// Must be less than EndHour, and [0, 23]
// Type: int
// Default: 10
StartHour = "kubemonkey.start_hour"
// EndHour specifies the end hour beyond which no pod
// terminations will occur
// Should be set to a time when service owners are
// expected to be available
// Must be [0,23]
// Type: int
// Default: 16
EndHour = "kubemonkey.end_hour"
// GracePeriodSec specifies the amount of time in
// seconds a pod is given to shut down gracefully,
// before Kubernetes does a hard kill
// Type: int
// Default: 5
GracePeriodSec = "kubemonkey.graceperiod_sec"
// WhitelistedNamespaces specifies a list of
// namespaces where terminations are valid
// Default is defined by metav1.NamespaceDefault
// To allow all namespaces use [""]
// Type: list
// Default: [ "default" ]
WhitelistedNamespaces = "kubemonkey.whitelisted_namespaces"
// BlacklistedNamespaces specifies a list of namespaces
// for which terminations should never
// be carried out.
// Default is defined by metav1.NamespaceSystem
// To block no namespaces use [""]
// Type: list
// Default: [ "kube-system" ]
BlacklistedNamespaces = "kubemonkey.blacklisted_namespaces"
// ClusterAPIServerHost specifies the host URL for Kubernetes
// cluster APIServer. Use this config if the apiserver IP
// address provided by in-cluster config
// does not work for you because your certificate does not
// contain the right SAN
// Type: string
// Default: No default. If not specified, URL provided
// by in-cluster config is used
ClusterAPIServerHost = "kubernetes.host"
// DebugEnabled enables debug mode
// Type: bool
// Default: false
DebugEnabled = "debug.enabled"
// DebugScheduleDelay delays duration
// in sec after kube-monkey is launched
// after which scheduling is run
// Use when debugging to run scheduling sooner
// Type: int
// Default: 30
DebugScheduleDelay = "debug.schedule_delay"
// DebugForceShouldKill guarantees terminations
// to be scheduled for all eligible Deployments,
// i.e., probability of kill = 1
// Type: bool
// Default: false
DebugForceShouldKill = "debug.force_should_kill"
// DebugScheduleImmediateKill schedules pod terminations
// sometime in the next 60 sec to facilitate
// debugging (instead of the hours specified by
// StartHour and EndHour)
// Type: bool
// Default: false
DebugScheduleImmediateKill = "debug.schedule_immediate_kill"
// NotificationsEnabled enables reporting of attacks to an HTTP endpoint
// Type: bool
// Default: false
NotificationsEnabled = "notifications.enabled"
// Notifications Proxy enables send the request with proxy
// Type: string
// Default: nil
NotificationsProxy = "notifications.proxy"
// NotificationsReportSchedule enables reporting of attack schedule to an HTTP endpoint
// Type: bool
// Default: false
NotificationsReportSchedule = "notifications.reportSchedule"
// NotificationsAttacks reports attacks to an HTTP endpoint
// Type: config.Receiver struct
// Default: Receiver{}
NotificationsAttacks = "notifications.attacks"
)