Skip to content

Commit

Permalink
Merge pull request #1047 from sdodson/oa-issue656
Browse files Browse the repository at this point in the history
Add scheduler kind and apiversion to 3.0.2/1.0.5 upgrade
  • Loading branch information
adellape committed Oct 14, 2015
2 parents 75fd1e8 + 3452d7f commit bcf03c4
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions install_config/upgrades.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -612,6 +612,29 @@ networkConfig:
----
====

*Add Scheduler Config API version*

The scheduler configuration file incorrectly lacked `*kind*` and `*apiVersion*`
fields when deployed with the quick or advanced installer. This will affect
future upgrades so it's important to add those values if they don't exist.

Modify *_/etc/openshift/master/scheduler.json_* to add the `*kind*` and `*apiVersion*`
fields.

====
----
{
"kind": "Policy", <1>
"apiVersion": "v1", <2>
"predicates": [
...
}
----
====
<1> Add `*"kind": "Policy",*`
<2> Add `*"apiVersin": "v1",*`


[[upgrade-playbook]]
== Automated Upgrade Playbook
ifdef::openshift-enterprise[]
Expand Down

0 comments on commit bcf03c4

Please sign in to comment.