Netmaker
Netmaker Argo CD Application
Netmaker is a vpn management tool wrapping WireGuard ®️.
We're currently using our own home grown helm chart as it supports existing secrets and initial super admin user creation. You can learn more about the Argo CD ApplicationSet here.
Initialization Features
If you set apps.netmaker.init.enabled
to true
, we will create a Zitadel app for use with oidc, and also create an initial admin user, plus disable the GUI registration for security sake.
Example Config
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39 | apps:
netmaker:
enabled: false
description: |
[link=https://www.netmaker.io/]Netmaker[/link]®️ makes networks with WireGuard. Netmaker automates fast, secure, and distributed virtual networks.
init:
enabled: true
values:
# this creates a super admin user and disables the GUI registration form
# if using the default config, we select a password for you and update your bitwarden
admin_user: admin
argo:
# secrets keys to make available to Argo CD ApplicationSets
secret_keys:
hostname: netmaker.example.com
admin_hostname: admin.netmaker.example.com
api_hostname: api.netmaker.example.com
broker_hostname: broker.netmaker.example.com
auth_provider: oidc
# git repo to install the Argo CD app from
repo: https://github.com/small-hack/argocd-apps
# path in the argo repo to point to. Trailing slash very important!
path: netmaker/app_of_apps/
# either the branch or tag to point at in the argo repo above
revision: main
# kubernetes cluster to install the k8s app into, defaults to Argo CD default
cluster: https://kubernetes.default.svc
# namespace to install the k8s app in
namespace: netmaker
# recurse directories in the provided git repo
directory_recursion: false
# source repos for Argo CD App Project (in addition to argo.repo)
project:
source_repos:
- https://github.com/small-hack/netmaker-helm
- https://small-hack.github.io/netmaker-helm
destination:
# automatically includes the app's namespace and argocd's namespace
namespaces: []
|