forked from RemoteSync/librnms-helm-charts
Remove appkey from values and move it to up to make more obvious it is required
This commit is contained in:
3
charts/librenms/.gitignore
vendored
3
charts/librenms/.gitignore
vendored
@@ -1 +1,2 @@
|
|||||||
charts
|
charts
|
||||||
|
values-local.yaml
|
@@ -7,7 +7,7 @@ data center infrastructure management (DCIM) tool.
|
|||||||
|
|
||||||
```shell
|
```shell
|
||||||
$ helm repo add thechef23 https://thechef23.github.io/helm-librenms
|
$ helm repo add thechef23 https://thechef23.github.io/helm-librenms
|
||||||
$ helm install my-release thechef23-librenms/librenms
|
$ helm install my-release thechef23-librenms/librenms --set appkey=<LibreNMS Application key>
|
||||||
```
|
```
|
||||||
|
|
||||||
## Prerequisites
|
## Prerequisites
|
||||||
@@ -21,13 +21,19 @@ To install the chart with the release name `my-release` and default configuratio
|
|||||||
|
|
||||||
```shell
|
```shell
|
||||||
$ helm repo add thechef23 https://thechef23.github.io/helm-librenms
|
$ helm repo add thechef23 https://thechef23.github.io/helm-librenms
|
||||||
$ helm install my-release thechef23-librenms/librenms
|
$ helm install my-release thechef23-librenms/librenms --set appkey=<LibreNMS Application key>
|
||||||
```
|
```
|
||||||
|
|
||||||
## Values
|
## Values
|
||||||
Check the [values.yml](/TheChef23/helm-librenms/blob/main/values.yaml) file for the available settings for this chart and its
|
Check the [values.yaml](/TheChef23/helm-librenms/blob/main/values.yaml) file for the available settings for this chart and its
|
||||||
dependencies.
|
dependencies.
|
||||||
|
|
||||||
|
### Required values:
|
||||||
|
```
|
||||||
|
librenms:
|
||||||
|
appkey:
|
||||||
|
```
|
||||||
|
|
||||||
## Uninstalling the Chart
|
## Uninstalling the Chart
|
||||||
|
|
||||||
To delete the chart:
|
To delete the chart:
|
||||||
|
@@ -1,13 +1,16 @@
|
|||||||
# Default values for librenms.
|
# Default values for librenms.
|
||||||
# This is a YAML-formatted file.
|
# This is a YAML-formatted file.
|
||||||
# Declare variables to be passed into your templates.
|
# Declare variables to be passed into your templates.
|
||||||
|
|
||||||
|
|
||||||
librenms:
|
librenms:
|
||||||
image:
|
image:
|
||||||
repository: librenms/librenms
|
repository: librenms/librenms
|
||||||
tag: 24.5.0
|
tag: 24.5.0
|
||||||
|
|
||||||
|
# Laravel appkey used by LibreNMS, a default is set for useability it is
|
||||||
|
# recommended to replace this with your own key
|
||||||
|
# THIS A REQUIRED SETTINGS
|
||||||
|
appkey:
|
||||||
|
|
||||||
# Timezone used by librenms for communication with RRD cached
|
# Timezone used by librenms for communication with RRD cached
|
||||||
timezone: UTC
|
timezone: UTC
|
||||||
|
|
||||||
@@ -18,9 +21,7 @@ librenms:
|
|||||||
$config['distributed_poller_group'] = '0';
|
$config['distributed_poller_group'] = '0';
|
||||||
$config['distributed_poller'] = true;
|
$config['distributed_poller'] = true;
|
||||||
|
|
||||||
# Laravel appkey used by LibreNMS, a default is set for useability it is
|
|
||||||
# recommended to replace this with your own key
|
|
||||||
appkey: base64:Qh1eBwRfpgNHWByDDqhaX0I/0hnE/VDRiLHLnjwrZRw=
|
|
||||||
|
|
||||||
# Frontend container configurations options
|
# Frontend container configurations options
|
||||||
frontend:
|
frontend:
|
||||||
|
Reference in New Issue
Block a user