diff options
| author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2017-09-25 04:32:28 -0700 | 
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-09-25 04:32:28 -0700 | 
| commit | c390d382a2c1783964179490eec810ee2206fa32 (patch) | |
| tree | 61f7c8cfa78d2f2b83746a90585a6310246148b8 /roles | |
| parent | 0b84e0d47b5912afb6db4f1964cbb06defcab09f (diff) | |
| parent | ce7061a316834b15752fc03feeeb387a487af51f (diff) | |
| download | openshift-c390d382a2c1783964179490eec810ee2206fa32.tar.gz openshift-c390d382a2c1783964179490eec810ee2206fa32.tar.bz2 openshift-c390d382a2c1783964179490eec810ee2206fa32.tar.xz openshift-c390d382a2c1783964179490eec810ee2206fa32.zip  | |
Merge pull request #5492 from jsafrane/local-storage-predicate
Automatic merge from submit-queue
Add 3.7 scheduler predicates
In 3.7 we added NoVolumeNodeConflict and  MaxAzureDiskVolumeCount predicate that needs to be installed.
Check carefully, I tested it on my virtual machine, but I did not manage to run the test.
Diffstat (limited to 'roles')
| -rw-r--r-- | roles/openshift_master_facts/lookup_plugins/openshift_master_facts_default_predicates.py | 17 | ||||
| -rw-r--r-- | roles/openshift_master_facts/test/openshift_master_facts_default_predicates_tests.py | 16 | 
2 files changed, 32 insertions, 1 deletions
diff --git a/roles/openshift_master_facts/lookup_plugins/openshift_master_facts_default_predicates.py b/roles/openshift_master_facts/lookup_plugins/openshift_master_facts_default_predicates.py index c45f255af..f27eb629d 100644 --- a/roles/openshift_master_facts/lookup_plugins/openshift_master_facts_default_predicates.py +++ b/roles/openshift_master_facts/lookup_plugins/openshift_master_facts_default_predicates.py @@ -101,7 +101,7 @@ class LookupModule(LookupBase):                  {'name': 'MatchInterPodAffinity'}              ]) -        if short_version in ['3.5', '3.6', '3.7']: +        if short_version in ['3.5', '3.6']:              predicates.extend([                  {'name': 'NoVolumeZoneConflict'},                  {'name': 'MaxEBSVolumeCount'}, @@ -114,6 +114,21 @@ class LookupModule(LookupBase):                  {'name': 'CheckNodeDiskPressure'},              ]) +        if short_version in ['3.7']: +            predicates.extend([ +                {'name': 'NoVolumeZoneConflict'}, +                {'name': 'MaxEBSVolumeCount'}, +                {'name': 'MaxGCEPDVolumeCount'}, +                {'name': 'MaxAzureDiskVolumeCount'}, +                {'name': 'MatchInterPodAffinity'}, +                {'name': 'NoDiskConflict'}, +                {'name': 'GeneralPredicates'}, +                {'name': 'PodToleratesNodeTaints'}, +                {'name': 'CheckNodeMemoryPressure'}, +                {'name': 'CheckNodeDiskPressure'}, +                {'name': 'NoVolumeNodeConflict'}, +            ]) +          if regions_enabled:              region_predicate = {                  'name': 'Region', diff --git a/roles/openshift_master_facts/test/openshift_master_facts_default_predicates_tests.py b/roles/openshift_master_facts/test/openshift_master_facts_default_predicates_tests.py index 4a28fb8f8..38a918803 100644 --- a/roles/openshift_master_facts/test/openshift_master_facts_default_predicates_tests.py +++ b/roles/openshift_master_facts/test/openshift_master_facts_default_predicates_tests.py @@ -57,6 +57,20 @@ DEFAULT_PREDICATES_1_5 = [  DEFAULT_PREDICATES_3_6 = DEFAULT_PREDICATES_1_5 +DEFAULT_PREDICATES_3_7 = [ +    {'name': 'NoVolumeZoneConflict'}, +    {'name': 'MaxEBSVolumeCount'}, +    {'name': 'MaxGCEPDVolumeCount'}, +    {'name': 'MaxAzureDiskVolumeCount'}, +    {'name': 'MatchInterPodAffinity'}, +    {'name': 'NoDiskConflict'}, +    {'name': 'GeneralPredicates'}, +    {'name': 'PodToleratesNodeTaints'}, +    {'name': 'CheckNodeMemoryPressure'}, +    {'name': 'CheckNodeDiskPressure'}, +    {'name': 'NoVolumeNodeConflict'}, +] +  REGION_PREDICATE = {      'name': 'Region',      'argument': { @@ -79,6 +93,8 @@ TEST_VARS = [      ('3.5', 'openshift-enterprise', DEFAULT_PREDICATES_1_5),      ('3.6', 'origin', DEFAULT_PREDICATES_3_6),      ('3.6', 'openshift-enterprise', DEFAULT_PREDICATES_3_6), +    ('3.7', 'origin', DEFAULT_PREDICATES_3_7), +    ('3.7', 'openshift-enterprise', DEFAULT_PREDICATES_3_7),  ]  | 
