Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updating kubewatch repo #75

Merged
merged 2 commits into from
Jun 11, 2024
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
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
# Latest image

```
us-central1-docker.pkg.dev/genuine-flight-317411/devel/kubewatch:v2.5
robustadev/kubewatch:v2.6
```

# Usage
Expand Down Expand Up @@ -210,13 +210,13 @@ INFO[0000] Kubewatch controller synced and ready pkg=kubewatch-pod
To Run Kubewatch Container interactively, place the config file in `$HOME/.kubewatch.yaml` location and use the following command.

```
docker run --rm -it --network host -v $HOME/.kubewatch.yaml:/root/.kubewatch.yaml -v $HOME/.kube/config:/opt/bitnami/kubewatch/.kube/config --name <container-name> us-central1-docker.pkg.dev/genuine-flight-317411/devel/kubewatch
docker run --rm -it --network host -v $HOME/.kubewatch.yaml:/root/.kubewatch.yaml -v $HOME/.kube/config:/opt/bitnami/kubewatch/.kube/config --name <container-name> robustadev/kubewatch
```

Example:

```
$ docker run --rm -it --network host -v $HOME/.kubewatch.yaml:/root/.kubewatch.yaml -v $HOME/.kube/config:/opt/bitnami/kubewatch/.kube/config --name kubewatch-app us-central1-docker.pkg.dev/genuine-flight-317411/devel/kubewatch
$ docker run --rm -it --network host -v $HOME/.kubewatch.yaml:/root/.kubewatch.yaml -v $HOME/.kube/config:/opt/bitnami/kubewatch/.kube/config --name kubewatch-app robustadev/kubewatch

==> Writing config file...
INFO[0000] Starting kubewatch controller pkg=kubewatch-service
Expand All @@ -233,7 +233,7 @@ INFO[0000] Processing add to namespace: default pkg=kubewatch-namespace
To Demonise Kubewatch container use

```
$ docker run --rm -d --network host -v $HOME/.kubewatch.yaml:/root/.kubewatch.yaml -v $HOME/.kube/config:/opt/bitnami/kubewatch/.kube/config --name kubewatch-app us-central1-docker.pkg.dev/genuine-flight-317411/devel/kubewatch
$ docker run --rm -d --network host -v $HOME/.kubewatch.yaml:/root/.kubewatch.yaml -v $HOME/.kube/config:/opt/bitnami/kubewatch/.kube/config --name kubewatch-app robustadev/kubewatch
```

# Configure
Expand Down
7 changes: 7 additions & 0 deletions build_release.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
docker buildx build \
--build-arg BUILDKIT_INLINE_CACHE=1 \
--platform linux/arm64,linux/amd64 \
--tag robustadev/kubewatch:${TAG} \
--tag us-central1-docker.pkg.dev/genuine-flight-317411/devel/kubewatch:${TAG} \
--push \
.
12 changes: 6 additions & 6 deletions helm/kubewatch/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -51,18 +51,18 @@ extraDeploy: []

## @section Kubewatch parameters

## Bitnami Kubewatch image version
## ref: https://hub.docker.com/r/bitnami/kubewatch/tags/
## @param image.registry Kubewatch image registry
## Robusta Kubewatch image versions
## ref: https://hub.docker.com/r/robustadev/kubewatch/tags
## Bitnami Kubewatch image versions (depricated)
## ref: https://hub.docker.com/r/bitnami/kubewatch-archived/tags
## @param image.repository Kubewatch image repository
## @param image.tag Kubewatch image tag (immutable tags are recommended)
## @param image.pullPolicy Kubewatch image pull policy
## @param image.pullSecrets Specify docker-registry secret names as an array
##
image:
registry: us-central1-docker.pkg.dev
repository: genuine-flight-317411/devel/kubewatch
tag: v2.4
repository: robustadev/kubewatch
tag: v2.6
## Specify a imagePullPolicy
## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent'
## ref: https://kubernetes.io/docs/user-guide/images/#pre-pulling-images
Expand Down