123456789101112131415161718 |
- # This application accesses the host filesystem, so it needs to be root
- containerSecurityContext:
- enabled: true
- runAsUser: 0
- containerPorts:
- http: 9332
- service:
- type: LoadBalancer
- ports:
- http: 80
- metrics:
- enabled: true
- extraVolumes:
- - name: tmp
- emptyDir: {}
- extraVolumeMounts:
- - name: tmp
- mountPath: /tmp
|