Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -137,10 +137,10 @@ E2E_USE_DEFAULT_IMAGES?=false
E2E_SKIP_CONTAINER_BUILD?=false

# Used for substitutions
DEFAULT_CONTENT_IMAGE=ghcr.io/complianceascode/k8scontent:latest
DEFAULT_CONTENT_IMAGE=quay.io/redhat-user-workloads/ocp-isc-tenant/compliance-operator-content-dev:master
CONTENT_IMAGE?=$(DEFAULT_CONTENT_IMAGE)
# Specifies the image path to use for the content in the tests
E2E_CONTENT_IMAGE_PATH?=ghcr.io/complianceascode/k8scontent:latest
E2E_CONTENT_IMAGE_PATH?=quay.io/redhat-user-workloads/ocp-isc-tenant/compliance-operator-content-dev:master
# We specifically omit the tag here since we use this for testing
# different images referenced by different tags.
E2E_BROKEN_CONTENT_IMAGE_PATH?=ghcr.io/complianceascode/test-broken-content-ocp
Expand Down
1 change: 0 additions & 1 deletion images/testcontent/Dockerfile.ci

This file was deleted.

2 changes: 1 addition & 1 deletion pkg/controller/compliancescan/utils.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ import (
)

const (
DefaultContentContainerImage = "ghcr.io/complianceascode/k8scontent:latest"
DefaultContentContainerImage = "quay.io/redhat-user-workloads/ocp-isc-tenant/compliance-operator-content-dev:master"
CACertDataKey = "ca.crt"
CAKeyDataKey = "ca.key"
ServerCertInstanceSuffix = "-rs"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ var _ = Describe("Testing scansettingbinding controller", func() {
Namespace: common.GetComplianceOperatorNamespace(),
},
Spec: compv1alpha1.ProfileBundleSpec{
ContentImage: "ghcr.io/complianceascode/k8scontent:latest",
ContentImage: "quay.io/redhat-user-workloads/ocp-isc-tenant/compliance-operator-content-dev:master",
ContentFile: "ssg-rhcos4-ds.xml",
},
Status: compv1alpha1.ProfileBundleStatus{
Expand Down
2 changes: 1 addition & 1 deletion pkg/utils/images.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ var componentDefaults = []struct {
}{
{"ghcr.io/complianceascode/openscap-ocp:latest", "RELATED_IMAGE_OPENSCAP"},
{"ghcr.io/complianceascode/compliance-operator:latest", "RELATED_IMAGE_OPERATOR"},
{"ghcr.io/complianceascode/k8scontent:latest", "RELATED_IMAGE_PROFILE"},
{"quay.io/redhat-user-workloads/ocp-isc-tenant/compliance-operator-content-dev:master", "RELATED_IMAGE_PROFILE"},
}

// GetComponentImage returns a full image pull spec for a given component
Expand Down
Loading