Bug 1252520
| Summary: | Openshift master spawns pods when out of disk space | ||
|---|---|---|---|
| Product: | OpenShift Container Platform | Reporter: | Kenny Woodson <kwoodson> |
| Component: | Node | Assignee: | Paul Morie <pmorie> |
| Status: | CLOSED ERRATA | QA Contact: | DeShuai Ma <dma> |
| Severity: | medium | Docs Contact: | |
| Priority: | unspecified | ||
| Version: | 3.0.0 | CC: | agrimm, dma, dmcphers, jokerman, libra-bugs, libra-onpremise-devel, mmccomas, pep, sspeiche, tdawson |
| Target Milestone: | --- | ||
| Target Release: | --- | ||
| Hardware: | All | ||
| OS: | Linux | ||
| Whiteboard: | |||
| Fixed In Version: | Doc Type: | Bug Fix | |
| Doc Text: | Story Points: | --- | |
| Clone Of: | Environment: | ||
| Last Closed: | 2016-05-12 16:24:28 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: | |||
| Bug Depends On: | |||
| Bug Blocks: | 1303130, 1267746 | ||
|
Description
Kenny Woodson
2015-08-11 15:36:05 UTC
*** Bug 1248662 has been marked as a duplicate of this bug. *** The fix for this should be in master now that the latest rebase has landed, please retest. Verify on openshift v3.1.1.905
steps:
1. Get the node
[root@openshift-115 dma]# oc get node
NAME STATUS AGE
openshift-115.lab.sjc.redhat.com Ready,SchedulingDisabled 1d
openshift-136.lab.sjc.redhat.com Ready 1d
2.Create a rc and scale the pod replicas=0
[root@openshift-115 dma]# oc get rc -n dma
CONTROLLER CONTAINER(S) IMAGE(S) SELECTOR REPLICAS AGE
mysql-1 mysql brew-pulp-docker01.web.prod.ext.phx2.redhat.com:8888/rhscl/mysql-56-rhel7:latest deployment=mysql-1,deploymentconfig=mysql,name=mysql 0 18m
3.Create a large file to fill the disk with 100% usage
[root@openshift-136 ~]# df -lh
Filesystem Size Used Avail Use% Mounted on
/dev/mapper/rhel72-root 10G 10G 20K 100% /
devtmpfs 1.9G 0 1.9G 0% /dev
tmpfs 1.9G 0 1.9G 0% /dev/shm
tmpfs 1.9G 190M 1.7G 11% /run
tmpfs 1.9G 0 1.9G 0% /sys/fs/cgroup
/dev/vda1 497M 197M 300M 40% /boot
tmpfs 380M 0 380M 0% /run/user/0
4.Scale the rc with replicas=3
# oc scale rc/mysql-1 --replicas=3 -n dma
5. Check the pod status
[root@openshift-115 dma]# oc get pod -n dma
NAME READY STATUS RESTARTS AGE
mysql-1-8ss17 0/1 Pending 0 1m
mysql-1-aj620 0/1 Pending 0 1m
mysql-1-ufryk 0/1 Pending 0 1m
[root@openshift-115 dma]# oc describe pod/mysql-1-8ss17 -n dma|grep FailedScheduling
1m 33s 7 {default-scheduler } Warning FailedScheduling no nodes available to schedule pods
[root@openshift-115 dma]# oc describe pod/mysql-1-aj620 -n dma|grep FailedScheduling
2m 11s 12 {default-scheduler } Warning FailedScheduling no nodes available to schedule pods
[root@openshift-115 dma]# oc describe pod/mysql-1-ufryk -n dma|grep FailedScheduling
2m 14s 13 {default-scheduler } Warning FailedScheduling no nodes available to schedule pods
Since the problem described in this bug report should be resolved in a recent advisory, it has been closed with a resolution of ERRATA. For information on the advisory, and where to find the updated files, follow the link below. If the solution does not work for you, open a new bug report. https://access.redhat.com/errata/RHSA-2016:1064 |