Merge "Remove mesos API validation"

This commit is contained in:
Zuul 2022-03-03 10:39:40 +00:00 committed by Gerrit Code Review
commit 4b4ab60bb2
2 changed files with 6 additions and 2 deletions

View File

@ -256,8 +256,6 @@ class Validator(object):
return K8sValidator()
elif coe == 'swarm' or coe == 'swarm-mode':
return SwarmValidator()
elif coe == 'mesos':
return MesosValidator()
else:
raise exception.InvalidParameterValue(
_('Requested COE type %s is not supported.') % coe)

View File

@ -0,0 +1,6 @@
---
deprecations:
- |
Remove mesos from the API. This means new clusters of coe type 'mesos'
cannot be created.
The mesos driver will be removed in the next release.