-
Notifications
You must be signed in to change notification settings - Fork 40k
New issue
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
Add subPath to mount a child dir or file of a volumeMount #22575
Conversation
Can one of the admins verify that this patch is reasonable to test in $JOB_NAME? (reply "ok to test", or if you trust the user, reply "add to whitelist") If this message is too spammy, please complain to ixdy. |
2 similar comments
Can one of the admins verify that this patch is reasonable to test in $JOB_NAME? (reply "ok to test", or if you trust the user, reply "add to whitelist") If this message is too spammy, please complain to ixdy. |
Can one of the admins verify that this patch is reasonable to test in $JOB_NAME? (reply "ok to test", or if you trust the user, reply "add to whitelist") If this message is too spammy, please complain to ixdy. |
0145cb8
to
810eefd
Compare
/unbury @thockin ;) |
@ixdy unsubstituted variable in k8s-bot comments above. |
@MikaelCluseau your generated code is not there, run |
a4b3ba8
to
266dd99
Compare
e4c3aae
to
d4205bc
Compare
Added the API change correctly. |
60d6482
to
0033f60
Compare
Travis build finished on error but the log shows a success. Mesos is ok. My own verify-all was ok too.
|
0033f60
to
67c6ef3
Compare
@thockin if I did it right, it should be the last round :-) |
L G T M Thanks |
GCE e2e build/test passed for commit 4c2dc56. |
@k8s-bot test this [submit-queue is verifying that this PR is safe to merge] |
GCE e2e build/test passed for commit 4c2dc56. |
Automatic merge from submit-queue |
Allow users to specify a subPath in Container.volumeMounts so they can use a single volume for many mounts instead of creating many volumes. For instance, a user can now use a single PersistentVolume to store the Mysql database and the document root of an Apache server of a LAMP stack pod by mapping them to different subPaths in this single volume.
Also solves #20466.