Skip to content

Commit 5cf30b9

Browse files
committed
chore: initialise 1.5.0 release
Signed-off-by: Tomas Turek <tturek@redhat.com>
1 parent 99f1251 commit 5cf30b9

10 files changed

Lines changed: 15 additions & 15 deletions

.github/workflows/main.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ env:
1313
IMG: ghcr.io/securesign/secure-sign-operator:dev-${{ github.sha }}
1414
BUNDLE_IMG: ghcr.io/securesign/secure-sign-operator-bundle:dev-${{ github.sha }}
1515
CATALOG_IMG: ghcr.io/securesign/secure-sign-operator-fbc:dev-${{ github.sha }}
16-
NEW_OLM_CHANNEL: rhtas-operator.v1.4.0
16+
NEW_OLM_CHANNEL: rhtas-operator.v1.5.0
1717
OCP_VERSION: ${{ vars.OLM_INDEX_VERSION }}
1818

1919
jobs:
@@ -133,7 +133,7 @@ jobs:
133133
BUNDLE_NAME: ${{ env.NEW_OLM_CHANNEL }}
134134
FBC_DIR: rhtas-operator
135135
GRAPH: ${{ env.OCP_VERSION }}/rhtas-operator/graph.yaml
136-
CHANNELS: "stable,stable-v1.4"
136+
CHANNELS: "stable,stable-v1.5"
137137
CATALOG_FILE: ${{ env.OCP_VERSION }}/rhtas-operator/catalog/rhtas-operator/catalog.json
138138
run: |
139139
cd fbc

.tekton/rhtas-operator-bundle-pull-request.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ metadata:
2424
spec:
2525
params:
2626
- name: release-version
27-
value: "1.4.0"
27+
value: "1.5.0"
2828
- name: git-url
2929
value: '{{source_url}}'
3030
- name: revision

.tekton/rhtas-operator-bundle-push.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ metadata:
2323
spec:
2424
params:
2525
- name: release-version
26-
value: "1.4.0"
26+
value: "1.5.0"
2727
- name: git-url
2828
value: '{{source_url}}'
2929
- name: revision

.tekton/rhtas-operator-pull-request.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ metadata:
2424
spec:
2525
params:
2626
- name: release-version
27-
value: "1.4.0"
27+
value: "1.5.0"
2828
- name: git-url
2929
value: '{{source_url}}'
3030
- name: revision

.tekton/rhtas-operator-push.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ metadata:
2323
spec:
2424
params:
2525
- name: release-version
26-
value: "1.4.0"
26+
value: "1.5.0"
2727
- name: git-url
2828
value: '{{source_url}}'
2929
- name: revision

Dockerfile.rhtas-operator.rh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
ARG VERSION="1.4.0"
1+
ARG VERSION="1.5.0"
22

33
# Build the manager binary
44
FROM registry.redhat.io/ubi9/go-toolset:9.7-1774618347@sha256:0f4f6f7868962aa75dddfe4230b664bdf77071e92c43c70c824c58450e37693f AS builder

Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,15 @@
33
# To re-generate a bundle for another specific version without changing the standard setup, you can:
44
# - use the VERSION as arg of the bundle target (e.g make bundle VERSION=0.0.2)
55
# - use environment variables to overwrite this value (e.g export VERSION=0.0.2)
6-
VERSION ?= 1.4.0
6+
VERSION ?= 1.5.0
77

88
# CHANNELS define the bundle channels used in the bundle.
99
# Add a new line here if you would like to change its default config. (E.g CHANNELS = "candidate,fast,stable")
1010
# To re-generate a bundle for other specific channels without changing the standard setup, you can:
1111
# - use the CHANNELS as arg of the bundle target (e.g make bundle CHANNELS=candidate,fast,stable)
1212
# - use environment variables to overwrite this value (e.g export CHANNELS="candidate,fast,stable")
1313

14-
CHANNELS="stable,stable-v1.4"
14+
CHANNELS="stable,stable-v1.5"
1515
# ifneq ($(origin CHANNELS), undefined)
1616
BUNDLE_CHANNELS := --channels=$(CHANNELS)
1717
# endif
@@ -34,7 +34,7 @@ BUNDLE_METADATA_OPTS ?= $(BUNDLE_CHANNELS) $(BUNDLE_DEFAULT_CHANNEL)
3434
# For example, running 'make bundle-build bundle-push catalog-build catalog-push' will build and push both
3535
# redhat.com/operator-bundle:$VERSION and redhat.com/operator-catalog:$VERSION.
3636
IMAGE_TAG_BASE ?= registry.redhat.io/rhtas/rhtas-rhel9-operator
37-
IMAGE_DIGEST ?= sha256:0332d8e99dca5eb443a0de6800817d286057498374faa7a9d59b592efb453a3a
37+
IMAGE_TAG ?= $(VERSION)
3838

3939
# BUNDLE_IMG defines the image:tag used for the bundle.
4040
# You can use it as an arg. (E.g make bundle-build BUNDLE_IMG=<some-registry>/<project-name-bundle>:<tag>)

bundle.Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
ARG VERSION="1.4.0"
2-
ARG CHANNELS="stable,stable-v1.4"
1+
ARG VERSION="1.5.0"
2+
ARG CHANNELS="stable,stable-v1.5"
33
ARG DEFAULT_CHANNEL="stable"
44
ARG BUNDLE_GEN_FLAGS="-q --overwrite=false --version $VERSION --channels=$CHANNELS --default-channel=$DEFAULT_CHANNEL"
55
ARG IMG

config/manager/kustomization.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@ resources:
44
apiVersion: kustomize.config.k8s.io/v1beta1
55
kind: Kustomization
66
images:
7-
- digest: sha256:0332d8e99dca5eb443a0de6800817d286057498374faa7a9d59b592efb453a3a
7+
- newTag: 1.5.0
88
name: controller
99
newName: registry.redhat.io/rhtas/rhtas-rhel9-operator

config/manifests/bases/rhtas-operator.clusterserviceversion.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ metadata:
1818
operators.openshift.io/valid-subscription: '["Red Hat Trusted Artifact Signer"]'
1919
repository: https://github.com/securesign/secure-sign-operator
2020
support: Red Hat
21-
name: rhtas-operator.v1.4.0
21+
name: rhtas-operator.v1.5.0
2222
namespace: placeholder
2323
spec:
2424
apiservicedefinitions: {}
@@ -112,4 +112,4 @@ spec:
112112
provider:
113113
name: Red Hat
114114
url: https://github.com/securesign/secure-sign-operator
115-
version: 1.4.0
115+
version: 1.5.0

0 commit comments

Comments
 (0)