You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
`github.com/openshift/cluster-version-operator/pkg/external/constants.go`
seems the authentic place for the constants, but it is private to the
packages in the same root [1]. This change introduces shortcuts to the
constants that are used externally.
[1]. https://pkg.go.dev/cmd/go#hdr-Internal_Directories
o.Expect(exists).To(o.BeTrue(), "The 'openshift.io/run-level' label on namespace %s does not exist", cvoNamespace)
71
-
o.Expect(runLevel).To(o.BeEmpty(), "Expected the 'openshift.io/run-level' label value on namespace %s has the empty value, but got %s", cvoNamespace, runLevel)
71
+
o.Expect(exists).To(o.BeTrue(), "The 'openshift.io/run-level' label on namespace %s does not exist", external.DefaultCVONamespace)
72
+
o.Expect(runLevel).To(o.BeEmpty(), "Expected the 'openshift.io/run-level' label value on namespace %s has the empty value, but got %s", external.DefaultCVONamespace, runLevel)
72
73
73
74
g.By("Checking that the annotation 'openshift.io/scc annotation' on the CVO pod has the value hostaccess")
0 commit comments