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
ephemeral
/kind bug
/area library
Operating System:
Go Pkg Version: devfile/library v1.2.0
To Reproduce: define ephemeral devfile volume component
- name: volume-test volume: ephemeral: true
currently, it will create PVC volume
volumes: - name: volume-test-volume persistentVolumeClaim: claimName: volume-test-pvc
if ephemeral: true the kubernetes volume inside Deployment should be emptyDir
ephemeral: true
emptyDir
volumes: - name: volume-test-volume emptyDir: {}
The text was updated successfully, but these errors were encountered:
yangcao77
Successfully merging a pull request may close this issue.
/kind bug
Which area this bug is related to?
/area library
What versions of software are you using?
Operating System:
Go Pkg Version:
devfile/library v1.2.0
Bug Summary
To Reproduce:
define ephemeral devfile volume component
currently, it will create PVC volume
Expected behavior
if
ephemeral: true
the kubernetes volume inside Deployment should beemptyDir
The text was updated successfully, but these errors were encountered: