feat(argo-workflows): Add dev/delegated auth (#1048)

* add commented server auth disable option

Signed-off-by: reinvantveer <reinvantveer@gmail.com>

* add sectioned server authentication documentation

Signed-off-by: reinvantveer <reinvantveer@gmail.com>

* add change notes

Signed-off-by: reinvantveer <reinvantveer@gmail.com>

* fix helm-docs checksum error

Signed-off-by: reinvantveer <reinvantveer@gmail.com>

* revert dropped `volumeMounts` docs entry by removing whitespace above commented-out `extraArgs`

Signed-off-by: reinvantveer <rein@vantveer.me>

* add extra comment on disabling auth

Signed-off-by: reinvantveer <rein@vantveer.me>
This commit is contained in:
Rein van 't Veer 2021-12-06 11:01:50 +01:00 committed by GitHub
parent 9b35844af7
commit 16a3b26f0e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 22 additions and 4 deletions

View file

@ -356,8 +356,14 @@ server:
# - name: FOO
# value: "bar"
# -- Extra arguments to provide to the Argo server binary.
# -- Extra arguments to provide to the Argo server binary, such as for disabling authentication.
extraArgs: []
# If you want to disable authentication for purposes such as:
# - local dev-mode without authentication
# - gateway authentication through some other service such as KeyCloak
# uncomment the lines below and comment out the default empty list `extraArgs: []` above:
# extraArgs:
# - --auth-mode=server
# -- Additional volume mounts to the server main container.
volumeMounts: []