Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/helm.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ jobs:
- name: Update Helm Repository
if: ${{ github.ref == 'refs/heads/main' }}
run: |
mv kobs* ./helm-repository/ && helm repo index helm-repository/ --url https://kobsio.github.io/helm-repository/
mv kobs* ./helm-repository/ && helm repo index helm-repository/ --url https://helm.kobs.io/

- name: Commit Changes
if: ${{ github.ref == 'refs/heads/main' }}
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,3 +37,4 @@ NOTE: As semantic versioning states all 0.y.z releases can contain breaking chan
- [#11](https://github.com/kobsio/kobs/pull/11): :warning: *Breaking change:* :warning: Refactor cluster and application handling.
- [#17](https://github.com/kobsio/kobs/pull/17): Use location to load applications, which allows user to share their applications view.
- [#20](https://github.com/kobsio/kobs/pull/20): Rework usage of icons, links handling and drawer layout.
- [#25](https://github.com/kobsio/kobs/pull/25): Change the URL for the Helm repository to [helm.kobs.io](https://helm.kobs.io).
4 changes: 2 additions & 2 deletions deploy/helm/kobs/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@ name: kobs
description: Kubernetes Observability Platform
type: application
home: https://kobs.io
icon: https://kobs.io/TODO.svg
version: 0.1.0
icon: https://kobs.io/assets/images/logo.svg
version: 0.1.1
appVersion: 0.0.1
10 changes: 5 additions & 5 deletions deploy/helm/kobs/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ kobs:
tag: main
pullPolicy: IfNotPresent

## Specify security settings for the kobs Container. They override settings made at the Pod level via the
## Specify security settings for the kobs Container. They override settings made at the Pod level via the
## "podSecurityContext" when there is overlap.
## See: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-container
##
Expand Down Expand Up @@ -99,7 +99,7 @@ envoy:
tag: v1.17.0
pullPolicy: IfNotPresent

## Specify security settings for the kobs Container. They override settings made at the Pod level via the
## Specify security settings for the wnvoy Container. They override settings made at the Pod level via the
## "podSecurityContext" when there is overlap.
## See: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-container
##
Expand Down Expand Up @@ -169,9 +169,9 @@ ingress:
annotations: {}
# kubernetes.io/ingress.class: nginx
# kubernetes.io/tls-acme: "true"
hosts:
- host: chart-example.local
paths: []
hosts: []
# - host: chart-example.local
# paths: []
tls: []
# - secretName: chart-example-tls
# hosts:
Expand Down
8 changes: 4 additions & 4 deletions docs/installation/helm.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,14 @@
To install kobs using Helm you have to add our Helm repository:

```sh
helm repo add kobsio https://kobsio.github.io/helm-repository
helm repo add kobs https://helm.kobs.io
helm repo list
```

When you have added the Helm repository, you can install kobs:

```sh
helm install kobs kobsio/kobs
helm install kobs kobs/kobs
```

When the installation was successful you shoud see a message like the following:
Expand All @@ -38,13 +38,13 @@ To update the Helm repository and to show all available versions of the Helm cha

```sh
helm repo update
helm search repo -l kobsio/
helm search repo -l kobs/
```

To update your deployed Helm chart run:

```sh
helm upgrade kobs kobsio/kobs
helm upgrade kobs kobs/kobs
```

## Values
Expand Down