Skip to content

Commit

Permalink
fix: add volume and volumeMounts (#6)
Browse files Browse the repository at this point in the history
  • Loading branch information
braghettos committed Mar 12, 2024
1 parent 57c99c9 commit b74bbde
Showing 1 changed file with 6 additions and 9 deletions.
15 changes: 6 additions & 9 deletions chart/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -88,17 +88,14 @@ autoscaling:
# targetMemoryUtilizationPercentage: 80

# Additional volumes on the output Deployment definition.
volumes: []
# - name: foo
# secret:
# secretName: mysecret
# optional: false
volumes:
- emptyDir: {}
name: tmp-dir

# Additional volumeMounts on the output Deployment definition.
volumeMounts: []
# - name: foo
# mountPath: "/etc/foo"
# readOnly: true
volumeMounts:
- mountPath: /tmp
name: tmp-dir

nodeSelector: {}

Expand Down

0 comments on commit b74bbde

Please sign in to comment.