Skip to content
Merged
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
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ IMAGE_TAG_BASE ?= sumologic.com/operator
BUNDLE_IMG ?= $(IMAGE_TAG_BASE)-bundle:v$(VERSION)

# Image URL to use all building/pushing image targets
IMG ?= registry.connect.redhat.com/sumologic/sumologic-kubernetes-collection-helm-operator:4.16.0-0-rc.0
IMG ?= registry.connect.redhat.com/sumologic/sumologic-kubernetes-collection-helm-operator:4.16.0-0

all: docker-build

Expand Down
2 changes: 1 addition & 1 deletion bundle.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -533,7 +533,7 @@ spec:
value: registry.connect.redhat.com/sumologic/telegraf@sha256:75efd2e509c6017ea0fc5c9103ce068cbc89087b16506a4ef48cb5ff00eab84e
- name: RELATED_IMAGE_THANOS
value: registry.connect.redhat.com/sumologic/thanos@sha256:16faf7191668e86d8b576bba055dd0cbdeb009635976b9e07bd00f926032f11c
image: registry.connect.redhat.com/sumologic/sumologic-kubernetes-collection-helm-operator:4.16.0-0-rc.0
image: registry.connect.redhat.com/sumologic/sumologic-kubernetes-collection-helm-operator:4.16.0-0
livenessProbe:
httpGet:
path: /healthz
Expand Down
2 changes: 1 addition & 1 deletion bundle/manifests/operator.clusterserviceversion.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ metadata:
features.operators.openshift.io/token-auth-gcp: 'false'
features.operators.openshift.io/cnf: 'false'
features.operators.openshift.io/csi: 'false'
name: sumologic-kubernetes-collection-helm-operator.v4.16.0-0-rc.0
name: sumologic-kubernetes-collection-helm-operator.v4.16.0-0
namespace: placeholder
spec:
apiservicedefinitions: {}
Expand Down
4 changes: 2 additions & 2 deletions config/manager/kustomization.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,5 @@ kind: Kustomization
images:
- name: controller
newName: registry.connect.redhat.com/sumologic/sumologic-kubernetes-collection-helm-operator
newTag: 4.13.0-1

newTag: 4.16.0-0

4 changes: 2 additions & 2 deletions tests/deploy_helm_operator.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,15 @@ readonly ROOT_DIR="$(dirname "$(dirname "${0}")")"
source "${ROOT_DIR}/tests/functions.sh"

readonly DEPLOYMENT_TYPE="${DEPLOYMENT_TYPE:=default}"
readonly IMG="${IMG:=registry.connect.redhat.com/sumologic/sumologic-kubernetes-collection-helm-operator:4.16.0-0-rc.0}"
readonly IMG="${IMG:=registry.connect.redhat.com/sumologic/sumologic-kubernetes-collection-helm-operator:4.16.0-0}"
readonly NAMESPACE="sumologic-system"
readonly TIME=300

# Change container registry in bundle.yaml to public.ecr.aws and ghcr.io to not login to registry.connect.redhat.com
./tests/replace_components_images.sh

# Change image in bundle.yaml to image
sed -i.bak "s#registry.connect.redhat.com/sumologic/sumologic-kubernetes-collection-helm-operator:4.16.0-0-rc.0#${IMG}#g" bundle.yaml
sed -i.bak "s#registry.connect.redhat.com/sumologic/sumologic-kubernetes-collection-helm-operator:4.16.0-0#${IMG}#g" bundle.yaml

kubectl apply -f bundle.yaml

Expand Down