charts/charts/modem-stats
Jeff Billimek bed22d6551
mass-rename of chart repo (#3)
* mass-rename of chart repo

* update all Chart.yaml files to replace references from old repo to new
repo
* update all Chart.yaml files to set apiVersion to v2 where necessary
* update all README.md files to replace references from old repo to new
repo

* fix teslamate dependencies for v2

Signed-off-by: Jeff Billimek <jeff@billimek.com>
2020-08-29 11:22:37 -04:00
..
templates implement revisionHistoryLimit: 3 (#152) 2020-02-23 06:32:29 -07:00
.helmignore moving all charts under charts/ dir (#112) 2020-01-10 14:58:11 -05:00
Chart.yaml mass-rename of chart repo (#3) 2020-08-29 11:22:37 -04:00
OWNERS moving all charts under charts/ dir (#112) 2020-01-10 14:58:11 -05:00
README.md mass-rename of chart repo (#3) 2020-08-29 11:22:37 -04:00
values.yaml moving all charts under charts/ dir (#112) 2020-01-10 14:58:11 -05:00

cable modem (sb6183) signal and stats collection agent for influxdb

Screenshot

This tool allows you to run periodic scanning of the sb6183 cable modem and save the results to Influxdb

TL;DR;

$ helm repo add k8s-at-home https://k8s-at-home.com/charts/
$ helm install k8s-at-home/modem-stats

Installing the Chart

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

$ helm install --name my-release k8s-at-home/modem-stats

Uninstalling the Chart

To uninstall/delete the my-release deployment:

$ helm delete my-release --purge

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

Configuration

The configuration is set as a block of text through a configmap and mouted as a file in /src/config.ini Any value in this text block should match the defined sb6183 configuration. There are several values here that will have to match our kubernetes configuration.

Configuration

The following tables lists the configurable parameters of the Sentry chart and their default values.

Parameter Description Default
image.repository modem-stats image billimek/sb6183-for-influxdb
image.tag modem-stats image tag latest
image.pullPolicy modem-stats image pull policy IfNotPresent
debug Display debugging output false
config.delay how many seconds to wait between checks 3600
config.influxdb.host InfluxDB hostname influxdb-influxdb
config.influxdb.port InfluxDB port 8086
config.influxdb.database InfluxDB database sb6183
config.influxdb.username InfluxDB username ``
config.influxdb.password InfluxDB password ``
config.influxdb.ssl InfluxDB connection using SSL false
config.modem.url sb6183 stats URL page http://192.168.100.1/RgConnect.asp
podAnnotations Key-value pairs to add as pod annotations {}

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

$ helm install --name my-release \
  --set onfig.influxdb.host=some-influx-host \
    k8s-at-home/modem-stats

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

$ helm install --name my-release -f values.yaml k8s-at-home/modem-stats

Read through the values.yaml file. It has several commented out suggested values.