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
88 lines
2.9 KiB
YAML
88 lines
2.9 KiB
YAML
{{- $envAll := . }}
|
|
{{- $dependencies := .Values.dependencies.dhcp }}
|
|
apiVersion: extensions/v1beta1
|
|
kind: DaemonSet
|
|
metadata:
|
|
name: neutron-dhcp-agent
|
|
spec:
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app: neutron-dhcp-agent
|
|
annotations:
|
|
configmap-bin-hash: {{ tuple "configmap-bin.yaml" . | include "hash" }}
|
|
configmap-etc-hash: {{ tuple "configmap-etc.yaml" . | include "hash" }}
|
|
pod.beta.kubernetes.io/init-containers: '[
|
|
{{ tuple $envAll $dependencies | include "dep_check_init_cont" | indent 10 }}
|
|
]'
|
|
spec:
|
|
nodeSelector:
|
|
{{ .Values.labels.agent.dhcp.node_selector_key }}: {{ .Values.labels.agent.dhcp.node_selector_value }}
|
|
securityContext:
|
|
runAsUser: 0
|
|
dnsPolicy: ClusterFirst
|
|
hostNetwork: true
|
|
containers:
|
|
- name: neutron-dhcp-agent
|
|
image: {{ .Values.images.dhcp }}
|
|
imagePullPolicy: {{ .Values.images.pull_policy }}
|
|
{{- if .Values.resources.enabled }}
|
|
resources:
|
|
limits:
|
|
cpu: {{ .Values.resources.agent.dhcp.limits.cpu | quote }}
|
|
memory: {{ .Values.resources.agent.dhcp.limits.memory | quote }}
|
|
requests:
|
|
cpu: {{ .Values.resources.agent.dhcp.requests.cpu | quote }}
|
|
memory: {{ .Values.resources.agent.dhcp.requests.memory | quote }}
|
|
{{- end }}
|
|
securityContext:
|
|
privileged: true
|
|
command:
|
|
- neutron-dhcp-agent
|
|
- --config-file
|
|
- /etc/neutron/neutron.conf
|
|
- --config-file
|
|
- /etc/neutron/dhcp-agent.ini
|
|
volumeMounts:
|
|
- name: neutronconf
|
|
mountPath: /etc/neutron/neutron.conf
|
|
subPath: neutron.conf
|
|
- name: ml2confini
|
|
mountPath: /etc/neutron/plugins/ml2/ml2-conf.ini
|
|
subPath: ml2-conf.ini
|
|
- name: dhcpagentini
|
|
mountPath: /etc/neutron/dhcp-agent.ini
|
|
subPath: dhcp-agent.ini
|
|
- name: dnsmasqconf
|
|
mountPath: /etc/neutron/dnsmasq.conf
|
|
subPath: dnsmasq.conf
|
|
- name: runopenvswitch
|
|
mountPath: /run/openvswitch
|
|
- name: socket
|
|
mountPath: /var/lib/neutron/openstack-helm
|
|
- name: resolvconf
|
|
mountPath: /etc/resolv.conf
|
|
subPath: resolv.conf
|
|
volumes:
|
|
- name: neutronconf
|
|
configMap:
|
|
name: neutron-etc
|
|
- name: ml2confini
|
|
configMap:
|
|
name: neutron-etc
|
|
- name: dhcpagentini
|
|
configMap:
|
|
name: neutron-etc
|
|
- name: dnsmasqconf
|
|
configMap:
|
|
name: neutron-etc
|
|
- name: runopenvswitch
|
|
hostPath:
|
|
path: /run/openvswitch
|
|
- name: resolvconf
|
|
configMap:
|
|
name: neutron-etc
|
|
- name: socket
|
|
hostPath:
|
|
path: /var/lib/neutron/openstack-helm
|