mirror of
https://github.com/outbackdingo/cozystack.git
synced 2026-03-20 11:41:06 +00:00
Use the same order for values in all applications: 1. Common configuration parameters in the specified order, if exist: - replicas - shards - resources - resourcesPreset - size - storageClass - external (goes last, because we don't want to promote this practice) 2. Application-specific parameters, such as database and users 3. Component-specific, each component under its own section 4. Backup 5. Bootstrap (recovery) Signed-off-by: Nick Volynkin <nick.volynkin@gmail.com>
40 lines
1.1 KiB
YAML
40 lines
1.1 KiB
YAML
## @section Common parameters
|
|
##
|
|
## @param replicas Number of VPN server replicas
|
|
replicas: 2
|
|
## @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: nano, micro, small, medium, large, xlarge, 2xlarge.
|
|
resourcesPreset: "nano"
|
|
## @param external Enable external access from outside the cluster
|
|
external: false
|
|
|
|
|
|
## @section Application-specific parameters
|
|
##
|
|
## @param host Host used to substitute into generated URLs
|
|
host: ""
|
|
|
|
## @param users [object] Users configuration (see example)
|
|
## 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: []
|
|
|