@@ -230,11 +230,31 @@ type CmdProbeInputs struct {
230
230
231
231
// SourceDetails contains source details of the cmdProbe
232
232
type SourceDetails struct {
233
- // Image of the source pod
233
+ // Image for the source pod
234
234
Image string `json:"image,omitempty"`
235
235
// HostNetwork define the hostNetwork of the external pod
236
236
// it supports boolean values and default value is false
237
237
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"`
238
258
}
239
259
240
260
//PromProbeInputs contains all the inputs required for prometheus probe
0 commit comments