diff options
author | Scott Dodson <sdodson@redhat.com> | 2017-07-24 14:21:28 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-07-24 14:21:28 -0400 |
commit | 0883acb3dcd842a14089150b14760b02173edf72 (patch) | |
tree | 1a51a7a7947bf5cf030d41d0bcec60ce5e188e8d /inventory | |
parent | 6f9e95dd4f662264d7b0d2fc69be01a6835dbb6c (diff) | |
parent | 1facb7b9d5818ec307d43541821a7bf273dce8f8 (diff) | |
download | openshift-0883acb3dcd842a14089150b14760b02173edf72.tar.gz openshift-0883acb3dcd842a14089150b14760b02173edf72.tar.bz2 openshift-0883acb3dcd842a14089150b14760b02173edf72.tar.xz openshift-0883acb3dcd842a14089150b14760b02173edf72.zip |
Merge pull request #4847 from sdodson/optional-migrations
Allow storage migrations to be optional and/or non fatal
Diffstat (limited to 'inventory')
-rw-r--r-- | inventory/byo/hosts.origin.example | 8 | ||||
-rw-r--r-- | inventory/byo/hosts.ose.example | 8 |
2 files changed, 16 insertions, 0 deletions
diff --git a/inventory/byo/hosts.origin.example b/inventory/byo/hosts.origin.example index ff2bdb0c5..de7493f71 100644 --- a/inventory/byo/hosts.origin.example +++ b/inventory/byo/hosts.origin.example @@ -883,6 +883,14 @@ openshift_master_identity_providers=[{'name': 'htpasswd_auth', 'login': 'true', # openshift_upgrade_nodes_serial=4 openshift_upgrade_nodes_max_fail_percentage=49 # where as this would not # openshift_upgrade_nodes_serial=4 openshift_upgrade_nodes_max_fail_percentage=50 +# +# Multiple data migrations take place and if they fail they will fail the upgrade +# You may wish to disable these or make them non fatal +# +# openshift_upgrade_pre_storage_migration_enabled=true +# openshift_upgrade_pre_storage_migration_fatal==true +# openshift_upgrade_post_storage_migration_enabled=true +# openshift_upgrade_post_storage_migration_fatal==false # host group for masters [masters] diff --git a/inventory/byo/hosts.ose.example b/inventory/byo/hosts.ose.example index 68639eebf..62a364e0d 100644 --- a/inventory/byo/hosts.ose.example +++ b/inventory/byo/hosts.ose.example @@ -879,6 +879,14 @@ openshift_master_identity_providers=[{'name': 'htpasswd_auth', 'login': 'true', # openshift_upgrade_nodes_serial=4 openshift_upgrade_nodes_max_fail_percentage=49 # where as this would not # openshift_upgrade_nodes_serial=4 openshift_upgrade_nodes_max_fail_percentage=50 +# +# Multiple data migrations take place and if they fail they will fail the upgrade +# You may wish to disable these or make them non fatal +# +# openshift_upgrade_pre_storage_migration_enabled=true +# openshift_upgrade_pre_storage_migration_fatal==true +# openshift_upgrade_post_storage_migration_enabled=true +# openshift_upgrade_post_storage_migration_fatal==false # host group for masters [masters] |