Skip to content

Commit 725f093

Browse files
authored
chore(Probes): Probe enhancements for cmdProbe as a source (#398)
* updatating chaosengine specs for cmdProbe Signed-off-by: Oum Kale <[email protected]> Signed-off-by: Shubham Chaudhary <[email protected]>
1 parent 66fee1f commit 725f093

File tree

4 files changed

+3604
-10
lines changed

4 files changed

+3604
-10
lines changed

api/litmuschaos/v1alpha1/chaosengine_types.go

+21-1
Original file line numberDiff line numberDiff line change
@@ -230,11 +230,31 @@ type CmdProbeInputs struct {
230230

231231
// SourceDetails contains source details of the cmdProbe
232232
type SourceDetails struct {
233-
// Image of the source pod
233+
// Image for the source pod
234234
Image string `json:"image,omitempty"`
235235
// HostNetwork define the hostNetwork of the external pod
236236
// it supports boolean values and default value is false
237237
HostNetwork bool `json:"hostNetwork,omitempty"`
238+
// Args for the source pod
239+
Args []string `json:"args,omitempty"`
240+
// ENVList contains ENV passed to the source pod
241+
ENVList []corev1.EnvVar `json:"env,omitempty"`
242+
// Labels for the source pod
243+
Labels map[string]string `json:"labels,omitempty"`
244+
// Annotations for the source pod
245+
Annotations map[string]string `json:"annotations,omitempty"`
246+
// Command for the source pod
247+
Command []string `json:"command,omitempty"`
248+
// ImagePullPolicy for the source pod
249+
ImagePullPolicy corev1.PullPolicy `json:"imagePullPolicy,omitempty"`
250+
// Privileged for the source pod
251+
Privileged bool `json:"privileged,omitempty"`
252+
// NodeSelector for the source pod
253+
NodeSelector map[string]string `json:"nodeSelector,omitempty"`
254+
// Volumes for the source pod
255+
Volumes []corev1.Volume `json:"volumes,omitempty"`
256+
// VolumesMount for the source pod
257+
VolumesMount []corev1.VolumeMount `json:"volumeMount,omitempty"`
238258
}
239259

240260
//PromProbeInputs contains all the inputs required for prometheus probe

api/litmuschaos/v1alpha1/zz_generated.deepcopy.go

+57-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)