Rename ConditionFull->ConditionTrue, ConditionNone->ConditionFalse

This commit is contained in:
Deyuan Deng
2015-03-23 14:33:55 -04:00
parent 064b7dec42
commit ca68f4a9d1
17 changed files with 152 additions and 98 deletions

View File

@@ -52,15 +52,15 @@ sane state but not allowed to accept new pods:
"conditions": [
{
"kind": "Reachable",
"status": "Full",
"status": "True",
},
{
"kind": "Ready",
"status": "Full",
"status": "True",
},
{
"kind": "Schedulable",
"status": "None",
"status": "False",
},
]
```