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

Commit 90bdbcb

Browse files
committed
Prepare release v0.10.0
1 parent 9efb793 commit 90bdbcb

9 files changed

Lines changed: 15 additions & 23 deletions

File tree

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.18.0
8-
appVersion: v0.9.1
7+
version: 0.19.0
8+
appVersion: v0.10.0

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.1
24+
tag: v0.10.0
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.18.0
8-
appVersion: v0.9.1
7+
version: 0.19.0
8+
appVersion: v0.10.0

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.1
24+
tag: v0.10.0
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.1"
24+
image: "kobsio/kobs:v0.10.0"
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.1"
25+
image: "kobsio/kobs:v0.10.0"
2626
imagePullPolicy: IfNotPresent
2727
args:
2828
- satellite

docs/contributing/release.md

Lines changed: 4 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -4,20 +4,12 @@ Before we can create a new tag we have to update the following files, so that th
44

55
- [hub Chart.yaml](https://github.com/kobsio/kobs/blob/main/deploy/helm/hub/Chart.yaml): Update the `appVersion` field and bump the `version` field in the Helm chart for the hub.
66
- [hub values.yaml](https://github.com/kobsio/kobs/blob/main/deploy/helm/hub/values.yaml): Set the new tag in the `kobs.image.tag` value in the Helm chart for the hub.
7-
- [satellite deployment.yaml](https://github.com/kobsio/kobs/blob/main/deploy/kustomize/hub/deployment.yaml): Update the Docker image in the Kustomize deployment file for the hub.
8-
- [satellite Chart.yaml](https://github.com/kobsio/kobs/blob/main/deploy/helm/hub/Chart.yaml): Update the `appVersion` field and bump the `version` field in the Helm chart for the hub.
9-
- [satellite values.yaml](https://github.com/kobsio/kobs/blob/main/deploy/helm/hub/values.yaml): Set the new tag in the `kobs.image.tag` value in the Helm chart for the hub.
10-
- [satellite deployment.yaml](https://github.com/kobsio/kobs/blob/main/deploy/kustomize/satellite/deployment.yaml): Update the Docker image in the Kustomize deployment file for the hub.
7+
- [hub deployment.yaml](https://github.com/kobsio/kobs/blob/main/deploy/kustomize/hub/deployment.yaml): Update the Docker image in the Kustomize deployment file for the hub.
8+
- [satellite Chart.yaml](https://github.com/kobsio/kobs/blob/main/deploy/helm/satellite/Chart.yaml): Update the `appVersion` field and bump the `version` field in the Helm chart for the satellite.
9+
- [satellite values.yaml](https://github.com/kobsio/kobs/blob/main/deploy/helm/satellite/values.yaml): Set the new tag in the `kobs.image.tag` value in the Helm chart for the satellite.
10+
- [satellite deployment.yaml](https://github.com/kobsio/kobs/blob/main/deploy/kustomize/satellite/deployment.yaml): Update the Docker image in the Kustomize deployment file for the satellite.
1111
- [helm.md](https://github.com/kobsio/kobs/blob/main/docs/getting-started/installation/helm.md): Update the table with the Helm values for the hub and satellite, so that it contains the new value for the `image.tag`.
1212

13-
Now we can use our [Makefile](https://github.com/kobsio/kobs/blob/main/Makefile) to create a new tag:
14-
15-
```sh
16-
make release-patch
17-
make release-minor
18-
make release-major
19-
```
20-
2113
Now we can publish the created draft release, which is automatically updated by the [Release GitHub Action](https://github.com/kobsio/kobs/blob/main/.github/workflows/release.yaml). When we create the GitHub release the **Create a discussion for this release** should be checked, and the discussion should be created in the **Announcements** category.
2214

2315
## Publish NPM Packages

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.1 as app
81+
FROM kobsio/kobs:v0.10.0 as app
8282
+FROM kobsio/plugin:main as plugin-helloworld
8383

8484
FROM golang:1.19.0 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.1` |
46+
| `image.tag` | The tag of the Docker image which should be used. | `v0.10.0` |
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. | `{}` |
@@ -114,7 +114,7 @@ helm upgrade --install satellite kobs/satellite
114114
| `replicas` | Number of replicas for the kobs Deployment. | `1` |
115115
| `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. | `[]` |
116116
| `image.repository` | The repository for the Docker image. | `kobsio/kobs` |
117-
| `image.tag` | The tag of the Docker image which should be used. | `v0.9.1` |
117+
| `image.tag` | The tag of the Docker image which should be used. | `v0.10.0` |
118118
| `image.pullPolicy` | The image pull policy for the Docker image. | `IfNotPresent` |
119119
| `podSecurityContext` | Specify security settings for the created Pods. To set the security settings for the kobs or envoy Container use the corresponding `securityContext` field. | `{}` |
120120
| `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)