Skip to content

Commit

Permalink
Allow configuring experimental client feature flags (#67)
Browse files Browse the repository at this point in the history
  • Loading branch information
PKizzle authored Feb 14, 2024
1 parent 2cac470 commit 3737ec0
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 1 deletion.
2 changes: 1 addition & 1 deletion charts/vaultwarden/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,5 @@ maintainers:
- name: guerzon
email: [email protected]
url: https://github.com/guerzon
version: 0.19.0
version: 0.20.0
kubeVersion: ">=1.12.0-0"
3 changes: 3 additions & 0 deletions charts/vaultwarden/templates/configmap.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -70,3 +70,6 @@ data:
YUBICO_SERVER: {{ .Values.yubico.server | quote }}
{{- end }}
{{- end }}
{{- with .Values.experimentalClientFeatureFlags }}
EXPERIMENTAL_CLIENT_FEATURE_FLAGS: {{ . | quote }}
{{- end }}
8 changes: 8 additions & 0 deletions charts/vaultwarden/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -157,6 +157,14 @@ yubico:
secretKey: ""
server: ""

## @param experimentalClientFeatureFlags Comma separated list of experimental features to enable in clients, make sure to check which features are already enabled by default (.env.template)
## Possible values:
## - "autofill-overlay": Add an overlay menu to form fields for quick access to credentials.
## - "autofill-v2": Use the new autofill implementation.
## - "browser-fileless-import": Directly import credentials from other providers without a file.
## - "fido2-vault-credentials": Enable the use of FIDO2 security keys as second factor.
experimentalClientFeatureFlags: null


## @section Exposure Parameters
##
Expand Down

0 comments on commit 3737ec0

Please sign in to comment.