Skip to content

Commit

Permalink
Merge pull request #12 from totmicro/netbirdv1.5.0
Browse files Browse the repository at this point in the history
chore: netbirdv1.5.0
  • Loading branch information
marcportabellaclotet-mt authored Oct 18, 2024
2 parents 382c6ab + b374c8c commit 3e731cc
Show file tree
Hide file tree
Showing 25 changed files with 335 additions and 1,074 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/validate.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: CI Validate Charts Manifests
on:
pull_request:

jobs:
helm-validate:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: bmuschko/setup-kubeconform@v1
- name: Validate Helm Charts
shell: bash
run: |
set -o pipefail
for chart in $(find charts -type f -name 'Chart.yaml' | sed -r 's|/[^/]+$||' | sort | uniq);do helm dep up ${chart};done
for d in charts/*/ ; do
echo "$d"
helm lint --quiet "$d"
helm template x "$d" --include-crds > helm_output.yaml
echo "Validate K8s 1.30"
cat helm_output.yaml | kubeconform -summary -strict -ignore-missing-schemas -kubernetes-version=1.30.0 -cache /tmp
echo "Validate K8s 1.31"
cat helm_output.yaml | kubeconform -summary -strict -ignore-missing-schemas -kubernetes-version=1.31.0 -cache /tmp
done
14 changes: 0 additions & 14 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,14 +35,6 @@ Once the repository is added, you can install any of the charts as follows:
helm install netbird totmicro/netbird
```

2. **NetBird Dashboard Chart**:

```bash
helm install netbird-dashboard totmicro/netbird-dashboard
```

Note: This chart is deprecated since the dashboard is now included in the Netbird chart.

### Updating Charts

To get the latest version of the charts, run:
Expand All @@ -61,12 +53,6 @@ You can uninstall the charts using Helm’s `uninstall` command:
helm uninstall netbird
```

2. **Uninstall NetBird Dashboard**:

```bash
helm uninstall netbird-dashboard
```

## Contributing

Feel free to open issues or pull requests if you would like to contribute to these Helm charts.
Expand Down
23 changes: 0 additions & 23 deletions charts/netbird-dashboard/.helmignore

This file was deleted.

8 changes: 0 additions & 8 deletions charts/netbird-dashboard/Chart.yaml

This file was deleted.

95 changes: 0 additions & 95 deletions charts/netbird-dashboard/README.md

This file was deleted.

89 changes: 0 additions & 89 deletions charts/netbird-dashboard/templates/_helpers.tpl

This file was deleted.

85 changes: 0 additions & 85 deletions charts/netbird-dashboard/templates/deployment.yaml

This file was deleted.

Loading

0 comments on commit 3e731cc

Please sign in to comment.