10 Commits

Author SHA1 Message Date
Jochem
6f020f2ba4 Make sure develop branch does cleanup 2024-07-09 12:57:23 +02:00
Jochem
6daed4ee78 Adjust workflow 2024-07-09 12:54:21 +02:00
Jochem
7486084b6b Skip version increment check 2024-07-09 12:24:03 +02:00
renovate[bot]
7518848f99 Update Helm release mysql to v11 2024-07-09 10:22:30 +00:00
Jochem
201961fe28 Merge pull request #9 from librenms/testing
Add testing for helm chart and lint cleanup
2024-07-09 12:20:39 +02:00
Jochem
c608f26117 Fix liting 2024-07-09 12:15:46 +02:00
Jochem
251e29fafe Fix pipeline 2024-07-09 12:15:35 +02:00
Jochem
0784ed39f2 Test pipeline 2024-07-09 11:47:55 +02:00
Jochem
50ec0b04b6 Test pipeline 2024-07-09 11:43:58 +02:00
Jochem
5e2dc34ba4 Test pipeline 2024-07-09 11:42:36 +02:00
5 changed files with 78 additions and 16 deletions

59
.github/workflows/chart-testing.yml vendored Normal file
View File

@@ -0,0 +1,59 @@
name: Lint and Test Charts
on: pull_request
jobs:
lint-test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Set up Helm
uses: azure/setup-helm@v4.2.0
with:
version: v3.14.4
- uses: actions/setup-python@v5
with:
python-version: '3.x'
check-latest: true
- name: Set up chart-testing
uses: helm/chart-testing-action@v2.6.1
- name: Add repositories
run: |
for dir in $(ls -d charts/*/); do
helm dependency list $dir 2> /dev/null | tail +2 | head -n -1 | awk '{ print "helm repo add " $1 " " $3 }' | while read cmd; do $cmd; done
done
- name: Run chart-testing (list-changed)
id: list-changed
run: |
changed=$(ct list-changed --target-branch ${{ github.event.repository.default_branch }})
if [[ -n "$changed" ]]; then
echo "changed=true" >> "$GITHUB_OUTPUT"
fi
- name: Run chart-testing (lint)
if: steps.list-changed.outputs.changed == 'true' && github.ref != 'refs/heads/develop'
run: ct lint --target-branch ${{ github.event.repository.default_branch }} --check-version-increment=false
- name: Run chart-testing (lint & version)
if: github.ref == 'refs/heads/develop'
run: ct lint --target-branch main
- name: Create kind cluster
if: steps.list-changed.outputs.changed == 'true'
uses: helm/kind-action@v1.10.0
- name: Run chart-testing (install)
if: steps.list-changed.outputs.changed == 'true' && github.ref != 'refs/heads/develop'
run: ct install --target-branch ${{ github.event.repository.default_branch }} --skip-clean-up
- name: Run chart-testing (install & upgrades)
if: github.ref == 'refs/heads/develop'
run: ct install --target-branch main --upgrade

View File

@@ -4,6 +4,6 @@ dependencies:
version: 19.6.1 version: 19.6.1
- name: mysql - name: mysql
repository: https://charts.bitnami.com/bitnami repository: https://charts.bitnami.com/bitnami
version: 10.3.0 version: 11.1.8
digest: sha256:7b8a3f1182b70837c842c8a9fe7c1fa913cadd6800f1f780f94c357af7fca21f digest: sha256:4b82fafdf2c4c72a003d1dc6df9343a089eb5d2f686927d134821854f9633c83
generated: "2024-07-05T12:50:36.211666249Z" generated: "2024-07-09T10:22:10.255911997Z"

View File

@@ -2,14 +2,17 @@ apiVersion: v2
name: librenms name: librenms
description: LibreNMS is an autodiscovering PHP/MySQL-based network monitoring system. description: LibreNMS is an autodiscovering PHP/MySQL-based network monitoring system.
type: application type: application
version: 3.10.0 version: 3.10.1
appVersion: "24.5.0" appVersion: "24.5.0"
maintainers:
- name: TheChef23
url: https://github.com/TheChef23
dependencies: dependencies:
- name: redis - name: redis
version: "~19.6.0" version: "~19.6.0"
repository: "https://charts.bitnami.com/bitnami" repository: "https://charts.bitnami.com/bitnami"
when: redis.enabled == true condition: redis.enabled
- name: mysql - name: mysql
version: "~10.3.0" version: "~11.1.0"
repository: "https://charts.bitnami.com/bitnami" repository: "https://charts.bitnami.com/bitnami"
when: mysql.enabled == true condition: mysql.enabled

View File

@@ -0,0 +1,2 @@
librenms:
appkey: base64:RTMmh+i10E2RMcDxookMu47BTzJQy87hOU+k/zcuPnA=

View File

@@ -9,7 +9,7 @@ librenms:
# Laravel appkey used by LibreNMS, a default is set for useability it is # Laravel appkey used by LibreNMS, a default is set for useability it is
# recommended to replace this with your own key # recommended to replace this with your own key
# THIS A REQUIRED SETTINGS # THIS A REQUIRED SETTINGS
appkey: appkey:
# Timezone used by librenms for communication with RRD cached # Timezone used by librenms for communication with RRD cached
timezone: UTC timezone: UTC
@@ -20,9 +20,7 @@ librenms:
configuration: |- configuration: |-
$config['distributed_poller_group'] = '0'; $config['distributed_poller_group'] = '0';
$config['distributed_poller'] = true; $config['distributed_poller'] = true;
# Frontend container configurations options # Frontend container configurations options
frontend: frontend:
replicas: 1 replicas: 1
@@ -47,9 +45,9 @@ librenms:
# memory: 200M # memory: 200M
# SNMP network discovery scanner cron job. This job is optional and only use # SNMP network discovery scanner cron job. This job is optional and only use
# when having snmp network discovery enabled. For this to work either set the # when having snmp network discovery enabled. For this to work either set the
# 'nets' confifuration in the custom config on in the admin interface # 'nets' confifuration in the custom config on in the admin interface
# See the following link for more information: # See the following link for more information:
# https://docs.librenms.org/Extensions/Auto-Discovery/ # https://docs.librenms.org/Extensions/Auto-Discovery/
snmp_scanner: snmp_scanner:
enabled: false enabled: false
@@ -65,7 +63,7 @@ librenms:
extraEnvs: {} extraEnvs: {}
# RRD cached is the tool that allows for distributed polling and is mandatory # RRD cached is the tool that allows for distributed polling and is mandatory
# in this LibreNMS helm chart. See the rrdcached documentation for more # in this LibreNMS helm chart. See the rrdcached documentation for more
# information: https://oss.oetiker.ch/rrdtool/doc/rrdcached.en.html # information: https://oss.oetiker.ch/rrdtool/doc/rrdcached.en.html
rrdcached: rrdcached:
image: image:
@@ -97,7 +95,7 @@ librenms:
# Extra environment variable for RRDCACHED container # Extra environment variable for RRDCACHED container
extraEnvs: {} extraEnvs: {}
# Configuration for MySQL dependency chart by Bitnami. See their chart for # Configuration for MySQL dependency chart by Bitnami. See their chart for
# more information: https://github.com/bitnami/charts/tree/master/bitnami/mysql # more information: https://github.com/bitnami/charts/tree/master/bitnami/mysql
mysql: mysql:
enabled: true enabled: true
@@ -105,7 +103,7 @@ mysql:
username: librenms username: librenms
database: librenms database: librenms
# Configuration for redis dependency chart by Bitnami. See their chart for # Configuration for redis dependency chart by Bitnami. See their chart for
# more information: https://github.com/bitnami/charts/tree/master/bitnami/redis # more information: https://github.com/bitnami/charts/tree/master/bitnami/redis
redis: redis:
enabled: true enabled: true
@@ -119,4 +117,4 @@ redis:
master: master:
disableCommands: [] disableCommands: []
architecture: standalone architecture: standalone