We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 1e62263 + bc50360 commit 5d2f027Copy full SHA for 5d2f027
pkg/meshsync/resources.go
@@ -105,6 +105,34 @@ var (
105
corev1.ResourceMemory: MemoryLimit,
106
},
107
108
+ LivenessProbe: &corev1.Probe{
109
+ InitialDelaySeconds: 60,
110
+ PeriodSeconds: 10,
111
+ TimeoutSeconds: 2,
112
+ FailureThreshold: 4,
113
+ ProbeHandler: corev1.ProbeHandler{
114
+ Exec: &corev1.ExecAction{
115
+ Command: []string{
116
+ "./meshery-meshsync",
117
+ "-h",
118
+ },
119
120
121
122
+ ReadinessProbe: &corev1.Probe{
123
+ InitialDelaySeconds: 20,
124
+ PeriodSeconds: 4,
125
126
127
128
129
130
131
132
133
134
135
136
137
138
0 commit comments