Skip to content

Commit

Permalink
Update documentation for new values.yaml format (#346)
Browse files Browse the repository at this point in the history
The "backend" property in "remoteAuth" has been replaced with "backends"
  • Loading branch information
mrmarino authored Sep 18, 2024
1 parent df11c38 commit 85df230
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
2 changes: 1 addition & 1 deletion charts/netbox/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
apiVersion: v2
name: netbox
version: 5.0.0-beta.100
version: 5.0.0-beta.101
appVersion: "v4.1.1"
type: application
kubeVersion: ^1.25.0-0
Expand Down
9 changes: 6 additions & 3 deletions docs/auth.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@ Using custom auth pipelines you can assign groups based on the roles supplied by
```yaml
remoteAuth:
enabled: true
backend: social_core.backends.keycloak.KeycloakOAuth2
backends:
- social_core.backends.keycloak.KeycloakOAuth2
autoCreateUser: true

extraConfig:
Expand Down Expand Up @@ -100,7 +101,8 @@ data:
```yaml
remoteAuth:
enabled: true
backend: social_core.backends.gitlab.GitLabOAuth2
backends:
- social_core.backends.gitlab.GitLabOAuth2
autoCreateUser: true
extraConfig:
- secret:
Expand Down Expand Up @@ -201,7 +203,8 @@ For example:
```yaml
remoteAuth:
enabled: true
backend: netbox.authentication.LDAPBackend
backends:
- netbox.authentication.LDAPBackend
ldap:
serverUri: 'ldap://domain.com'
startTls: true
Expand Down

0 comments on commit 85df230

Please sign in to comment.