charts/charts/piaware
2020-08-31 16:42:20 -04:00
..
templates [piaware] add piaware chart (#273) 2020-07-08 19:41:56 -04:00
.helmignore [piaware] add piaware chart (#273) 2020-07-08 19:41:56 -04:00
Chart.yaml cleanup and bump appVersions (#22) 2020-08-31 16:42:20 -04:00
OWNERS [piaware] add piaware chart (#273) 2020-07-08 19:41:56 -04:00
README.md mass-rename of chart repo (#3) 2020-08-29 11:22:37 -04:00
values.yaml [piaware] add piaware chart (#273) 2020-07-08 19:41:56 -04:00

piaware: Program for forwarding ADS-B data to FlightAware

This is a helm chart for piaware

TL;DR;

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

Installing the Chart

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

helm install --name my-release k8s-at-home/piaware

IMPORTANT NOTE: a flight-aware USB device must be accessible on the node where this pod runs, in order for this chart to function properly.

A way to achieve this can be with nodeAffinity rules, for example:

affinity:
  nodeAffinity:
    requiredDuringSchedulingIgnoredDuringExecution:
      nodeSelectorTerms:
      - matchExpressions:
        - key: app
          operator: In
          values:
          - flight-aware

... where a node with an attached flight-aware USB device is labeled with app: flight-aware

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

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

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

helm install --name my-release \
  --set rtspPassword="nosecrets" \
    k8s-at-home/piaware

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 stable/piaware