Skip to content

Commit 10dbda1

Browse files
committed
Releasing jfrog registry operator v2.1.5
Signed-off-by: oumk <oumk@jfrog.com>
1 parent e67c1ee commit 10dbda1

File tree

9 files changed

+14
-8
lines changed

9 files changed

+14
-8
lines changed

.github/workflows/bump-up-pr.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,11 @@ jobs:
2020
- name: Get latest Go version
2121
id: go-version
2222
run: |
23+
# Fetch the latest stable Go version, e.g. "1.25.4"
2324
LATEST=$(curl -s https://go.dev/VERSION?m=text | head -n1 | sed 's/go//')
24-
echo "version=$LATEST" >> $GITHUB_OUTPUT
25+
# Trim it down to major.minor (e.g. "1.25")
26+
MAJMIN=$(echo "$LATEST" | cut -d. -f1,2)
27+
echo "version=$MAJMIN" >> $GITHUB_OUTPUT
2528
2629
- name: Show detected Go version
2730
run: echo "Latest Go version is ${{ steps.go-version.outputs.version }}"

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ BUNDLE_METADATA_OPTS ?= $(BUNDLE_CHANNELS) $(BUNDLE_DEFAULT_CHANNEL)
3131
#
3232
# For example, running 'make bundle-build bundle-push catalog-build catalog-push' will build and push both
3333
# jfrog.com/operator-bundle:$VERSION and jfrog.com/operator-catalog:$VERSION.
34-
IMAGE_TAG_BASE ?= docker.jfrog.io/jfrog/jfrog-registry-operator:2.1.1
34+
IMAGE_TAG_BASE ?= docker.jfrog.io/jfrog/jfrog-registry-operator:2.1.5
3535

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

charts/jfrog-registry-operator/CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
# JFrog Secret Rotator Operator Chart Changelog
22
All changes to this chart will be documented in this file.
33

4+
## [2.1.5] - Nov 10, 2025
5+
* Bumping Golang and dependency versions
6+
47
## [2.1.1] - June 11, 2025
58
* Added subdomain support in registry operator `spec.artifactorySubdomains` [GH-34](https://github.com/jfrog/jfrog-registry-operator/pull/34)
69

charts/jfrog-registry-operator/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ kubeVersion: ">= 1.19.0-0"
33
type: application
44
name: jfrog-registry-operator
55
home: https://jfrog.com/platform/
6-
version: 2.1.1
6+
version: 2.1.5
77
appVersion: 2.x-SNAPSHOT
88
dependencies:
99
- name: jfrog-common

charts/jfrog-registry-operator/full-values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ global:
88
image:
99
registry: releases-docker.jfrog.io
1010
repository: jfrog/jfrog-registry-operator
11-
tag: 2.1.1
11+
tag: 2.1.5
1212

1313
pullPolicy: IfNotPresent
1414
# pullSecrets:

charts/jfrog-registry-operator/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ global:
88
image:
99
registry: releases-docker.jfrog.io
1010
repository: jfrog/jfrog-registry-operator
11-
tag: 2.1.1
11+
tag: 2.1.5
1212

1313
pullPolicy: IfNotPresent
1414
# pullSecrets:

config/deploy/operator.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ spec:
6767
- ./operator
6868
args:
6969
- --leader-elect
70-
image: releases-docker.jfrog.io/jfrog/jfrog-registry-operator:2.1.1
70+
image: releases-docker.jfrog.io/jfrog/jfrog-registry-operator:2.1.5
7171
name: manager
7272
ports:
7373
- containerPort: 8080

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module artifactory-secrets-rotator
22

3-
go 1.25.3
3+
go 1.25
44

55
require (
66
github.com/aws/aws-sdk-go-v2 v1.39.5

tests/e2e/install/customvalues.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ global:
88
image:
99
registry: releases-docker.jfrog.io
1010
repository: jfrog/jfrog-registry-operator
11-
tag: 2.1.1
11+
tag: 2.1.5
1212

1313
pullPolicy: IfNotPresent
1414
# pullSecrets:

0 commit comments

Comments
 (0)