mirror of
https://github.com/outbackdingo/cozystack.git
synced 2026-03-20 17:41:11 +00:00
45 lines
1.1 KiB
YAML
45 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 Resources
|
|
resources: {}
|
|
# resources:
|
|
# limits:
|
|
# cpu: 4000m
|
|
# memory: 4Gi
|
|
# requests:
|
|
# cpu: 100m
|
|
# memory: 512Mi
|
|
|
|
## @param resourcesPreset Set container resources according to one common preset (allowed values: none, nano, micro, small, medium, large, xlarge, 2xlarge). This is ignored if resources is set (resources is recommended for production).
|
|
resourcesPreset: "nano"
|