Skip to content

Commit 94a9516

Browse files
authored
chore: update version to 0.22.1 (#1541)
* chore: update version to 0.22.1 Co-authored-by: yangw <[email protected]> * increase timeout Signed-off-by: yangw <[email protected]> --------- Signed-off-by: yangw <[email protected]>
1 parent 2e16943 commit 94a9516

File tree

10 files changed

+17
-17
lines changed

10 files changed

+17
-17
lines changed

.github/workflows/ci.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ on:
33
pull_request:
44
branches:
55
- main
6-
push:
7-
branches:
8-
- main
6+
# push:
7+
# branches:
8+
# - main
99

1010
permissions:
1111
contents: read

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# ===========================
44

55
# Current Operator version
6-
VERSION ?= 0.22.0
6+
VERSION ?= 0.22.1
77

88
# Default bundle image tag
99
BUNDLE_IMG ?= controller-bundle:$(VERSION)

charts/redis-cluster/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
apiVersion: v2
22
name: redis-cluster
33
description: Provides easy redis setup definitions for Kubernetes services, and deployment.
4-
version: 0.17.0
5-
appVersion: "0.17.0"
4+
version: 0.17.1
5+
appVersion: "0.17.1"
66
home: https://github.com/ot-container-kit/redis-operator
77
sources:
88
- https://github.com/ot-container-kit/redis-operator

charts/redis-operator/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
apiVersion: v2
3-
version: 0.22.0
4-
appVersion: "0.22.0"
3+
version: 0.22.1
4+
appVersion: "0.22.1"
55
description: Provides easy redis setup definitions for Kubernetes services, and deployment.
66
engine: gotpl
77
maintainers:

charts/redis-replication/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
apiVersion: v2
22
name: redis-replication
33
description: Provides easy redis setup definitions for Kubernetes services, and deployment.
4-
version: 0.16.8
5-
appVersion: "0.16.8"
4+
version: 0.16.9
5+
appVersion: "0.16.9"
66
type: application
77
engine: gotpl
88
maintainers:

charts/redis-sentinel/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
apiVersion: v2
22
name: redis-sentinel
33
description: Provides easy redis setup definitions for Kubernetes services, and deployment.
4-
version: 0.16.9
5-
appVersion: "0.16.9"
4+
version: 0.16.10
5+
appVersion: "0.16.10"
66
home: https://github.com/ot-container-kit/redis-operator
77
sources:
88
- https://github.com/ot-container-kit/redis-operator

charts/redis/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
apiVersion: v2
33
name: redis
44
description: Provides easy redis setup definitions for Kubernetes services, and deployment.
5-
version: 0.16.5
6-
appVersion: "0.16.5"
5+
version: 0.16.6
6+
appVersion: "0.16.6"
77
home: https://github.com/ot-container-kit/redis-operator
88
sources:
99
- https://github.com/ot-container-kit/redis-operator

config/manager/kustomization.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@ kind: Kustomization
1313
images:
1414
- name: controller
1515
newName: quay.io/opstree/redis-operator
16-
newTag: v0.22.0
16+
newTag: v0.22.1

docs/config.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ gcs_engine_id = "016691298986124624340:x7qv2dywdao"
8383
# current release branch. Never is rc.
8484
release_branch = "release-1.27.0"
8585
# the main version. Never is rc.
86-
release_version = "0.22.0"
86+
release_version = "0.22.1"
8787

8888
# shown for production
8989
supported_k8s = "1.23"

internal/util/net.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import (
88

99
func GetLocalIP() (string, error) {
1010
dialer := net.Dialer{}
11-
ctx, cancel := context.WithTimeout(context.Background(), 2*time.Second)
11+
ctx, cancel := context.WithTimeout(context.Background(), 10*time.Second)
1212
defer cancel()
1313

1414
conn, err := dialer.DialContext(ctx, "udp", "8.8.8.8:80")

0 commit comments

Comments
 (0)