diff --git a/watcher/api/controllers/v1/action.py b/watcher/api/controllers/v1/action.py index f8baa3984..ef152c283 100644 --- a/watcher/api/controllers/v1/action.py +++ b/watcher/api/controllers/v1/action.py @@ -49,6 +49,10 @@ be one of the following: - **CANCELLED** : the :ref:`Action ` was in **PENDING** or **ONGOING** state and was cancelled by the :ref:`Administrator ` + +:ref:`Some default implementations are provided `, but it is +possible to :ref:`develop new implementations ` which +are dynamically loaded by Watcher at launch time. """ import datetime diff --git a/watcher/decision_engine/planner/base.py b/watcher/decision_engine/planner/base.py index c6358b192..8fd47eee3 100644 --- a/watcher/decision_engine/planner/base.py +++ b/watcher/decision_engine/planner/base.py @@ -37,6 +37,10 @@ congestion which may decrease the :ref:`SLA ` for It is also important to schedule :ref:`Actions ` in order to avoid security issues such as denial of service on core OpenStack services. +:ref:`Some default implementations are provided `, but it is +possible to :ref:`develop new implementations ` +which are dynamically loaded by Watcher at launch time. + See :doc:`../architecture` for more details on this component. """ diff --git a/watcher/decision_engine/strategy/strategies/base.py b/watcher/decision_engine/strategy/strategies/base.py index 7054819bf..375ae5336 100644 --- a/watcher/decision_engine/strategy/strategies/base.py +++ b/watcher/decision_engine/strategy/strategies/base.py @@ -30,6 +30,10 @@ to find an optimal :ref:`Solution `. When a new :ref:`Goal ` is added to the Watcher configuration, at least one default associated :ref:`Strategy ` should be provided as well. + +:ref:`Some default implementations are provided `, but it +is possible to :ref:`develop new implementations ` +which are dynamically loaded by Watcher at launch time. """ import abc