cozystack/packages/apps/vpn/values.yaml
Nick Volynkin 55d8e46345
[apps] Use new OpenAPI schema and README generator for packages/apps
- clickhouse
- ferretdb
- http-cache
- kafka
- kubernetes
- mysql
- nats
- rabbitmq
- redis
- tcp-balancer
- vm-disk
- vm-instance
- vpn

Signed-off-by: Nick Volynkin <nick.volynkin@gmail.com>
2025-08-09 10:16:36 +03:00

42 lines
1.3 KiB
YAML

## @section Common parameters
##
## @param replicas {int} Number of VPN server replicas
replicas: 2
## @param resources {*resources} Explicit CPU and memory configuration for each VPN server replica. When left empty, the preset defined in `resourcesPreset` is applied.
## @field resources.cpu {*quantity} CPU
## @field resources.memory {*quantity} Memory
resources: {}
# resources:
# cpu: 4000m
# memory: 4Gi
##
## @param resourcesPreset {string enum:"nano,micro,small,medium,large,xlarge,2xlarge"} Default sizing preset used when `resources` is omitted. Allowed values: `nano`, `micro`, `small`, `medium`, `large`, `xlarge`, `2xlarge`.
resourcesPreset: "nano"
## @param external {bool} Enable external access from outside the cluster
external: false
## @section Application-specific parameters
##
## @param host {string} Host used to substitute into generated URLs
host: ""
## @param users {map[string]user} Users configuration
## @field user.password {*string} Password for the user, autogenerated if none provided
## Example:
## users:
## user1:
## password: hackme
## user2: {} # autogenerated password
users: {}
## @param externalIPs {[]*string} 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: []