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

Commit b9604c8

Browse files
committed
Prepare release v0.9.1
1 parent 23b7af1 commit b9604c8

9 files changed

Lines changed: 17 additions & 13 deletions

File tree

CHANGELOG.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,15 @@ NOTE: As semantic versioning states all 0.y.z releases can contain breaking chan
1212

1313
### Fixed
1414

15+
### Changed
16+
17+
## [v0.9.1](https://github.com/kobsio/kobs/releases/tag/v0.9.1) (2022-07-08)
18+
19+
### Fixed
20+
1521
- [#382](https://github.com/kobsio/kobs/pull/#382): [app] Remove ServiceWorker.
1622
- [#383](https://github.com/kobsio/kobs/pull/#383): [app] Fix tooltip in charts.
1723

18-
### Changed
19-
2024
## [v0.9.0](https://github.com/kobsio/kobs/releases/tag/v0.9.0) (2022-07-05)
2125

2226
### Added

deploy/helm/hub/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@ description: Kubernetes Observability Platform
44
type: application
55
home: https://kobs.io
66
icon: https://kobs.io/assets/images/logo.svg
7-
version: 0.16.0
8-
appVersion: v0.9.0
7+
version: 0.16.1
8+
appVersion: v0.9.1

deploy/helm/hub/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ imagePullSecrets: []
2121
##
2222
image:
2323
repository: kobsio/kobs
24-
tag: v0.9.0
24+
tag: v0.9.1
2525
pullPolicy: IfNotPresent
2626

2727
## Specify security settings for the created Pods. To set the security settings for the kobs or envoy Container use the

deploy/helm/satellite/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@ description: Kubernetes Observability Platform
44
type: application
55
home: https://kobs.io
66
icon: https://kobs.io/assets/images/logo.svg
7-
version: 0.16.0
8-
appVersion: v0.9.0
7+
version: 0.16.1
8+
appVersion: v0.9.1

deploy/helm/satellite/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ imagePullSecrets: []
2121
##
2222
image:
2323
repository: kobsio/kobs
24-
tag: v0.9.0
24+
tag: v0.9.1
2525
pullPolicy: IfNotPresent
2626

2727
## Specify security settings for the created Pods. To set the security settings for the kobs or envoy Container use the

deploy/kustomize/hub/deployment.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ spec:
2121
spec:
2222
containers:
2323
- name: hub
24-
image: "kobsio/kobs:v0.9.0"
24+
image: "kobsio/kobs:v0.9.1"
2525
imagePullPolicy: IfNotPresent
2626
args:
2727
- hub

deploy/kustomize/satellite/deployment.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ spec:
2222
serviceAccountName: satellite
2323
containers:
2424
- name: satellite
25-
image: "kobsio/kobs:v0.9.0"
25+
image: "kobsio/kobs:v0.9.1"
2626
imagePullPolicy: IfNotPresent
2727
args:
2828
- satellite

docs/contributing/use-custom-plugins.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ When you have adjusted the `main.go` file run `go mod tidy` to add it to your `g
7878
The `Dockerfile` is used to build your own version of kobs and to copy the frontend files for your plugin. We are using again the `helloworld` plugin from the [kobsio/plugin-template](https://github.com/kobsio/plugin-template) in the following example:
7979

8080
```diff
81-
FROM kobsio/kobs:v0.9.0 as app
81+
FROM kobsio/kobs:v0.9.1 as app
8282
+FROM kobsio/plugin:main as plugin-helloworld
8383

8484
FROM golang:1.18.3 as api

docs/getting-started/installation/helm.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ helm upgrade --install satellite kobs/satellite
4343
| `replicas` | Number of replicas for the kobs Deployment. | `1` |
4444
| `imagePullSecrets` | Specify a list of image pull secrets, to avoid the DockerHub rate limit or to pull the kobs/enovy image from a private registry. | `[]` |
4545
| `image.repository` | The repository for the Docker image. | `kobsio/kobs` |
46-
| `image.tag` | The tag of the Docker image which should be used. | `v0.9.0` |
46+
| `image.tag` | The tag of the Docker image which should be used. | `v0.9.1` |
4747
| `image.pullPolicy` | The image pull policy for the Docker image. | `IfNotPresent` |
4848
| `podSecurityContext` | Specify security settings for the created Pods. To set the security settings for the kobs or envoy Container use the corresponding `securityContext` field. | `{}` |
4949
| `securityContext` | Specify security settings for the kobs Container. They override settings made at the Pod level via the `podSecurityContext` when there is overlap. | `{}` |
@@ -105,7 +105,7 @@ helm upgrade --install satellite kobs/satellite
105105
| `replicas` | Number of replicas for the kobs Deployment. | `1` |
106106
| `imagePullSecrets` | Specify a list of image pull secrets, to avoid the DockerHub rate limit or to pull the kobs/enovy image from a private registry. | `[]` |
107107
| `image.repository` | The repository for the Docker image. | `kobsio/kobs` |
108-
| `image.tag` | The tag of the Docker image which should be used. | `v0.9.0` |
108+
| `image.tag` | The tag of the Docker image which should be used. | `v0.9.1` |
109109
| `image.pullPolicy` | The image pull policy for the Docker image. | `IfNotPresent` |
110110
| `podSecurityContext` | Specify security settings for the created Pods. To set the security settings for the kobs or envoy Container use the corresponding `securityContext` field. | `{}` |
111111
| `securityContext` | Specify security settings for the kobs Container. They override settings made at the Pod level via the `podSecurityContext` when there is overlap. | `{}` |

0 commit comments

Comments
 (0)