From f73abbeb7af386a17828d1da4b88b43fc49b8ded Mon Sep 17 00:00:00 2001 From: Abdelrahman Ahmed <16365652+abahmed@users.noreply.github.com> Date: Thu, 1 Feb 2024 01:25:34 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=8E=89=20release=20v0.8.5=20(#271)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 10 +++++----- deploy/chart/Chart.yaml | 4 ++-- deploy/chart/README.md | 2 +- deploy/deploy.yaml | 2 +- go.mod | 7 ++----- 5 files changed, 11 insertions(+), 14 deletions(-) diff --git a/README.md b/README.md index 3f5e2cb1..4a3167dd 100644 --- a/README.md +++ b/README.md @@ -41,7 +41,7 @@ We're working on SAAS version of kwatch that provides User interface, optimized ```shell helm repo add kwatch https://kwatch.dev/charts -helm install [RELEASE_NAME] kwatch/kwatch --namespace kwatch --create-namespace --version 0.8.4 +helm install [RELEASE_NAME] kwatch/kwatch --namespace kwatch --create-namespace --version 0.8.5 ``` To get more details, please check [chart's configuration](https://github.com/abahmed/kwatch/blob/main/deploy/chart/README.md) @@ -51,7 +51,7 @@ To get more details, please check [chart's configuration](https://github.com/aba You need to get config template to add your configs ```shell -curl -L https://raw.githubusercontent.com/abahmed/kwatch/v0.8.4/deploy/config.yaml -o config.yaml +curl -L https://raw.githubusercontent.com/abahmed/kwatch/v0.8.5/deploy/config.yaml -o config.yaml ``` Then edit `config.yaml` file and apply your configuration @@ -63,7 +63,7 @@ kubectl apply -f config.yaml To deploy **kwatch**, execute following command: ```shell -kubectl apply -f https://raw.githubusercontent.com/abahmed/kwatch/v0.8.4/deploy/deploy.yaml +kubectl apply -f https://raw.githubusercontent.com/abahmed/kwatch/v0.8.5/deploy/deploy.yaml ``` ## High Level Architecture @@ -304,8 +304,8 @@ basic auth ### Cleanup ```shell -kubectl delete -f https://raw.githubusercontent.com/abahmed/kwatch/v0.8.4/deploy/config.yaml -kubectl delete -f https://raw.githubusercontent.com/abahmed/kwatch/v0.8.4/deploy/deploy.yaml +kubectl delete -f https://raw.githubusercontent.com/abahmed/kwatch/v0.8.5/deploy/config.yaml +kubectl delete -f https://raw.githubusercontent.com/abahmed/kwatch/v0.8.5/deploy/deploy.yaml ``` ## 👍 Contribute & Support diff --git a/deploy/chart/Chart.yaml b/deploy/chart/Chart.yaml index ac91cbd3..b4cc4cab 100644 --- a/deploy/chart/Chart.yaml +++ b/deploy/chart/Chart.yaml @@ -1,7 +1,7 @@ apiVersion: v2 name: kwatch -version: "0.8.4" -appVersion: "v0.8.4" +version: "0.8.5" +appVersion: "v0.8.5" description: monitor all changes in your Kubernetes(K8s) cluster, detects crashes in your running apps in realtime, and publishes notifications to your channels (Slack, Discord, etc.) instantly diff --git a/deploy/chart/README.md b/deploy/chart/README.md index 4d3b836a..93c1fdac 100644 --- a/deploy/chart/README.md +++ b/deploy/chart/README.md @@ -13,7 +13,7 @@ helm repo update ## Install Chart ```console -helm install [RELEASE_NAME] kwatch/kwatch --version 0.8.4 +helm install [RELEASE_NAME] kwatch/kwatch --version 0.8.5 ``` ## Uninstall Chart diff --git a/deploy/deploy.yaml b/deploy/deploy.yaml index 15a0d52b..beae252f 100644 --- a/deploy/deploy.yaml +++ b/deploy/deploy.yaml @@ -49,7 +49,7 @@ spec: serviceAccountName: kwatch containers: - name: kwatch - image: ghcr.io/abahmed/kwatch:v0.8.4 + image: ghcr.io/abahmed/kwatch:v0.8.5 imagePullPolicy: Always volumeMounts: - name: config-volume diff --git a/go.mod b/go.mod index 67754549..9babd4e6 100644 --- a/go.mod +++ b/go.mod @@ -15,11 +15,6 @@ require ( k8s.io/client-go v0.29.1 ) -require ( - github.com/google/gnostic-models v0.6.8 // indirect - github.com/google/uuid v1.3.0 // indirect -) - require ( github.com/davecgh/go-spew v1.1.1 // indirect github.com/emicklei/go-restful/v3 v3.11.0 // indirect @@ -30,9 +25,11 @@ require ( github.com/go-openapi/swag v0.22.3 // indirect github.com/gogo/protobuf v1.3.2 // indirect github.com/golang/protobuf v1.5.3 // indirect + github.com/google/gnostic-models v0.6.8 // indirect github.com/google/go-cmp v0.6.0 // indirect github.com/google/go-querystring v1.1.0 // indirect github.com/google/gofuzz v1.2.0 // indirect + github.com/google/uuid v1.3.0 // indirect github.com/gorilla/websocket v1.5.0 // indirect github.com/imdario/mergo v0.3.13 // indirect github.com/josharian/intern v1.0.0 // indirect