From 386cd0526b2eee409eb971b25eb844a3e56e333e Mon Sep 17 00:00:00 2001 From: Andreas Gerstmayr Date: Wed, 6 Mar 2024 13:25:40 +0100 Subject: [PATCH] [chore] drop OPERATOR_NAMESPACE=tempo-operator-system from example commands (#832) It's the default value, no need to specify it. Signed-off-by: Andreas Gerstmayr --- CONTRIBUTING.md | 4 ++-- RELEASE.md | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 817b0b6d1..4a3e0bfbf 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -82,7 +82,7 @@ The `manifests` target will update the image locations and versions of files in ### Using OLM Install latest released version: ``` -IMG_PREFIX=ghcr.io/grafana/tempo-operator OPERATOR_VERSION=old_xyz OPERATOR_NAMESPACE=tempo-operator-system make olm-deploy +IMG_PREFIX=ghcr.io/grafana/tempo-operator OPERATOR_VERSION=old_xyz make olm-deploy ``` Build and push operator and bundle image to a container registry: @@ -92,7 +92,7 @@ IMG_PREFIX=docker.io/your_username OPERATOR_VERSION=x.y.z BUNDLE_VARIANT=openshi Upgrade to new version: ``` -IMG_PREFIX=docker.io/your_username OPERATOR_VERSION=x.y.z OPERATOR_NAMESPACE=tempo-operator-system make olm-upgrade +IMG_PREFIX=docker.io/your_username OPERATOR_VERSION=x.y.z make olm-upgrade ``` ### Using Manifests diff --git a/RELEASE.md b/RELEASE.md index abd989f63..33a48b369 100644 --- a/RELEASE.md +++ b/RELEASE.md @@ -16,7 +16,7 @@ Note: The e2e tests require [opentelemetry-operator](https://github.com/open-tel ``` kubectl create namespace tempo-operator-system -IMG_PREFIX=docker.io/your_username OPERATOR_VERSION=x.y.z BUNDLE_VARIANT=openshift OPERATOR_NAMESPACE=tempo-operator-system make bundle docker-build docker-push bundle-build bundle-push olm-deploy +IMG_PREFIX=docker.io/your_username OPERATOR_VERSION=x.y.z BUNDLE_VARIANT=openshift make bundle docker-build docker-push bundle-build bundle-push olm-deploy make e2e e2e-openshift ```