mirror of
https://github.com/k8s-at-home/charts.git
synced 2025-01-27 10:09:04 +00:00
bed22d6551
* 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> |
||
---|---|---|
.. | ||
templates | ||
.helmignore | ||
Chart.yaml | ||
README.md | ||
values.yaml |
deCONZ helm chart
This is a helm chart for deCONZ based on the container image provided by marthoc.
TL;DR
helm repo add k8s-at-home https://k8s-at-home.com/charts/
helm install k8s-at-home/deconz
Installing the Chart
To install the chart with the release name my-release
:
helm install my-release k8s-at-home/deconz
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 following tables lists the configurable parameters of the Sentry chart and their default values. Read through the values.yaml file. It has several commented out suggested values.
Parameter | Description | Default |
---|---|---|
replicaCount |
Number of replicas to scale to | 1 |
autoscaling.enabled |
Enables Pod auto-scaling | false |
autoscaling.minReplicas |
Minimum number of replicas to auto-scale to | 1 |
autoscaling.maxReplicas |
Maximum number of replicas to auto-scale to | 1 |
image.repository |
Image repository | marthoc/deconz |
image.tag |
Image tag. Possible values listed here. | amd64-2.05.79 |
image.pullPolicy |
Image pull policy | IfNotPresent |
strategyType |
Specifies the strategy used to replace old Pods by new ones | Recreate |
timezone |
Timezone the instance should run as, e.g. 'America/New_York' | UTC |
zigbeeDevice.enabled |
Enables passing through a Zigbee device | false |
zigbeeDevice.hostPath |
HostPath of the Zigbee device that should be passed through | /dev/ttyUSB1 |
vnc.enabled |
Enabled the built-in VNC server to access the application | true |
vnc.password |
VNC server password | changeme |
vnc.existingSecret |
Existing Kubernetes secret containing the VNC password | nil |
probes.liveness.enabled |
Enables liveness probe for the Pod | true |
probes.liveness.failureThreshold |
Specify liveness failureThreshold parameter for the Pod |
5 |
probes.liveness.initialDelaySeconds |
Specify liveness initialDelaySeconds parameter for the Pod |
60 |
probes.liveness.timeoutSeconds |
Specify liveness timeoutSeconds parameter for the Pod |
10 |
probes.readiness.enabled |
Enables readiness probe for the Pod | true |
probes.readiness.initialDelaySeconds |
Specify readiness initialDelaySeconds parameter for the Pod |
60 |
probes.readiness.failureThreshold |
Specify readiness failureThreshold parameter for the Pod |
5 |
probes.readiness.timeoutSeconds |
Specify readiness timeoutSeconds parameter for the Pod |
10 |
probes.startup.enabled |
Enables startup probe for the Pod | false |
probes.startup.failureThreshold |
Specify startup failureThreshold parameter for the Pod |
30 |
probes.startup.timeoutSeconds |
Specify startup periodSeconds parameter for the Pod |
10 |
service.type |
Kubernetes service type for the GUI | ClusterIP |
service.httpPort |
Kubernetes port where the GUI is exposed | 80 |
service.websocketPort |
Kubernetes port where the Websocket is exposed | 443 |
service.vncPort |
Kubernetes port where the VNC server is exposed | 5900 |
service.annotations |
Service annotations for the GUI | {} |
service.labels |
Custom labels | {} |
service.loadBalancerIP |
Loadbalancer IP for the GUI | {} |
service.loadBalancerSourceRanges |
List of IP CIDRs allowed access to load balancer (if supported) | nil |
ingress.enabled |
Enables Ingress | false |
ingress.annotations |
Ingress annotations | {} |
ingress.labels |
Custom labels | {} |
ingress.path |
Ingress path | / |
ingress.hosts |
Ingress accepted hostnames | chart-example.local |
ingress.tls |
Ingress TLS configuration | [] |
persistence.enabled |
Use persistent volume to store configuration data | true |
persistence.annotations |
Key-value pairs to add as persistent volume claim annotations | {} |
persistence.storageClass |
Type of persistent volume claim | - |
persistence.existingClaim |
Use an existing PVC to persist data | nil |
persistence.accessMode |
Persistence access mode | ReadWriteOnce |
persistence.size |
Size of persistent volume claim | 1Gi |
extraVolumes |
Optionally add additional Volumes | [] |
resources |
CPU/Memory resource requests/limits | {} |
nodeSelector |
Node labels for pod assignment | {} |
tolerations |
Toleration labels for pod assignment | [] |
affinity |
Affinity settings for pod assignment | {} |
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 my-release \
--set timezone="Europe/Amsterdam" \
k8s-at-home/deconz
Alternatively, a YAML file that specifies the values for the above parameters can be provided while installing the chart. For example,
helm install my-release -f values.yaml k8s-at-home/deconz