Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add omitempty to optional probe fields #386

Merged
merged 1 commit into from
Aug 25, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions pkg/apis/zookeeper/v1beta1/zookeepercluster_types.go
Original file line number Diff line number Diff line change
Expand Up @@ -155,14 +155,14 @@ type ZookeeperClusterSpec struct {
// Probes specifies the timeout values for the Readiness and Liveness Probes
// for the zookeeper pods.
// +optional
Probes *Probes `json:"probes"`
Probes *Probes `json:"probes,omitempty"`
}

type Probes struct {
// +optional
ReadinessProbe *Probe `json:"readinessProbe"`
ReadinessProbe *Probe `json:"readinessProbe,omitempty"`
// +optional
LivenessProbe *Probe `json:"livenessProbe"`
LivenessProbe *Probe `json:"livenessProbe,omitempty"`
anishakj marked this conversation as resolved.
Show resolved Hide resolved
}

func (s *ZookeeperClusterSpec) withDefaults(z *ZookeeperCluster) (changed bool) {
Expand Down