-
Notifications
You must be signed in to change notification settings - Fork 113
Move watcher to s2i container images #2038
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
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -2125,7 +2125,7 @@ var _ = Describe("OpenStackOperator controller", func() { | |
| Expect(watcher.Spec.APIContainerImageURL).Should(Not(BeNil())) | ||
| Expect(watcher.Spec.ApplierContainerImageURL).Should(Not(BeNil())) | ||
| Expect(watcher.Spec.DecisionEngineContainerImageURL).Should(Not(BeNil())) | ||
| Expect(watcher.Spec.DecisionEngineContainerImageURL).Should(Equal("quay.io/podified-master-centos9/openstack-watcher-decision-engine:current-podified")) | ||
| Expect(watcher.Spec.DecisionEngineContainerImageURL).Should(Equal("quay.io/openstack-k8s-operators/openstack-watcher-base:master-latest")) | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🎯 Functional Correctness | 🟡 Minor | ⚡ Quick win Assert the shared image for all Watcher services. At Line 2128 and Line 2314, the tests compare the shared value only for Based on the unified Watcher image objective and the Also applies to: 2314-2314 🤖 Prompt for AI Agents |
||
|
|
||
| Expect(watcher.Spec.APIServiceTemplate.TLS.Ca.CaBundleSecretName).Should(Equal("combined-ca-bundle")) | ||
|
|
||
|
|
@@ -2232,9 +2232,9 @@ var _ = Describe("OpenStackOperator controller", func() { | |
| }, timeout, interval).Should(Succeed()) | ||
|
|
||
| OSCtlplane := GetOpenStackControlPlane(names.OpenStackControlplaneName) | ||
| Expect(OSCtlplane.Status.ContainerImages.WatcherAPIImage).Should(Equal(ptr.To("quay.io/podified-master-centos9/openstack-watcher-api:current-podified"))) | ||
| Expect(OSCtlplane.Status.ContainerImages.WatcherApplierImage).Should(Equal(ptr.To("quay.io/podified-master-centos9/openstack-watcher-applier:current-podified"))) | ||
| Expect(OSCtlplane.Status.ContainerImages.WatcherDecisionEngineImage).Should(Equal(ptr.To("quay.io/podified-master-centos9/openstack-watcher-decision-engine:current-podified"))) | ||
| Expect(OSCtlplane.Status.ContainerImages.WatcherAPIImage).Should(Equal(ptr.To("quay.io/openstack-k8s-operators/openstack-watcher-base:master-latest"))) | ||
| Expect(OSCtlplane.Status.ContainerImages.WatcherApplierImage).Should(Equal(ptr.To("quay.io/openstack-k8s-operators/openstack-watcher-base:master-latest"))) | ||
| Expect(OSCtlplane.Status.ContainerImages.WatcherDecisionEngineImage).Should(Equal(ptr.To("quay.io/openstack-k8s-operators/openstack-watcher-base:master-latest"))) | ||
| }) | ||
| }) | ||
|
|
||
|
|
@@ -2311,7 +2311,7 @@ var _ = Describe("OpenStackOperator controller", func() { | |
| // default Watche container images are set | ||
| Expect(watcher.Spec.APIContainerImageURL).Should(Not(BeNil())) | ||
| Expect(watcher.Spec.ApplierContainerImageURL).Should(Not(BeNil())) | ||
| Expect(watcher.Spec.DecisionEngineContainerImageURL).Should(Equal("quay.io/podified-master-centos9/openstack-watcher-decision-engine:current-podified")) | ||
| Expect(watcher.Spec.DecisionEngineContainerImageURL).Should(Equal("quay.io/openstack-k8s-operators/openstack-watcher-base:master-latest")) | ||
|
|
||
| }) | ||
|
|
||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.