Back to Charts

⚠️ Repo Archive Notice

stable/karma/README.md

latest6.1 KB
Original Source

⚠️ Repo Archive Notice

As of Nov 13, 2020, charts in this repo will no longer be updated. For more information, see the Helm Charts Deprecation and Archive Notice, and Update.

Karma

Karma is an ASL2 licensed alert dashboard for Prometheus Alertmanager.

DEPRECATION NOTICE

This chart is deprecated and no longer supported.

Introduction

This chart deploys karma to your cluster via a Deployment and Service. Optionally you can also enable ingress.

Prerequisites

  • Kubernetes 1.9+

Installing the Chart

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

bash
$ helm install --name my-release stable/karma

After a few seconds, you should see service statuses being written to the configured output.

Tip: List all releases using helm list

Uninstalling the Chart

To uninstall/delete the my-release deployment:

bash
$ helm delete my-release

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

Configuration

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

ParameterDescriptionDefault
replicaCountNumber of replicas1
image.repositoryThe image to runlmierzwa/karma
image.tagThe image tag to pullv0.72
image.pullPolicyImage pull policyIfNotPresent
nameOverrideOverride name of app``
fullnameOverrideOverride full name of app``
service.typeType of ServiceClusterIP
service.portPort for kubernetes service80
service.annotationsAnnotations to add to the service{}
deployment.annotationsAnnotations to add to the deployment{}
resources.requests.cpuCPU resource requests
resources.limits.cpuCPU resource limits
resources.requests.memoryMemory resource requests
resources.limits.memoryMemory resource limits
ingressSettings for ingress{}
nodeSelectorSettings for nodeselector{}
tolerationsSettings for toleration{}
affinitySettings for affinity{}
podLabelsLabels to be added to pod{}
podAnnotationsAnnotations to be added to pod{}
securityContextSettings for security context{}
serviceAccount.createCreate service-accounttrue
serviceAccount.nameOverride service-account name``
livenessProbe.delaySpecify delay in executing probe5
livenessProbe.periodSpeicy period of liveness probe5
livenessProbe.pathSpecify path liveness probe should hit/health
configMap.enabledProvide a custom karma configurationfalse
configMap.annotationsAnnotations to add to the config map{}
configMap.rawConfigA karma compatible YAML configuration``
certSecretNamesMount Alertmanager certificates to /etc/certs/<name>[]

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

bash
$ helm install --name my-release \
    stable/karma

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

bash
$ helm install --name my-release -f values.yaml stable/karma

Tip: You will have to define the URL to alertmanager in env-settings in values.yaml, under key ALERTMANAGER_URI .