Back to Charts

kubewatch

stable/kubewatch/README.md

latest12.7 KB
Original Source

kubewatch

kubewatch is a Kubernetes watcher that currently publishes notification to Slack. Run it in your k8s cluster, and you will get event notifications in a slack channel.

This Helm chart is deprecated

Given the stable deprecation timeline, the Bitnami maintained Kubewatch Helm chart is now located at bitnami/charts.

The Bitnami repository is already included in the Hubs and we will continue providing the same cadence of updates, support, etc that we've been keeping here these years. Installation instructions are very similar, just adding the bitnami repo and using it during the installation (bitnami/<chart> instead of stable/<chart>)

bash
$ helm repo add bitnami https://charts.bitnami.com/bitnami
$ helm install my-release bitnami/<chart>           # Helm 3
$ helm install --name my-release bitnami/<chart>    # Helm 2

To update an exisiting stable deployment with a chart hosted in the bitnami repository you can execute

bash
$ helm repo add bitnami https://charts.bitnami.com/bitnami
$ helm upgrade my-release bitnami/<chart>

Issues and PRs related to the chart itself will be redirected to bitnami/charts GitHub repository. In the same way, we'll be happy to answer questions related to this migration process in this issue created as a common place for discussion.

TL;DR;

console
$ helm install my-release stable/kubewatch

Introduction

This chart bootstraps a kubewatch deployment on a Kubernetes cluster using the Helm package manager.

Prerequisites

  • Kubernetes 1.12+
  • Helm 2.11+ or Helm 3.0-beta3+

Installing the Chart

To install the chart with the release name my-release:

console
$ helm install my-release stable/kubewatch

The command deploys kubewatch on the Kubernetes cluster in the default configuration. The Parameters section lists the parameters that can be configured during installation.

Uninstalling the Chart

To uninstall/delete the my-release deployment:

console
$ helm delete my-release

The command removes all the Kubernetes components associated with the chart and deletes the release.

Parameters

The following table lists the configurable parameters of the kubewatch chart and their default values.

ParameterDescriptionDefault
global.imageRegistryGlobal Docker image registrynil
global.imagePullSecretsGlobal Docker registry secret names as an array[] (does not add image pull secrets to deployed pods)
affinitynode/pod affinitiesNone
image.registryImage registrydocker.io
image.repositoryImage repositorybitnami/kubewatch
image.tagImage tag{VERSION}
image.pullPolicyImage pull policyAlways
nameOverrideString to partially override kubewatch.fullname template with a string (will prepend the release name)nil
fullnameOverrideString to fully override kubewatch.fullname template with a stringnil
nodeSelectornode labels for pod assignment{}
podAnnotationsannotations to add to each pod{}
podLabelsadditional labesl to add to each pod{}
replicaCountdesired number of pods1
rbac.createIf true, create & use RBAC resourcestrue
serviceAccount.createIf true, create a serviceAccounttrue
serviceAccount.nameexisting ServiceAccount to use (ignored if rbac.create=true)``
resourcespod resource requests & limits{}
slack.enabledEnable Slack notificationstrue
slack.channelSlack channel to notify""
slack.tokenSlack API token""
hipchat.enabledEnable HipChat notificationsfalse
hipchat.urlHipChat URL""
hipchat.roomHipChat room to notify""
hipchat.tokenHipChat token""
mattermost.enabledEnable Mattermost notificationsfalse
mattermost.channelMattermost channel to notify""
mattermost.usernameMattermost user to notify""
mattermost.urlMattermost URL""
flock.enabledEnable Flock notificationsfalse
flock.urlFlock URL""
webhook.enabledEnable Webhook notificationsfalse
webhook.urlWebhook URL""
tolerationsList of node taints to tolerate (requires Kubernetes >= 1.6)[]
namespaceToWatchnamespace to watch, leave it empty for watching all""
resourcesToWatchlist of resources which kubewatch should watch and notify slack{pod: true, deployment: true}
resourcesToWatch.podwatch changes to Podstrue
resourcesToWatch.deploymentwatch changes to Deploymentstrue
resourcesToWatch.replicationcontrollerwatch changes to ReplicationControllersfalse
resourcesToWatch.replicasetwatch changes to ReplicaSetsfalse
resourcesToWatch.daemonsetwatch changes to DaemonSetsfalse
resourcesToWatch.serviceswatch changes to Servicesfalse
resourcesToWatch.jobwatch changes to Jobsfalse
resourcesToWatch.persistentvolumewatch changes to PersistentVolumesfalse

Specify each parameter using the --set key=value[,key=value] argument to helm install. For example,

console
$ helm install my-release stable/kubewatch \
  --set=slack.channel="#bots",slack.token="XXXX-XXXX-XXXX"

Alternatively, a YAML file that specifies the values for the above parameters can be provided while installing the chart. For example,

console
$ helm install my-release -f values.yaml stable/kubewatch

Tip: You can use the default values.yaml

Configuration and installation details

Rolling VS Immutable tags

It is strongly recommended to use immutable tags in a production environment. This ensures your deployment does not change automatically if the same tag is updated with a different image.

Bitnami will release a new chart updating its containers if a new version of the main container, significant changes, or critical vulnerabilities exist.

Create a Slack bot

Open https://my.slack.com/services/new/bot to create a new Slack bot. The API token can be found on the edit page (it starts with xoxb-).

Invite the Bot to your channel by typing /join @name_of_your_bot in the Slack message area.

Upgrading

To 1.0.0

Helm performs a lookup for the object based on its group (apps), version (v1), and kind (Deployment). Also known as its GroupVersionKind, or GVK. Changing the GVK is considered a compatibility breaker from Kubernetes' point of view, so you cannot "upgrade" those objects to the new GVK in-place. Earlier versions of Helm 3 did not perform the lookup correctly which has since been fixed to match the spec.

In https://github.com/helm/charts/pull/17285 the apiVersion of the deployment resources was updated to apps/v1 in tune with the api's deprecated, resulting in compatibility breakage.

This major version signifies this change.