Skip to content
This repository was archived by the owner on Mar 20, 2026. It is now read-only.

Commit 823c67c

Browse files
authored
Merge pull request #441 from paulfantom/remove-kube-version-constraint
Remove kube version constraint
2 parents 6df086f + 2d0639a commit 823c67c

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

chart/Chart.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@ description: A Helm chart for tobs, The Observability Stack for Kubernetes
44

55
type: application
66

7-
version: 0.11.1
8-
appVersion: 0.11.1
9-
kubeVersion: ">= 1.23.0"
10-
7+
version: 0.11.2
8+
appVersion: 0.11.2
9+
# TODO(paulfantom): Enable after kubernetes 1.22 reaches EOL (2022-10-28)
10+
# kubeVersion: ">= 1.23.0"
1111
dependencies:
1212
- name: timescaledb-single
1313
condition: timescaledb-single.enabled

cli/cmd/version/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import (
1010
)
1111

1212
// TODO(paulfantom): read this from VERSION file in the the repository TLD
13-
const tobsVersion = "0.11.1"
13+
const tobsVersion = "0.11.2"
1414

1515
// versionCmd represents the version command
1616
var versionCmd = &cobra.Command{

install-cli.sh

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

55
INSTALLROOT=${INSTALLROOT:-"${HOME}/.local/bin"}
6-
TOBS_VERSION=${TOBS_VERSION:-0.11.1}
6+
TOBS_VERSION=${TOBS_VERSION:-0.11.2}
77

88
happyexit() {
99
local symlink_msg=""

0 commit comments

Comments
 (0)