We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
What steps did you take and what happened: I added customVolumes and customVolumeMounts to the values of the trivy-operator helm-chart:
trivyOperator: scanJobCustomVolumesMount: - name: trivy-cache mountPath: /tmp/trivy/.cache readOnly: false scanJobCustomVolumes: - name: trivy-cache persistentVolumeClaim: claimName: trivy-cache
The resulting Pod did include the custom volume but not the volumeMount (neither main nor init container):
volumeMounts: - mountPath: /tmp name: tmp - mountPath: /tmp/scan name: scanresult ... volumeMounts: - mountPath: /tmp name: tmp ... volumes: - emptyDir: {} name: tmp - emptyDir: {} name: scanresult - name: trivy-cache persistentVolumeClaim: claimName: trivy-cache
What did you expect to happen: The volumeMoutns should have been added.
Anything else you would like to add: I created a pull request #2347
Environment:
trivy-operator version
kubectl version
The text was updated successfully, but these errors were encountered:
No branches or pull requests
What steps did you take and what happened:
I added customVolumes and customVolumeMounts to the values of the trivy-operator helm-chart:
The resulting Pod did include the custom volume but not the volumeMount (neither main nor init container):
What did you expect to happen:
The volumeMoutns should have been added.
Anything else you would like to add:
I created a pull request #2347
Environment:
trivy-operator version
): Custom build from main branch (dc44a0a)kubectl version
): Client Version: v1.31.0, Server Version: v1.30.0The text was updated successfully, but these errors were encountered: