
* 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
70 lines
2.3 KiB
YAML
70 lines
2.3 KiB
YAML
apiVersion: extensions/v1beta1
|
|
kind: DaemonSet
|
|
metadata:
|
|
name: ovs-vswitchd
|
|
spec:
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app: ovs-vswitchd
|
|
annotations:
|
|
configmap-bin-hash: {{ tuple "configmap-bin.yaml" . | include "hash" }}
|
|
configmap-etc-hash: {{ tuple "configmap-etc.yaml" . | include "hash" }}
|
|
spec:
|
|
nodeSelector:
|
|
{{ .Values.labels.ovs.node_selector_key }}: {{ .Values.labels.ovs.node_selector_value }}
|
|
securityContext:
|
|
runAsUser: 0
|
|
dnsPolicy: ClusterFirst
|
|
hostNetwork: true
|
|
containers:
|
|
- name: ovs-vswitchd
|
|
image: {{ .Values.images.openvswitch_vswitchd }}
|
|
imagePullPolicy: {{ .Values.images.pull_policy }}
|
|
{{- if .Values.resources.enabled }}
|
|
resources:
|
|
limits:
|
|
cpu: {{ .Values.resources.ovs.vswitchd.limits.cpu | quote }}
|
|
memory: {{ .Values.resources.ovs.vswitchd.limits.memory | quote }}
|
|
requests:
|
|
cpu: {{ .Values.resources.ovs.vswitchd.requests.cpu | quote }}
|
|
memory: {{ .Values.resources.ovs.vswitchd.requests.memory | quote }}
|
|
{{- end }}
|
|
securityContext:
|
|
privileged: true
|
|
# ensures this container can speak to the ovs database
|
|
# successfully before its marked as ready
|
|
readinessProbe:
|
|
exec:
|
|
command:
|
|
- /usr/bin/ovs-vsctl
|
|
- show
|
|
command:
|
|
- bash
|
|
- /tmp/openvswitch-vswitchd.sh
|
|
volumeMounts:
|
|
- name: openvswitchvswitchdsh
|
|
mountPath: /tmp/openvswitch-vswitchd.sh
|
|
subPath: openvswitch-vswitchd.sh
|
|
- name: openvswitchensureconfiguredsh
|
|
mountPath: /tmp/openvswitch-ensure-configured.sh
|
|
subPath: openvswitch-ensure-configured.sh
|
|
- name: libmodules
|
|
mountPath: /lib/modules
|
|
readOnly: true
|
|
- name: run
|
|
mountPath: /run
|
|
volumes:
|
|
- name: openvswitchvswitchdsh
|
|
configMap:
|
|
name: neutron-bin
|
|
- name: openvswitchensureconfiguredsh
|
|
configMap:
|
|
name: neutron-bin
|
|
- name: libmodules
|
|
hostPath:
|
|
path: /lib/modules
|
|
- name: run
|
|
hostPath:
|
|
path: /run
|