| Summary: | Duplicate messages in oc get pod -w when deleting a dc | ||
|---|---|---|---|
| Product: | OpenShift Container Platform | Reporter: | Mike Fiedler <mifiedle> |
| Component: | oc | Assignee: | Maciej Szulik <maszulik> |
| Status: | CLOSED EOL | QA Contact: | Wei Sun <wsun> |
| Severity: | low | Docs Contact: | |
| Priority: | unspecified | ||
| Version: | 3.2.0 | CC: | aos-bugs, jokerman, mifiedle, mmccomas |
| Target Milestone: | --- | ||
| Target Release: | --- | ||
| Hardware: | x86_64 | ||
| OS: | Linux | ||
| Whiteboard: | |||
| Fixed In Version: | Doc Type: | Bug Fix | |
| Doc Text: | Story Points: | --- | |
| Clone Of: | Environment: | ||
| Last Closed: | 2019-08-21 08:33:40 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: | |
Closing due to age. |
Description of problem: Duplicate messages appear in oc get pod --show-all=false -w when deleting a dc. Kind of a nit, but having to account for it in some automation. Version-Release number of selected component (if applicable): How reproducible: Always Steps to Reproduce: 1. Create an application from the django-ex template 2. oc get pod -w to verify it builds/deploys/runs 3. In a separate shell session oc delete dc/django-example Actual results: test1 django-example-2-ec80m 1/1 Terminating 0 25m test1 django-example-2-ec80m 1/1 Terminating 0 25m test1 django-example-2-ec80m 0/1 Terminating 0 25m test1 django-example-2-ec80m 0/1 Terminating 0 25m Expected results: 2 lines of output - one for the start of termination and one for the completion. kubectl get events --show-all=false -w for the same operation shows: test1 2016-03-03 14:55:20 -0500 EST 2016-03-03 14:55:20 -0500 EST 1 django-example-2 ReplicationController Normal SuccessfulDelete {replication-controller } Deleted pod: django-example-2-ec80m test1 2016-03-03 14:55:21 -0500 EST 2016-03-03 14:55:21 -0500 EST 1 django-example-2-ec80m Pod spec.containers{django-example} Normal Killing {kubelet ip-172-31-45-250.us-west-2.compute.internal} Killing container with docker id e38e37493ba3: Need to kill pod. Additional info: