fc21a2e924
* Add resources limits and requests for each chart * Refactor the resources limits and requests to follow a patern * Fix some coding issues * fix issues resulting from feedback on the resources PR * Reset some variables to a static value in the neutron chart. * Substituting variable entrypoint by dependency_check in the concerned files * Few adjustments * Update deploy-region.yaml * Update deployment.yaml * Add resources limits and requests for each chart Squah all commits in one. * Add resources limits and requests for some charts * cleaning * Fix indendation issue * Update deployment.yaml * Update daemonset-ovs-vswitchd.yaml
40 lines
787 B
YAML
40 lines
787 B
YAML
# Default values for maas.
|
|
# This is a YAML-formatted file.
|
|
# Declare variables to be passed into your templates.
|
|
|
|
images:
|
|
maas_region: quay.io/attcomdev/maas-region:2.1.2-1
|
|
maas_rack: quay.io/attcomdev/maas-rack:2.1.2-1
|
|
pull_policy: Always
|
|
|
|
labels:
|
|
node_selector_key: openstack-control-plane
|
|
node_selector_value: enabled
|
|
|
|
network:
|
|
port:
|
|
region_container: 80
|
|
service_gui: 80
|
|
service_gui_target: 80
|
|
service_proxy: 8000
|
|
service_proxy_target: 8000
|
|
|
|
service_name: maas-region-ui
|
|
|
|
resources:
|
|
enabled: false
|
|
maas_rack_controller:
|
|
limits:
|
|
memory: "128Mi"
|
|
cpu: "500m"
|
|
requests:
|
|
memory: "128Mi"
|
|
cpu: "500m"
|
|
maas_region:
|
|
limits:
|
|
memory: "128Mi"
|
|
cpu: "500m"
|
|
requests:
|
|
memory: "128Mi"
|
|
cpu: "500m"
|