securityContext: allowPrivilegeEscalation: false runAsUser: {{ coturn_uid }} runAsGroup: {{ coturn_gid }} hostNetwork: true containers: - name: coturn image: "instrumentisto/coturn:{{ coturn_version }}" args: - --log-file=stdout resources: limits: memory: "1Gi" volumeMounts: - name: config mountPath: /etc/coturn/ readOnly: true - name: run mountPath: /var/run - name: lib mountPath: /var/lib/coturn volumes: - name: config hostPath: path: "{{ coturn_base_path }}/{{ coturn_realm }}/config/" type: Directory - name: run emptyDir: medium: Memory - name: lib emptyDir: medium: Memory