securityContext: allowPrivilegeEscalation: false runAsUser: {{ mumble_uid }} runAsGroup: {{ mumble_gid }} hostNetwork: true containers: - name: mumble image: "phlak/mumble:{{ mumble_version }}" env: - name: TZ value: "{{ mumble_timezone }}" - name: SUPERUSER_PASSWORD value: "{{ mumble_superuser_password }}" resources: limits: memory: "512Mi" volumeMounts: - name: config mountPath: /etc/mumble readOnly: true - name: db mountPath: /srv/mumble/db volumes: - name: config hostPath: path: "{{ mumble_base_path }}/{{ mumble_instance }}/config" type: Directory - name: db hostPath: path: "{{ mumble_base_path }}/{{ mumble_instance }}/db" type: Directory