9207b6364c
- On new desired state:
- Mark as progressing during reconciliation
- Remove old status conditions, since they are now stale
- Replace boolean status fields with status conditions, and remove unimplemented ones for now
- Move to kubernetes 1.20 libraries to inclue a status condition bugfix [0]
- Ensure requeue on status update failures
[0]: 5712e33abc
Change-Id: I8984f36ca1891cfa523c86152b3664f75fed17d0
Signed-off-by: Sean Eagan <seaneagan1@gmail.com>
Change-Id: I54b0954b9a6449029f6311cbf33a63a1ba3a38f9
22 lines
599 B
Modula-2
22 lines
599 B
Modula-2
module vino
|
|
|
|
go 1.13
|
|
|
|
require (
|
|
github.com/evanphx/json-patch v4.9.0+incompatible
|
|
github.com/go-logr/logr v0.3.0
|
|
github.com/kr/text v0.2.0 // indirect
|
|
github.com/niemeyer/pretty v0.0.0-20200227124842-a10e7caefd8e // indirect
|
|
github.com/onsi/ginkgo v1.14.2
|
|
github.com/onsi/gomega v1.10.2
|
|
github.com/prometheus/common v0.10.0
|
|
github.com/stretchr/testify v1.6.1
|
|
go.uber.org/zap v1.15.0
|
|
gopkg.in/check.v1 v1.0.0-20200227125254-8fa46927fb4f // indirect
|
|
k8s.io/api v0.20.2
|
|
k8s.io/apimachinery v0.20.2
|
|
k8s.io/client-go v0.20.2
|
|
sigs.k8s.io/controller-runtime v0.7.0
|
|
sigs.k8s.io/yaml v1.2.0
|
|
)
|