56664b34a6
This is to address out of memory issues on CI as well as help fit deployments for people starting out with kargo on smaller machines
21 lines
682 B
YAML
21 lines
682 B
YAML
---
|
|
# Flannel public IP
|
|
# The address that flannel should advertise as how to access the system
|
|
flannel_public_ip: "{{ access_ip|default(ip|default(ansible_default_ipv4.address)) }}"
|
|
|
|
## interface that should be used for flannel operations
|
|
## This is actually an inventory node-level item
|
|
# flannel_interface:
|
|
|
|
# You can choose what type of flannel backend to use
|
|
# please refer to flannel's docs : https://github.com/coreos/flannel/blob/master/README.md
|
|
flannel_backend_type: "vxlan"
|
|
|
|
# Limits for apps
|
|
flannel_memory_limit: 500M
|
|
flannel_cpu_limit: 300m
|
|
flannel_memory_requests: 64M
|
|
flannel_cpu_requests: 150m
|
|
|
|
flannel_cert_dir: /etc/flannel/certs
|
|
etcd_cert_dir: /etc/ssl/etcd/ssl
|