Skip to content

Commit

Permalink
change kata-operator-daemon container image
Browse files Browse the repository at this point in the history
When code for the new operator was merged first we missed that
there is still a private test container image referenced in the
code.

This patch fixes it and changes the container image to
quay.io/isolatedcontainers/kata-operator-daemon:4.7

Signed-off-by: Jens Freimann <jfreimann@redhat.com>
  • Loading branch information
jensfr committed Nov 20, 2020
1 parent 5fd00c2 commit aa756a6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Makefile
Expand Up @@ -12,7 +12,7 @@ endif
BUNDLE_METADATA_OPTS ?= $(BUNDLE_CHANNELS) $(BUNDLE_DEFAULT_CHANNEL)

# Image URL to use all building/pushing image targets
IMG ?= controller:latest
IMG ?= quay.io/jensfr/kata-operator:4.7.0
# Produce CRDs that work back to Kubernetes 1.11 (no version conversion)
CRD_OPTIONS ?= "crd:trivialVersions=true"

Expand Down
5 changes: 2 additions & 3 deletions controllers/openshift_controller.go
Expand Up @@ -153,9 +153,8 @@ func (r *KataConfigOpenShiftReconciler) processDaemonsetForCR(operation DaemonOp
NodeSelector: nodeSelector,
Containers: []corev1.Container{
{
Name: "kata-install-pod",
// Image: "quay.io/isolatedcontainers/kata-operator-daemon:v1.0",
Image: "docker.io/pharshal/kata-install-daemon:0.1.1",
Name: "kata-install-pod",
Image: "quay.io/isolatedcontainers/kata-operator-daemon:4.7",
ImagePullPolicy: "Always",
SecurityContext: &corev1.SecurityContext{
Privileged: &runPrivileged,
Expand Down

0 comments on commit aa756a6

Please sign in to comment.