Skip to content

Commit

Permalink
test: fixing linting
Browse files Browse the repository at this point in the history
Signed-off-by: Mahesh Kumar <[email protected]>
  • Loading branch information
k3mahesh committed Jun 6, 2024
1 parent 56bf204 commit 9ecbdcc
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions k8sutils/statefulset_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -438,9 +438,17 @@ func TestCreateOrUpdateStateFul(t *testing.T) {
Image: "redis:latest",
ReadinessProbe: &common.Probe{
InitialDelaySeconds: int32(5),
TimeoutSeconds: int32(0),

Check failure on line 441 in k8sutils/statefulset_test.go

View workflow job for this annotation

GitHub Actions / lint

undefined: common.Probe
PeriodSeconds: int32(0),
SuccessThreshold: int32(0),
FailureThreshold: int32(0),
},
LivenessProbe: &common.Probe{
InitialDelaySeconds: int32(5),
TimeoutSeconds: int32(0),

Check failure on line 448 in k8sutils/statefulset_test.go

View workflow job for this annotation

GitHub Actions / lint

undefined: common.Probe
PeriodSeconds: int32(0),
SuccessThreshold: int32(0),
FailureThreshold: int32(0),
},
},
sidecar: &[]redisv1beta2.Sidecar{
Expand Down

0 comments on commit 9ecbdcc

Please sign in to comment.