Skip to content
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
3 changes: 2 additions & 1 deletion charts/vc-authn-oidc/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,8 @@ kubectl delete secret,pvc --selector "app.kubernetes.io/instance"=my-release
| `controller.sessionTimeout.duration` | The number of seconds an auth_sessions in the states defined in controllerSessionTimeoutConfig is kept for | `86400` |
| `controller.sessionTimeout.config` | The json list of auth session states that are safe for deletion | `["expired","failed","abandoned"]` |
| `controller.templateDirectory` | The directory where the controller templates are stored | `/app/controller-config/templates` |
| `controller.userVariableSubsitution` | The placeholder for the user variable substitution file that can be used to add substitution variables | `# This is a default placeholder Python file
| `controller.userVariableSubsitution` | The placeholder for the user variable substitution file that can be used to add substitution variables | `# This is a default placeholder Python file`
| `controller.useConnectionBasedVerification` | Whether to use connection-based proofs. If false connectionless OOB invites contain the proof | `true`
# Add any extensions to user variables here. Example below:

# def sub_days_plus_one(days: str) -> int:
Expand Down
2 changes: 2 additions & 0 deletions charts/vc-authn-oidc/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,8 @@ spec:
value: {{ .Values.controller.sessionTimeout.duration | quote }}
- name: CONTROLLER_TEMPLATE_DIR
value: {{ .Values.controller.templateDirectory | quote }}
- name: USE_CONNECTION_BASED_VERIFICATION
value: {{ .Values.controller.useConnectionBasedVerification | quote }}
- name: ACAPY_AGENT_URL
value: {{ include "acapy.agent.url" . }}
- name: ACAPY_ADMIN_URL
Expand Down
2 changes: 2 additions & 0 deletions charts/vc-authn-oidc/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ walletDeepLinkPrefix: bcwallet://aries_proof-request
## @param controller.templateDirectory The directory where the controller templates are stored
## @param controller.userVariableSubsitution The placeholder for the user variable substitution file that can be used to add substitution variables
## @param controller.customHtmlConfigMapName ConfigMap file used to define the HTML file overrides
## @param controller.useConnectionBasedVerification Whether to use connection-based proofs. If false connectionless OOB invites contain the proof.
controller:
cameraRedirectUrl: wallet_howto
presentationExpireTime: 300
Expand All @@ -64,6 +65,7 @@ controller:
# r"\$sub_days_plus_one_(\d+)", sub_days_plus_one
# )
customHtmlConfigMapName: ""
useConnectionBasedVerification: true

## @param useHTTPS Prepend Agent and Admin URLs with `https`
useHTTPS: true
Expand Down