Skip to content

Commit

Permalink
Bumping up MUO to v0.1.952 (#3149)
Browse files Browse the repository at this point in the history
Co-authored-by: Amber Brown <[email protected]>
  • Loading branch information
tiguelu and hawkowl authored Sep 12, 2023
1 parent c4cf22a commit b1db194
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion pkg/operator/controllers/muo/muo_controller_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ func TestMUOReconciler(t *testing.T) {
},
mocks: func(md *mock_deployer.MockDeployer, cluster *arov1alpha1.Cluster) {
expectedConfig := &config.MUODeploymentConfig{
Pullspec: "acrtest.example.com/managed-upgrade-operator:aro-b4",
Pullspec: "acrtest.example.com/app-sre/managed-upgrade-operator:v0.1.952-44b631a",
EnableConnected: false,
}
md.EXPECT().CreateOrUpdate(gomock.Any(), cluster, expectedConfig).Return(nil)
Expand Down
2 changes: 1 addition & 1 deletion pkg/util/version/const.go
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ func MdsdImage(acrDomain string) string {

// MUOImage contains the location of the Managed Upgrade Operator container image
func MUOImage(acrDomain string) string {
return acrDomain + "/managed-upgrade-operator:aro-b4"
return acrDomain + "/app-sre/managed-upgrade-operator:v0.1.952-44b631a"
}

// GateKeeperImage contains the location of the GateKeeper container image
Expand Down
6 changes: 3 additions & 3 deletions test/e2e/operator.go
Original file line number Diff line number Diff line change
Expand Up @@ -399,9 +399,9 @@ var _ = Describe("ARO Operator - MUO Deployment", func() {
b, err := clients.Kubernetes.CoreV1().Pods(managedUpgradeOperatorNamespace).GetLogs(pods.Items[0].Name, &corev1.PodLogOptions{}).DoRaw(ctx)
g.Expect(err).NotTo(HaveOccurred())

g.Expect(string(b)).To(ContainSubstring(`msg="FIPS crypto mandated: true"`))
g.Expect(string(b)).To(ContainSubstring(`X:boringcrypto,strictfipsruntime`))
}).WithContext(ctx).Should(Succeed())
})
}, SpecTimeout(2*time.Minute))

It("must be restored if deleted", func(ctx context.Context) {
deleteMUODeployment := func(ctx context.Context) error {
Expand All @@ -428,7 +428,7 @@ var _ = Describe("ARO Operator - MUO Deployment", func() {

By("waiting for the MUO deployment to be reconciled")
Eventually(muoDeploymentExists).WithContext(ctx).Should(Succeed())
})
}, SpecTimeout(2*time.Minute))
})

var _ = Describe("ARO Operator - ImageConfig Reconciler", func() {
Expand Down

0 comments on commit b1db194

Please sign in to comment.