Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add some initial documentation #13

Merged
merged 1 commit into from
Mar 4, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions charts/netbird/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,18 +15,18 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 0.1.10
version: 0.1.11

dependencies:
- name: dashboard
condition: dashboard.enabled
version: 0.1.10
version: 0.1.11
- name: management
condition: management.enabled
version: 0.1.10
version: 0.1.11
- name: signal
condition: signal.enabled
version: 0.1.10
version: 0.1.11

maintainers:
- name: ph1ll
5 changes: 5 additions & 0 deletions charts/netbird/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# Netbird

A chart for [Netbird](https://netbird.io/).

This chart is currently under development and could change at anytime. It is not recommended for production use.
2 changes: 1 addition & 1 deletion charts/netbird/charts/dashboard/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 0.1.10
version: 0.1.11

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
Expand Down
2 changes: 1 addition & 1 deletion charts/netbird/charts/management/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 0.1.10
version: 0.1.11

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
Expand Down
2 changes: 1 addition & 1 deletion charts/netbird/charts/management/templates/pvc.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,5 @@ spec:
- ReadWriteOnce
resources:
requests:
storage: "{{ .Values.persistence.size }}"
storage: "{{ .Values.persistence.size | default "1Gi" }}"
{{- end -}}
2 changes: 1 addition & 1 deletion charts/netbird/charts/signal/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 0.1.10
version: 0.1.11

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
Expand Down
58 changes: 58 additions & 0 deletions charts/netbird/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,9 @@ global:
# cert-manager.io/cluster-issuer: letsencrypt
grpc: {}
# cert-manager.io/cluster-issuer: letsencrypt
##
## The following annotations are required for use with ingress-nginx
##
# nginx.ingress.kubernetes.io/backend-protocol: GRPC
# nginx.ingress.kubernetes.io/configuration-snippet: |
# grpc_ssl_verify off;
Expand All @@ -22,26 +25,81 @@ global:
# grpc_send_timeout 1d;

dashboard:
##
## Set to true to enable the dashboard
##
enabled: false
auth:
##
## The value for 'AUTH_AUDIENCE'
##
audience: ""
##
## The value for 'AUTH_CLIENT_ID'
##
clientId: ""
##
## The value for 'AUTH_CLIENT_SECRET'
##
## Use 'value' to insecurely set or use 'existingSecret' to use an existing secret. 'existingSecret'
## will override any 'value'.
##
clientSecret:
value: ""
##
## This secret can be created as follows:
##
## kubectl -n netbird create secret generic netbird-dashboard --from-literal=NETBIRD_AUTH_CLIENT_SECRET=<secret>
##
existingSecret: ""
##
## The value for 'AUTH_AUTHORITY'
##
authority: ""
##
## The value for 'AUTH_SUPPORTED_SCOPES'
##
supportedScopes: ""
##
## The value for 'AUTH_REDIRECT_URI'
##
redirectUri: ""
##
## The value for 'AUTH_SILENT_REDIRECT_URI'
##
silentRedirectUri: ""
##
## The value for 'USE_AUTH0'
##
useAuth0: false
##
## The value for 'NETBIRD_TOKEN_SOURCE'
##
tokenSource: ""

management:
##
## Set to true to enable the management service
##
enabled: false
configuration:
##
## This secret can be created from an existing management.json file as follows:
##
## kubectl -n netbird create secret generic netbird-management-configuration --from-file=./management.json
##
## See https://docs.netbird.io/selfhosted/selfhosted-guide for a guide to creating the management.json.
##
## Ensure the management.json has been populated with a value for 'DataStoreEncryptionKey', which
## can be generated using 'openssl rand -base64 32'.
##
existingSecret: ""
persistence:
enabled: false
size: 1Gi

signal:
##
## Set to true to enable the signal service
##
enabled: false