Files
cozystack/packages/apps/vpn/values.yaml
Nick Volynkin 4719c8224f [apps] Give examples of new resources in managed app README's
- Change wording for `resources` and `resourcesPreset` variables.
- Explain and give exampls of other object-type variables,
  if their child fields are not annotated.

Signed-off-by: Nick Volynkin <nick.volynkin@gmail.com>
2025-07-01 19:39:32 +03:00

40 lines
1.1 KiB
YAML

## @section Common parameters
## @param external Enable external access from outside the cluster
## @param replicas Number of VPN server replicas
##
external: false
replicas: 2
## @section Configuration parameters
## @param host Host used to substitute into generated URLs
host: ""
## @param users [object] Users configuration
## Example:
## users:
## user1:
## password: hackme
## user2: {} # autogenerated password
users: {}
## @param externalIPs [array] List of externalIPs for service. Optional. If not specified will use LoadBalancer service by default.
##
## e.g:
## externalIPs:
## - "11.22.33.44"
## - "11.22.33.45"
## - "11.22.33.46"
##
externalIPs: []
## @param resources Explicit CPU and memory configuration for each VPN server replica. When left empty, the preset defined in `resourcesPreset` is applied.
resources: {}
# resources:
# cpu: 4000m
# memory: 4Gi
## @param resourcesPreset Default sizing preset used when `resources` is omitted. Allowed values: none, nano, micro, small, medium, large, xlarge, 2xlarge.
resourcesPreset: "nano"