fix lint
Signed-off-by: Howard Lau <howardlau1999@hotmail.com>
This commit is contained in:
parent
89bf4e4e0e
commit
08430619b9
|
@ -65,28 +65,19 @@ var _ = Describe("Seaweed Controller", func() {
|
||||||
|
|
||||||
Eventually(func() bool {
|
Eventually(func() bool {
|
||||||
err := k8sClient.Get(ctx, masterKey, masterSts)
|
err := k8sClient.Get(ctx, masterKey, masterSts)
|
||||||
if err != nil {
|
return err != nil
|
||||||
return false
|
|
||||||
}
|
|
||||||
return true
|
|
||||||
}, timeout, interval).Should(BeTrue())
|
}, timeout, interval).Should(BeTrue())
|
||||||
Expect(*masterSts.Spec.Replicas).Should(Equal(seaweed.Spec.Master.Replicas))
|
Expect(*masterSts.Spec.Replicas).Should(Equal(seaweed.Spec.Master.Replicas))
|
||||||
|
|
||||||
Eventually(func() bool {
|
Eventually(func() bool {
|
||||||
err := k8sClient.Get(ctx, volumeKey, volumeSts)
|
err := k8sClient.Get(ctx, volumeKey, volumeSts)
|
||||||
if err != nil {
|
return err != nil
|
||||||
return false
|
|
||||||
}
|
|
||||||
return true
|
|
||||||
}, timeout, interval).Should(BeTrue())
|
}, timeout, interval).Should(BeTrue())
|
||||||
Expect(*volumeSts.Spec.Replicas).Should(Equal(seaweed.Spec.Volume.Replicas))
|
Expect(*volumeSts.Spec.Replicas).Should(Equal(seaweed.Spec.Volume.Replicas))
|
||||||
|
|
||||||
Eventually(func() bool {
|
Eventually(func() bool {
|
||||||
err := k8sClient.Get(ctx, filerKey, filerSts)
|
err := k8sClient.Get(ctx, filerKey, filerSts)
|
||||||
if err != nil {
|
return err != nil
|
||||||
return false
|
|
||||||
}
|
|
||||||
return true
|
|
||||||
}, timeout, interval).Should(BeTrue())
|
}, timeout, interval).Should(BeTrue())
|
||||||
Expect(*filerSts.Spec.Replicas).Should(Equal(seaweed.Spec.Filer.Replicas))
|
Expect(*filerSts.Spec.Replicas).Should(Equal(seaweed.Spec.Filer.Replicas))
|
||||||
})
|
})
|
||||||
|
|
Loading…
Reference in New Issue