Skip to content

Commit

Permalink
temp commit to use new admission controller image
Browse files Browse the repository at this point in the history
  • Loading branch information
JacobTanenbaum committed Mar 1, 2024
1 parent d66811e commit 7aa1316
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pkg/network/node_identity.go
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ func renderNetworkNodeIdentity(conf *operv1.NetworkSpec, bootstrapResult *bootst
manifestDirs = append(manifestDirs, filepath.Join(manifestDir, "network/node-identity/managed"))
} else {
// self-hosted specific
data.Data["NetworkNodeIdentityImage"] = os.Getenv("OVN_IMAGE")
data.Data["NetworkNodeIdentityImage"] = "quay.io/jtanenba/openshift-ovn:admission"

// NetworkNodeIdentityTerminationDurationSeconds holds the allowed termination duration
// During node reboot, the webhook has to wait for the API server to terminate first to avoid disruptions
Expand Down
2 changes: 1 addition & 1 deletion pkg/network/ovn_kubernetes.go
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ func renderOVNKubernetes(conf *operv1.NetworkSpec, bootstrapResult *bootstrap.Bo
// render the manifests on disk
data := render.MakeRenderData()
data.Data["ReleaseVersion"] = os.Getenv("RELEASE_VERSION")
data.Data["OvnImage"] = os.Getenv("OVN_IMAGE")
data.Data["OvnImage"] = "quay.io/jtanenba/openshift-ovn:admission"
data.Data["OvnkubeMasterReplicas"] = len(bootstrapResult.OVN.MasterAddresses)
data.Data["KubeRBACProxyImage"] = os.Getenv("KUBE_RBAC_PROXY_IMAGE")
data.Data["Socks5ProxyImage"] = os.Getenv("SOCKS5_PROXY_IMAGE")
Expand Down

0 comments on commit 7aa1316

Please sign in to comment.