Skip to content

Commit

Permalink
adjust
Browse files Browse the repository at this point in the history
Signed-off-by: Lucas ONeil <lucasoneil@gmail.com>
  • Loading branch information
loneil committed Nov 21, 2024
1 parent e068d17 commit 330abac
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions charts/vc-authn-oidc/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,18 @@ controller:
- abandoned
userVariableSubsitution: |-
# This is a default placeholder Python file
# Add any extensions to user variables here. Can see, in source,
# docker/oidc-controller/config/user_variable_substitution_example.py for an example
# Add any extensions to user variables here. Example below:
# def sub_days_plus_one(days: str) -> int:
# """Strings like '$sub_days_plus_one_4' will be replaced with the
# final number incremented by one. In this case 5.
# $sub_days_plus_one_4 -> 5
# $sub_days_plus_one_10 -> 11"""
# return int(days) + 1
# variable_substitution_map.add_variable_substitution(
# r"\$sub_days_plus_one_(\d+)", sub_days_plus_one
# )
## @param useHTTPS Prepend Agent and Admin URLs with `https`
useHTTPS: true
## @param logLevel Accepts one of the following values: CRITICAL, ERROR, WARNING, INFO, DEBUG
Expand Down

0 comments on commit 330abac

Please sign in to comment.