Bug 1419577
Summary: | [3.3] Unmount device fails in certain cases | ||
---|---|---|---|
Product: | OKD | Reporter: | Hemant Kumar <hekumar> |
Component: | Storage | Assignee: | Hemant Kumar <hekumar> |
Status: | CLOSED CURRENTRELEASE | QA Contact: | Chao Yang <chaoyang> |
Severity: | medium | Docs Contact: | |
Priority: | unspecified | ||
Version: | 3.x | CC: | aos-bugs, aos-storage-staff, eparis, jhou |
Target Milestone: | --- | ||
Target Release: | --- | ||
Hardware: | All | ||
OS: | Linux | ||
Whiteboard: | |||
Fixed In Version: | Doc Type: | If docs needed, set a value | |
Doc Text: | Story Points: | --- | |
Clone Of: | Environment: | ||
Last Closed: | 2017-05-30 12:47:58 UTC | Type: | Bug |
Regression: | --- | Mount Type: | --- |
Documentation: | --- | CRM: | |
Verified Versions: | Category: | --- | |
oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | |
Cloudforms Team: | --- | Target Upstream Version: | |
Embargoed: |
Description
Hemant Kumar
2017-02-06 14:50:42 UTC
Umount issue is passed on openshift v3.3.1.13 kubernetes v1.3.0+52492b4 etcd 2.3.0+git Create 5 app like below oc new-app php:5.6~https://github.com/openshift/sti-php --context-dir='5.6/test/test-app' Create a dynamic pvc { "kind": "PersistentVolumeClaim", "apiVersion": "v1", "metadata": { "name": "ebsc2", "annotations": { "volume.alpha.kubernetes.io/storage-class": "foo" }, "labels": { "name": "dynamic-pvc" } }, "spec": { "accessModes": [ "ReadWriteOnce" ], "resources": { "requests": { "storage": "3Gi" } } } } ~ oc volume dc/sti-php --add --type=persistentVolumeClaim --mount-path=/opt1 --name=v1 --claim-name=ebsc2 --overwrite oadm manage-node ip-172-18-5-95.ec2.internal --evacuate --pod-selector="app=sti-php" Check ebs volume is umounted from node ip-172-18-5-95.ec2.internal No error message when grep "device is busy error" /var/log/messages |