Compare commits
107 Commits
12.0.0.0rc
...
stable/202
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
024815af71 | ||
|
|
ffec800f59 | ||
|
|
defd3953d8 | ||
|
|
de75a2a5b2 | ||
|
|
7c15812d68 | ||
|
|
c47f6fb66c | ||
|
|
a4ece6f084 | ||
|
|
758acdfb99 | ||
|
|
b65cfc283a | ||
|
|
f5a21ba43e | ||
|
|
ba417b38bf | ||
|
|
38622442f2 | ||
|
|
c7fde92411 | ||
|
|
e5b5ff5d56 | ||
|
|
3a923dbf16 | ||
|
|
fb85b27ae3 | ||
|
|
53872f9af2 | ||
|
|
c0ebb8ddb3 | ||
|
|
1d7f163651 | ||
|
|
c6ceaacf27 | ||
|
|
f4bfb10525 | ||
|
|
8a99d4c5c1 | ||
|
|
ce9f0b4c1e | ||
|
|
e385ece629 | ||
|
|
c6505ad06f | ||
|
|
64f70b948d | ||
|
|
68c9ce65d2 | ||
|
|
5fa0926528 | ||
|
|
f2ee231f14 | ||
|
|
3861701f4a | ||
|
|
d167134265 | ||
|
|
bbf5c41cab | ||
|
|
df3d67a4ed | ||
|
|
82f1c720dd | ||
|
|
77a30ef281 | ||
|
|
383751904c | ||
|
|
6a1f19d314 | ||
|
|
342fe8882a | ||
|
|
7fcca0cc46 | ||
|
|
977f014cba | ||
|
|
753c44b0c4 | ||
|
|
dd0082c343 | ||
|
|
5f6fbaea56 | ||
|
|
6b81b34b27 | ||
|
|
961bbb9460 | ||
|
|
d56e8ee65a | ||
|
|
4527f89d8d | ||
|
|
e535177bc0 | ||
|
|
022d150d20 | ||
|
|
136e5d927c | ||
|
|
1968334b29 | ||
|
|
0b78f31e3a | ||
|
|
56b8c1211a | ||
|
|
3f26dc47f2 | ||
|
|
1b6f723cc3 | ||
|
|
d6cb38289e | ||
|
|
406be36c45 | ||
|
|
6bb761a803 | ||
|
|
a169d42b1f | ||
|
|
4827d6e766 | ||
|
|
2a2db362e3 | ||
|
|
32756dc7b4 | ||
|
|
ee447a2281 | ||
|
|
4d8bb57c8d | ||
|
|
70ba13ca6d | ||
|
|
da23fdc621 | ||
|
|
2ab27c0dfe | ||
|
|
811a704f80 | ||
|
|
99fea33fac | ||
|
|
9d37d705e4 | ||
|
|
fbb290b223 | ||
|
|
c80c940a4f | ||
|
|
f07694ba6c | ||
|
|
9abec18c8b | ||
|
|
1f8d06e075 | ||
|
|
29c94c102b | ||
|
|
3f3e660367 | ||
|
|
2eefaeed14 | ||
|
|
5fadd0de57 | ||
|
|
c5edad2246 | ||
|
|
405bb93030 | ||
|
|
5f79ab87c7 | ||
|
|
4d5022ab94 | ||
|
|
6adaedf696 | ||
|
|
f3ff65f233 | ||
|
|
b5e45b43b9 | ||
|
|
61afdd3df7 | ||
|
|
e8f9e31541 | ||
|
|
38288dd9c8 | ||
|
|
9d8b990fd1 | ||
|
|
0f96f99404 | ||
|
|
57177aebb2 | ||
|
|
2c4fb7a990 | ||
|
|
61a7dd85ca | ||
|
|
a7dd51390c | ||
|
|
a47cedecfa | ||
|
|
566a830f64 | ||
|
|
5c627a3aa3 | ||
|
|
a9dc3794a6 | ||
|
|
d6f169197e | ||
|
|
2bc49149b3 | ||
|
|
bc5922c684 | ||
|
|
f0935fb3e1 | ||
|
|
762686e99e | ||
|
|
0f0527abc1 | ||
|
|
6e26e41519 | ||
|
|
954fc282ee |
@@ -2,3 +2,4 @@
|
|||||||
host=review.opendev.org
|
host=review.opendev.org
|
||||||
port=29418
|
port=29418
|
||||||
project=openstack/watcher.git
|
project=openstack/watcher.git
|
||||||
|
defaultbranch=stable/2025.1
|
||||||
|
|||||||
62
.pre-commit-config.yaml
Normal file
62
.pre-commit-config.yaml
Normal file
@@ -0,0 +1,62 @@
|
|||||||
|
---
|
||||||
|
repos:
|
||||||
|
- repo: https://github.com/pre-commit/pre-commit-hooks
|
||||||
|
rev: v5.0.0
|
||||||
|
hooks:
|
||||||
|
# whitespace
|
||||||
|
- id: trailing-whitespace
|
||||||
|
- id: mixed-line-ending
|
||||||
|
args: ['--fix', 'lf']
|
||||||
|
exclude: '.*\.(svg)$'
|
||||||
|
- id: check-byte-order-marker
|
||||||
|
# file format and permissions
|
||||||
|
- id: check-ast
|
||||||
|
- id: debug-statements
|
||||||
|
- id: check-json
|
||||||
|
files: .*\.json$
|
||||||
|
- id: check-yaml
|
||||||
|
files: .*\.(yaml|yml)$
|
||||||
|
- id: check-executables-have-shebangs
|
||||||
|
- id: check-shebang-scripts-are-executable
|
||||||
|
# git
|
||||||
|
- id: check-added-large-files
|
||||||
|
- id: check-case-conflict
|
||||||
|
- id: detect-private-key
|
||||||
|
- id: check-merge-conflict
|
||||||
|
- repo: https://github.com/Lucas-C/pre-commit-hooks
|
||||||
|
rev: v1.5.5
|
||||||
|
hooks:
|
||||||
|
- id: remove-tabs
|
||||||
|
exclude: '.*\.(svg)$'
|
||||||
|
- repo: https://opendev.org/openstack/hacking
|
||||||
|
rev: 7.0.0
|
||||||
|
hooks:
|
||||||
|
- id: hacking
|
||||||
|
additional_dependencies: []
|
||||||
|
exclude: '^(doc|releasenotes|tools)/.*$'
|
||||||
|
- repo: https://github.com/PyCQA/bandit
|
||||||
|
rev: 1.7.6
|
||||||
|
hooks:
|
||||||
|
- id: bandit
|
||||||
|
args: ['-x', 'tests', '-s', 'B101,B311,B320']
|
||||||
|
- repo: https://github.com/hhatto/autopep8
|
||||||
|
rev: v2.3.1
|
||||||
|
hooks:
|
||||||
|
- id: autopep8
|
||||||
|
files: '^.*\.py$'
|
||||||
|
- repo: https://github.com/codespell-project/codespell
|
||||||
|
rev: v2.3.0
|
||||||
|
hooks:
|
||||||
|
- id: codespell
|
||||||
|
args: ['--ignore-words=doc/dictionary.txt']
|
||||||
|
- repo: https://github.com/sphinx-contrib/sphinx-lint
|
||||||
|
rev: v1.0.0
|
||||||
|
hooks:
|
||||||
|
- id: sphinx-lint
|
||||||
|
args: [--enable=default-role]
|
||||||
|
files: ^doc/|releasenotes|api-guide
|
||||||
|
types: [rst]
|
||||||
|
- repo: https://github.com/PyCQA/doc8
|
||||||
|
rev: v1.1.2
|
||||||
|
hooks:
|
||||||
|
- id: doc8
|
||||||
196
.zuul.yaml
196
.zuul.yaml
@@ -9,87 +9,37 @@
|
|||||||
check:
|
check:
|
||||||
jobs:
|
jobs:
|
||||||
- watcher-tempest-functional
|
- watcher-tempest-functional
|
||||||
|
- watcher-tempest-functional-jammy
|
||||||
- watcher-grenade
|
- watcher-grenade
|
||||||
- watcher-tempest-strategies
|
- watcher-tempest-strategies
|
||||||
- watcher-tempest-actuator
|
- watcher-tempest-actuator
|
||||||
- watcherclient-tempest-functional
|
- watcherclient-tempest-functional
|
||||||
- watcher-tempest-functional-ipv6-only
|
- watcher-tempest-functional-ipv6-only
|
||||||
|
- watcher-prometheus-integration
|
||||||
gate:
|
gate:
|
||||||
jobs:
|
jobs:
|
||||||
- watcher-tempest-functional
|
- watcher-tempest-functional
|
||||||
|
- watcher-tempest-functional-jammy
|
||||||
- watcher-tempest-functional-ipv6-only
|
- watcher-tempest-functional-ipv6-only
|
||||||
|
|
||||||
- job:
|
|
||||||
name: watcher-tempest-dummy_optim
|
|
||||||
parent: watcher-tempest-multinode
|
|
||||||
vars:
|
|
||||||
tempest_test_regex: watcher_tempest_plugin.tests.scenario.test_execute_dummy_optim
|
|
||||||
|
|
||||||
- job:
|
- job:
|
||||||
name: watcher-tempest-actuator
|
name: watcher-tempest-actuator
|
||||||
parent: watcher-tempest-multinode
|
parent: watcher-tempest-multinode
|
||||||
vars:
|
vars:
|
||||||
tempest_test_regex: watcher_tempest_plugin.tests.scenario.test_execute_actuator
|
tempest_test_regex: watcher_tempest_plugin.tests.scenario.test_execute_actuator
|
||||||
|
|
||||||
- job:
|
|
||||||
name: watcher-tempest-basic_optim
|
|
||||||
parent: watcher-tempest-multinode
|
|
||||||
vars:
|
|
||||||
tempest_test_regex: watcher_tempest_plugin.tests.scenario.test_execute_basic_optim
|
|
||||||
|
|
||||||
- job:
|
|
||||||
name: watcher-tempest-vm_workload_consolidation
|
|
||||||
parent: watcher-tempest-multinode
|
|
||||||
vars:
|
|
||||||
tempest_test_regex: watcher_tempest_plugin.tests.scenario.test_execute_vm_workload_consolidation
|
|
||||||
devstack_local_conf:
|
|
||||||
test-config:
|
|
||||||
$WATCHER_CONFIG:
|
|
||||||
watcher_strategies.vm_workload_consolidation:
|
|
||||||
datasource: ceilometer
|
|
||||||
|
|
||||||
- job:
|
|
||||||
name: watcher-tempest-workload_balancing
|
|
||||||
parent: watcher-tempest-multinode
|
|
||||||
vars:
|
|
||||||
tempest_test_regex: watcher_tempest_plugin.tests.scenario.test_execute_workload_balancing
|
|
||||||
|
|
||||||
- job:
|
|
||||||
name: watcher-tempest-zone_migration
|
|
||||||
parent: watcher-tempest-multinode
|
|
||||||
vars:
|
|
||||||
tempest_test_regex: watcher_tempest_plugin.tests.scenario.test_execute_zone_migration
|
|
||||||
|
|
||||||
- job:
|
|
||||||
name: watcher-tempest-host_maintenance
|
|
||||||
parent: watcher-tempest-multinode
|
|
||||||
vars:
|
|
||||||
tempest_test_regex: watcher_tempest_plugin.tests.scenario.test_execute_host_maintenance
|
|
||||||
|
|
||||||
- job:
|
|
||||||
name: watcher-tempest-storage_balance
|
|
||||||
parent: watcher-tempest-multinode
|
|
||||||
vars:
|
|
||||||
tempest_test_regex: watcher_tempest_plugin.tests.scenario.test_execute_storage_balance
|
|
||||||
devstack_local_conf:
|
|
||||||
test-config:
|
|
||||||
$TEMPEST_CONFIG:
|
|
||||||
volume:
|
|
||||||
backend_names: ['BACKEND_1', 'BACKEND_2']
|
|
||||||
volume-feature-enabled:
|
|
||||||
multi_backend: true
|
|
||||||
|
|
||||||
- job:
|
- job:
|
||||||
name: watcher-tempest-strategies
|
name: watcher-tempest-strategies
|
||||||
parent: watcher-tempest-multinode
|
parent: watcher-tempest-multinode
|
||||||
vars:
|
vars:
|
||||||
tempest_concurrency: 1
|
tempest_concurrency: 1
|
||||||
tempest_test_regex: watcher_tempest_plugin.tests.scenario.test_execute_strategies
|
tempest_test_regex: watcher_tempest_plugin.tests.scenario.test_execute_strategies
|
||||||
|
tempest_exclude_regex: .*\[.*\breal_load\b.*\].*
|
||||||
|
|
||||||
- job:
|
- job:
|
||||||
name: watcher-tempest-multinode
|
name: watcher-tempest-multinode
|
||||||
parent: watcher-tempest-functional
|
parent: watcher-tempest-functional
|
||||||
nodeset: openstack-two-node-jammy
|
nodeset: openstack-two-node-noble
|
||||||
roles:
|
roles:
|
||||||
- zuul: openstack/tempest
|
- zuul: openstack/tempest
|
||||||
group-vars:
|
group-vars:
|
||||||
@@ -170,6 +120,17 @@
|
|||||||
zuul_copy_output:
|
zuul_copy_output:
|
||||||
/etc/hosts: logs
|
/etc/hosts: logs
|
||||||
|
|
||||||
|
# TODO(gmann): As per the 2025.1 testing runtime, we need to run at least
|
||||||
|
# one job on jammy. This job can be removed in the next cycle(2025.2)
|
||||||
|
- job:
|
||||||
|
name: watcher-tempest-functional-jammy
|
||||||
|
description: This is integrated job testing on Ubuntu jammy(22.04)
|
||||||
|
parent: watcher-tempest-functional
|
||||||
|
nodeset: openstack-single-node-jammy
|
||||||
|
vars:
|
||||||
|
<<: *base_vars
|
||||||
|
python_version: '3.9'
|
||||||
|
|
||||||
- job:
|
- job:
|
||||||
name: watcher-tempest-functional-ipv6-only
|
name: watcher-tempest-functional-ipv6-only
|
||||||
parent: devstack-tempest-ipv6
|
parent: devstack-tempest-ipv6
|
||||||
@@ -186,7 +147,7 @@
|
|||||||
- openstack/python-watcherclient
|
- openstack/python-watcherclient
|
||||||
- openstack/watcher-tempest-plugin
|
- openstack/watcher-tempest-plugin
|
||||||
vars: *base_vars
|
vars: *base_vars
|
||||||
irrelevant-files:
|
irrelevant-files: &irrelevent_files
|
||||||
- ^(test-|)requirements.txt$
|
- ^(test-|)requirements.txt$
|
||||||
- ^.*\.rst$
|
- ^.*\.rst$
|
||||||
- ^api-ref/.*$
|
- ^api-ref/.*$
|
||||||
@@ -206,3 +167,126 @@
|
|||||||
vars:
|
vars:
|
||||||
tempest_concurrency: 1
|
tempest_concurrency: 1
|
||||||
tempest_test_regex: watcher_tempest_plugin.tests.client_functional
|
tempest_test_regex: watcher_tempest_plugin.tests.client_functional
|
||||||
|
|
||||||
|
- job:
|
||||||
|
name: watcher-sg-core-tempest-base
|
||||||
|
parent: devstack-tempest
|
||||||
|
nodeset: openstack-two-node-noble
|
||||||
|
description: |
|
||||||
|
This job is for testing watcher and sg-core/prometheus installation
|
||||||
|
abstract: true
|
||||||
|
pre-run:
|
||||||
|
- playbooks/generate_prometheus_config.yml
|
||||||
|
irrelevant-files: *irrelevent_files
|
||||||
|
timeout: 7800
|
||||||
|
required-projects: &base_sg_required_projects
|
||||||
|
- openstack/aodh
|
||||||
|
- openstack/ceilometer
|
||||||
|
- openstack/tempest
|
||||||
|
- openstack-k8s-operators/sg-core
|
||||||
|
- openstack/watcher
|
||||||
|
- openstack/python-watcherclient
|
||||||
|
- openstack/watcher-tempest-plugin
|
||||||
|
- openstack/devstack-plugin-prometheus
|
||||||
|
vars:
|
||||||
|
configure_swap_size: 8192
|
||||||
|
devstack_plugins:
|
||||||
|
ceilometer: https://opendev.org/openstack/ceilometer
|
||||||
|
aodh: https://opendev.org/openstack/aodh
|
||||||
|
sg-core: https://github.com/openstack-k8s-operators/sg-core
|
||||||
|
watcher: https://opendev.org/openstack/watcher
|
||||||
|
devstack-plugin-prometheus: https://opendev.org/openstack/devstack-plugin-prometheus
|
||||||
|
devstack_services:
|
||||||
|
watcher-api: true
|
||||||
|
watcher-decision-engine: true
|
||||||
|
watcher-applier: true
|
||||||
|
tempest: true
|
||||||
|
# We do not need Swift in this job so disable it for speed
|
||||||
|
# Swift services
|
||||||
|
s-account: false
|
||||||
|
s-container: false
|
||||||
|
s-object: false
|
||||||
|
s-proxy: false
|
||||||
|
# Prometheus related service
|
||||||
|
prometheus: true
|
||||||
|
node_exporter: true
|
||||||
|
devstack_localrc:
|
||||||
|
CEILOMETER_BACKENDS: "sg-core"
|
||||||
|
CEILOMETER_PIPELINE_INTERVAL: 15
|
||||||
|
CEILOMETER_ALARM_THRESHOLD: 6000000000
|
||||||
|
PROMETHEUS_CONFIG_FILE: "/home/zuul/prometheus.yml"
|
||||||
|
# Disable sg_core prometheus config copy
|
||||||
|
PROMETHEUS_ENABLE: false
|
||||||
|
# PROMETHEUS_CONFIG_FILE var conflicts with sg_core var
|
||||||
|
# to avoid issue, set PROMETHEUS_CONF_DIR
|
||||||
|
PROMETHEUS_CONF_DIR: "/home/zuul"
|
||||||
|
devstack_local_conf:
|
||||||
|
post-config:
|
||||||
|
$WATCHER_CONF:
|
||||||
|
watcher_datasources:
|
||||||
|
datasources: prometheus
|
||||||
|
prometheus_client:
|
||||||
|
host: 127.0.0.1
|
||||||
|
port: 9090
|
||||||
|
watcher_cluster_data_model_collectors.compute:
|
||||||
|
period: 120
|
||||||
|
watcher_cluster_data_model_collectors.baremetal:
|
||||||
|
period: 120
|
||||||
|
watcher_cluster_data_model_collectors.storage:
|
||||||
|
period: 120
|
||||||
|
test-config:
|
||||||
|
$TEMPEST_CONFIG:
|
||||||
|
compute:
|
||||||
|
min_compute_nodes: 2
|
||||||
|
min_microversion: 2.56
|
||||||
|
compute-feature-enabled:
|
||||||
|
live_migration: true
|
||||||
|
block_migration_for_live_migration: true
|
||||||
|
placement:
|
||||||
|
min_microversion: 1.29
|
||||||
|
service_available:
|
||||||
|
sg_core: True
|
||||||
|
telemetry_services:
|
||||||
|
metric_backends: prometheus
|
||||||
|
telemetry:
|
||||||
|
disable_ssl_certificate_validation: True
|
||||||
|
ceilometer_polling_interval: 15
|
||||||
|
optimize:
|
||||||
|
datasource: prometheus
|
||||||
|
tempest_plugins:
|
||||||
|
- watcher-tempest-plugin
|
||||||
|
tempest_test_regex: watcher_tempest_plugin.tests.scenario.test_execute_strategies
|
||||||
|
tempest_exclude_regex: .*\[.*\breal_load\b.*\].*
|
||||||
|
tempest_concurrency: 1
|
||||||
|
tox_envlist: all
|
||||||
|
zuul_copy_output:
|
||||||
|
/etc/prometheus/prometheus.yml: logs
|
||||||
|
group-vars:
|
||||||
|
subnode:
|
||||||
|
devstack_plugins:
|
||||||
|
ceilometer: https://opendev.org/openstack/ceilometer
|
||||||
|
devstack-plugin-prometheus: https://opendev.org/openstack/devstack-plugin-prometheus
|
||||||
|
devstack_services:
|
||||||
|
ceilometer-acompute: true
|
||||||
|
sg-core: false
|
||||||
|
prometheus: false
|
||||||
|
node_exporter: true
|
||||||
|
devstack_localrc:
|
||||||
|
CEILOMETER_BACKEND: "none"
|
||||||
|
CEILOMETER_BACKENDS: "none"
|
||||||
|
# avoid collecting real host cpu metric since tests
|
||||||
|
# will inject fake metrics when needed
|
||||||
|
NODE_EXPORTER_COLLECTOR_EXCLUDE: "cpu"
|
||||||
|
devstack_local_conf:
|
||||||
|
post-config:
|
||||||
|
$WATCHER_CONF:
|
||||||
|
watcher_cluster_data_model_collectors.compute:
|
||||||
|
period: 120
|
||||||
|
watcher_cluster_data_model_collectors.baremetal:
|
||||||
|
period: 120
|
||||||
|
watcher_cluster_data_model_collectors.storage:
|
||||||
|
period: 120
|
||||||
|
|
||||||
|
- job:
|
||||||
|
name: watcher-prometheus-integration
|
||||||
|
parent: watcher-sg-core-tempest-base
|
||||||
|
|||||||
@@ -30,7 +30,7 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"auto_trigger": false,
|
"auto_trigger": false,
|
||||||
"force": false,
|
"force": false,
|
||||||
"uuid": "65a5da84-5819-4aea-8278-a28d2b489028",
|
"uuid": "65a5da84-5819-4aea-8278-a28d2b489028",
|
||||||
"goal_name": "workload_balancing",
|
"goal_name": "workload_balancing",
|
||||||
"scope": [],
|
"scope": [],
|
||||||
|
|||||||
@@ -13,9 +13,9 @@
|
|||||||
"node_vcpu_ratio": "16.0",
|
"node_vcpu_ratio": "16.0",
|
||||||
"node_memory": "16383",
|
"node_memory": "16383",
|
||||||
"node_memory_ratio": "1.5",
|
"node_memory_ratio": "1.5",
|
||||||
"node_disk": "37"
|
"node_disk": "37",
|
||||||
"node_disk_ratio": "1.0",
|
"node_disk_ratio": "1.0",
|
||||||
"node_state": "up",
|
"node_state": "up"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"server_uuid": "e2cb5f6f-fa1d-4ba2-be1e-0bf02fa86ba4",
|
"server_uuid": "e2cb5f6f-fa1d-4ba2-be1e-0bf02fa86ba4",
|
||||||
@@ -30,9 +30,9 @@
|
|||||||
"node_vcpu_ratio": "16.0",
|
"node_vcpu_ratio": "16.0",
|
||||||
"node_memory": "16383",
|
"node_memory": "16383",
|
||||||
"node_memory_ratio": "1.5",
|
"node_memory_ratio": "1.5",
|
||||||
"node_disk": "37"
|
"node_disk": "37",
|
||||||
"node_disk_ratio": "1.0",
|
"node_disk_ratio": "1.0",
|
||||||
"node_state": "up",
|
"node_state": "up"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -12,7 +12,7 @@ Here are some examples of ``Goals``:
|
|||||||
- minimize the energy consumption
|
- minimize the energy consumption
|
||||||
- minimize the number of compute nodes (consolidation)
|
- minimize the number of compute nodes (consolidation)
|
||||||
- balance the workload among compute nodes
|
- balance the workload among compute nodes
|
||||||
- minimize the license cost (some softwares have a licensing model which is
|
- minimize the license cost (some software have a licensing model which is
|
||||||
based on the number of sockets or cores where the software is deployed)
|
based on the number of sockets or cores where the software is deployed)
|
||||||
- find the most appropriate moment for a planned maintenance on a
|
- find the most appropriate moment for a planned maintenance on a
|
||||||
given group of host (which may be an entire availability zone):
|
given group of host (which may be an entire availability zone):
|
||||||
@@ -123,4 +123,4 @@ Response
|
|||||||
**Example JSON representation of a Goal:**
|
**Example JSON representation of a Goal:**
|
||||||
|
|
||||||
.. literalinclude:: samples/goal-show-response.json
|
.. literalinclude:: samples/goal-show-response.json
|
||||||
:language: javascript
|
:language: javascript
|
||||||
|
|||||||
@@ -1,5 +1,3 @@
|
|||||||
#!/bin/bash
|
|
||||||
#
|
|
||||||
# lib/watcher
|
# lib/watcher
|
||||||
# Functions to control the configuration and operation of the watcher services
|
# Functions to control the configuration and operation of the watcher services
|
||||||
|
|
||||||
@@ -38,7 +36,6 @@ GITBRANCH["python-watcherclient"]=${WATCHERCLIENT_BRANCH:-master}
|
|||||||
GITDIR["python-watcherclient"]=$DEST/python-watcherclient
|
GITDIR["python-watcherclient"]=$DEST/python-watcherclient
|
||||||
|
|
||||||
WATCHER_STATE_PATH=${WATCHER_STATE_PATH:=$DATA_DIR/watcher}
|
WATCHER_STATE_PATH=${WATCHER_STATE_PATH:=$DATA_DIR/watcher}
|
||||||
WATCHER_AUTH_CACHE_DIR=${WATCHER_AUTH_CACHE_DIR:-/var/cache/watcher}
|
|
||||||
|
|
||||||
WATCHER_CONF_DIR=/etc/watcher
|
WATCHER_CONF_DIR=/etc/watcher
|
||||||
WATCHER_CONF=$WATCHER_CONF_DIR/watcher.conf
|
WATCHER_CONF=$WATCHER_CONF_DIR/watcher.conf
|
||||||
@@ -58,11 +55,7 @@ else
|
|||||||
WATCHER_BIN_DIR=$(get_python_exec_prefix)
|
WATCHER_BIN_DIR=$(get_python_exec_prefix)
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# There are 2 modes, which is "uwsgi" which runs with an apache
|
WATCHER_UWSGI=watcher.wsgi.api:application
|
||||||
# proxy uwsgi in front of it, or "mod_wsgi", which runs in
|
|
||||||
# apache. mod_wsgi is deprecated, don't use it.
|
|
||||||
WATCHER_USE_WSGI_MODE=${WATCHER_USE_WSGI_MODE:-$WSGI_MODE}
|
|
||||||
WATCHER_UWSGI=$WATCHER_BIN_DIR/watcher-api-wsgi
|
|
||||||
WATCHER_UWSGI_CONF=$WATCHER_CONF_DIR/watcher-uwsgi.ini
|
WATCHER_UWSGI_CONF=$WATCHER_CONF_DIR/watcher-uwsgi.ini
|
||||||
|
|
||||||
if is_suse; then
|
if is_suse; then
|
||||||
@@ -76,11 +69,7 @@ WATCHER_SERVICE_PORT=${WATCHER_SERVICE_PORT:-9322}
|
|||||||
WATCHER_SERVICE_PORT_INT=${WATCHER_SERVICE_PORT_INT:-19322}
|
WATCHER_SERVICE_PORT_INT=${WATCHER_SERVICE_PORT_INT:-19322}
|
||||||
WATCHER_SERVICE_PROTOCOL=${WATCHER_SERVICE_PROTOCOL:-$SERVICE_PROTOCOL}
|
WATCHER_SERVICE_PROTOCOL=${WATCHER_SERVICE_PROTOCOL:-$SERVICE_PROTOCOL}
|
||||||
|
|
||||||
if [[ "$WATCHER_USE_WSGI_MODE" == "uwsgi" ]]; then
|
WATCHER_API_URL="$WATCHER_SERVICE_PROTOCOL://$WATCHER_SERVICE_HOST/infra-optim"
|
||||||
WATCHER_API_URL="$WATCHER_SERVICE_PROTOCOL://$WATCHER_SERVICE_HOST/infra-optim"
|
|
||||||
else
|
|
||||||
WATCHER_API_URL="$WATCHER_SERVICE_PROTOCOL://$WATCHER_SERVICE_HOST:$WATCHER_SERVICE_PORT"
|
|
||||||
fi
|
|
||||||
|
|
||||||
# Entry Points
|
# Entry Points
|
||||||
# ------------
|
# ------------
|
||||||
@@ -103,12 +92,8 @@ function _cleanup_watcher_apache_wsgi {
|
|||||||
# cleanup_watcher() - Remove residual data files, anything left over from previous
|
# cleanup_watcher() - Remove residual data files, anything left over from previous
|
||||||
# runs that a clean run would need to clean up
|
# runs that a clean run would need to clean up
|
||||||
function cleanup_watcher {
|
function cleanup_watcher {
|
||||||
sudo rm -rf $WATCHER_STATE_PATH $WATCHER_AUTH_CACHE_DIR
|
sudo rm -rf $WATCHER_STATE_PATH
|
||||||
if [[ "$WATCHER_USE_WSGI_MODE" == "uwsgi" ]]; then
|
remove_uwsgi_config "$WATCHER_UWSGI_CONF" "$WATCHER_UWSGI"
|
||||||
remove_uwsgi_config "$WATCHER_UWSGI_CONF" "$WATCHER_UWSGI"
|
|
||||||
else
|
|
||||||
_cleanup_watcher_apache_wsgi
|
|
||||||
fi
|
|
||||||
}
|
}
|
||||||
|
|
||||||
# configure_watcher() - Set config files, create data dirs, etc
|
# configure_watcher() - Set config files, create data dirs, etc
|
||||||
@@ -157,31 +142,6 @@ function create_watcher_accounts {
|
|||||||
"$WATCHER_API_URL"
|
"$WATCHER_API_URL"
|
||||||
}
|
}
|
||||||
|
|
||||||
# _config_watcher_apache_wsgi() - Set WSGI config files of watcher
|
|
||||||
function _config_watcher_apache_wsgi {
|
|
||||||
local watcher_apache_conf
|
|
||||||
if [[ "$WATCHER_USE_WSGI_MODE" == "mod_wsgi" ]]; then
|
|
||||||
local service_port=$WATCHER_SERVICE_PORT
|
|
||||||
if is_service_enabled tls-proxy; then
|
|
||||||
service_port=$WATCHER_SERVICE_PORT_INT
|
|
||||||
service_protocol="http"
|
|
||||||
fi
|
|
||||||
sudo mkdir -p $WATCHER_WSGI_DIR
|
|
||||||
sudo cp $WATCHER_DIR/watcher/api/app.wsgi $WATCHER_WSGI_DIR/app.wsgi
|
|
||||||
watcher_apache_conf=$(apache_site_config_for watcher-api)
|
|
||||||
sudo cp $WATCHER_DEVSTACK_FILES_DIR/apache-watcher-api.template $watcher_apache_conf
|
|
||||||
sudo sed -e "
|
|
||||||
s|%WATCHER_SERVICE_PORT%|$service_port|g;
|
|
||||||
s|%WATCHER_WSGI_DIR%|$WATCHER_WSGI_DIR|g;
|
|
||||||
s|%USER%|$STACK_USER|g;
|
|
||||||
s|%APIWORKERS%|$API_WORKERS|g;
|
|
||||||
s|%APACHE_NAME%|$APACHE_NAME|g;
|
|
||||||
" -i $watcher_apache_conf
|
|
||||||
enable_apache_site watcher-api
|
|
||||||
fi
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
# create_watcher_conf() - Create a new watcher.conf file
|
# create_watcher_conf() - Create a new watcher.conf file
|
||||||
function create_watcher_conf {
|
function create_watcher_conf {
|
||||||
# (Re)create ``watcher.conf``
|
# (Re)create ``watcher.conf``
|
||||||
@@ -199,19 +159,14 @@ function create_watcher_conf {
|
|||||||
iniset $WATCHER_CONF api host "$(ipv6_unquote $WATCHER_SERVICE_HOST)"
|
iniset $WATCHER_CONF api host "$(ipv6_unquote $WATCHER_SERVICE_HOST)"
|
||||||
iniset $WATCHER_CONF api port "$WATCHER_SERVICE_PORT_INT"
|
iniset $WATCHER_CONF api port "$WATCHER_SERVICE_PORT_INT"
|
||||||
# iniset $WATCHER_CONF api enable_ssl_api "True"
|
# iniset $WATCHER_CONF api enable_ssl_api "True"
|
||||||
else
|
|
||||||
if [[ "$WATCHER_USE_WSGI_MODE" == "mod_wsgi" ]]; then
|
|
||||||
iniset $WATCHER_CONF api host "$(ipv6_unquote $WATCHER_SERVICE_HOST)"
|
|
||||||
iniset $WATCHER_CONF api port "$WATCHER_SERVICE_PORT"
|
|
||||||
fi
|
|
||||||
fi
|
fi
|
||||||
|
|
||||||
iniset $WATCHER_CONF oslo_policy policy_file $WATCHER_POLICY_YAML
|
iniset $WATCHER_CONF oslo_policy policy_file $WATCHER_POLICY_YAML
|
||||||
|
|
||||||
iniset $WATCHER_CONF oslo_messaging_notifications driver "messagingv2"
|
iniset $WATCHER_CONF oslo_messaging_notifications driver "messagingv2"
|
||||||
|
|
||||||
configure_auth_token_middleware $WATCHER_CONF watcher $WATCHER_AUTH_CACHE_DIR
|
configure_keystone_authtoken_middleware $WATCHER_CONF watcher
|
||||||
configure_auth_token_middleware $WATCHER_CONF watcher $WATCHER_AUTH_CACHE_DIR "watcher_clients_auth"
|
configure_keystone_authtoken_middleware $WATCHER_CONF watcher "watcher_clients_auth"
|
||||||
|
|
||||||
if is_fedora || is_suse; then
|
if is_fedora || is_suse; then
|
||||||
# watcher defaults to /usr/local/bin, but fedora and suse pip like to
|
# watcher defaults to /usr/local/bin, but fedora and suse pip like to
|
||||||
@@ -231,12 +186,8 @@ function create_watcher_conf {
|
|||||||
# Format logging
|
# Format logging
|
||||||
setup_logging $WATCHER_CONF
|
setup_logging $WATCHER_CONF
|
||||||
|
|
||||||
#config apache files
|
write_uwsgi_config "$WATCHER_UWSGI_CONF" "$WATCHER_UWSGI" "/infra-optim" "" "watcher-api"
|
||||||
if [[ "$WATCHER_USE_WSGI_MODE" == "uwsgi" ]]; then
|
|
||||||
write_uwsgi_config "$WATCHER_UWSGI_CONF" "$WATCHER_UWSGI" "/infra-optim"
|
|
||||||
else
|
|
||||||
_config_watcher_apache_wsgi
|
|
||||||
fi
|
|
||||||
# Register SSL certificates if provided
|
# Register SSL certificates if provided
|
||||||
if is_ssl_enabled_service watcher; then
|
if is_ssl_enabled_service watcher; then
|
||||||
ensure_certificates WATCHER
|
ensure_certificates WATCHER
|
||||||
@@ -248,13 +199,6 @@ function create_watcher_conf {
|
|||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
# create_watcher_cache_dir() - Part of the init_watcher() process
|
|
||||||
function create_watcher_cache_dir {
|
|
||||||
# Create cache dir
|
|
||||||
sudo install -d -o $STACK_USER $WATCHER_AUTH_CACHE_DIR
|
|
||||||
rm -rf $WATCHER_AUTH_CACHE_DIR/*
|
|
||||||
}
|
|
||||||
|
|
||||||
# init_watcher() - Initialize databases, etc.
|
# init_watcher() - Initialize databases, etc.
|
||||||
function init_watcher {
|
function init_watcher {
|
||||||
# clean up from previous (possibly aborted) runs
|
# clean up from previous (possibly aborted) runs
|
||||||
@@ -266,7 +210,6 @@ function init_watcher {
|
|||||||
# Create watcher schema
|
# Create watcher schema
|
||||||
$WATCHER_BIN_DIR/watcher-db-manage --config-file $WATCHER_CONF upgrade
|
$WATCHER_BIN_DIR/watcher-db-manage --config-file $WATCHER_CONF upgrade
|
||||||
fi
|
fi
|
||||||
create_watcher_cache_dir
|
|
||||||
}
|
}
|
||||||
|
|
||||||
# install_watcherclient() - Collect source and prepare
|
# install_watcherclient() - Collect source and prepare
|
||||||
@@ -275,15 +218,15 @@ function install_watcherclient {
|
|||||||
git_clone_by_name "python-watcherclient"
|
git_clone_by_name "python-watcherclient"
|
||||||
setup_dev_lib "python-watcherclient"
|
setup_dev_lib "python-watcherclient"
|
||||||
fi
|
fi
|
||||||
|
if [[ "$GLOBAL_VENV" == "True" ]]; then
|
||||||
|
sudo ln -sf /opt/stack/data/venv/bin/watcher /usr/local/bin
|
||||||
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
# install_watcher() - Collect source and prepare
|
# install_watcher() - Collect source and prepare
|
||||||
function install_watcher {
|
function install_watcher {
|
||||||
git_clone $WATCHER_REPO $WATCHER_DIR $WATCHER_BRANCH
|
git_clone $WATCHER_REPO $WATCHER_DIR $WATCHER_BRANCH
|
||||||
setup_develop $WATCHER_DIR
|
setup_develop $WATCHER_DIR
|
||||||
if [[ "$WATCHER_USE_WSGI_MODE" == "mod_wsgi" ]]; then
|
|
||||||
install_apache_wsgi
|
|
||||||
fi
|
|
||||||
}
|
}
|
||||||
|
|
||||||
# start_watcher_api() - Start the API process ahead of other things
|
# start_watcher_api() - Start the API process ahead of other things
|
||||||
@@ -297,19 +240,10 @@ function start_watcher_api {
|
|||||||
service_port=$WATCHER_SERVICE_PORT_INT
|
service_port=$WATCHER_SERVICE_PORT_INT
|
||||||
service_protocol="http"
|
service_protocol="http"
|
||||||
fi
|
fi
|
||||||
if [[ "$WATCHER_USE_WSGI_MODE" == "uwsgi" ]]; then
|
run_process "watcher-api" "$(which uwsgi) --procname-prefix watcher-api --ini $WATCHER_UWSGI_CONF"
|
||||||
run_process "watcher-api" "$(which uwsgi) --procname-prefix watcher-api --ini $WATCHER_UWSGI_CONF"
|
watcher_url=$service_protocol://$SERVICE_HOST/infra-optim
|
||||||
watcher_url=$service_protocol://$SERVICE_HOST/infra-optim
|
# TODO(sean-k-mooney): we should probably check that we can hit
|
||||||
else
|
# the microversion endpoint and get a valid response.
|
||||||
watcher_url=$service_protocol://$SERVICE_HOST:$service_port
|
|
||||||
enable_apache_site watcher-api
|
|
||||||
restart_apache_server
|
|
||||||
# Start proxies if enabled
|
|
||||||
if is_service_enabled tls-proxy; then
|
|
||||||
start_tls_proxy watcher '*' $WATCHER_SERVICE_PORT $WATCHER_SERVICE_HOST $WATCHER_SERVICE_PORT_INT
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
|
|
||||||
echo "Waiting for watcher-api to start..."
|
echo "Waiting for watcher-api to start..."
|
||||||
if ! wait_for_service $SERVICE_TIMEOUT $watcher_url; then
|
if ! wait_for_service $SERVICE_TIMEOUT $watcher_url; then
|
||||||
die $LINENO "watcher-api did not start"
|
die $LINENO "watcher-api did not start"
|
||||||
@@ -327,17 +261,25 @@ function start_watcher {
|
|||||||
|
|
||||||
# stop_watcher() - Stop running processes (non-screen)
|
# stop_watcher() - Stop running processes (non-screen)
|
||||||
function stop_watcher {
|
function stop_watcher {
|
||||||
if [[ "$WATCHER_USE_WSGI_MODE" == "uwsgi" ]]; then
|
stop_process watcher-api
|
||||||
stop_process watcher-api
|
|
||||||
else
|
|
||||||
disable_apache_site watcher-api
|
|
||||||
restart_apache_server
|
|
||||||
fi
|
|
||||||
for serv in watcher-decision-engine watcher-applier; do
|
for serv in watcher-decision-engine watcher-applier; do
|
||||||
stop_process $serv
|
stop_process $serv
|
||||||
done
|
done
|
||||||
}
|
}
|
||||||
|
|
||||||
|
# configure_tempest_for_watcher() - Configure Tempest for watcher
|
||||||
|
function configure_tempest_for_watcher {
|
||||||
|
# Set default microversion for watcher-tempest-plugin
|
||||||
|
# Please make sure to update this when the microversion is updated, otherwise
|
||||||
|
# new tests may be skipped.
|
||||||
|
TEMPEST_WATCHER_MIN_MICROVERSION=${TEMPEST_WATCHER_MIN_MICROVERSION:-"1.0"}
|
||||||
|
TEMPEST_WATCHER_MAX_MICROVERSION=${TEMPEST_WATCHER_MAX_MICROVERSION:-"1.4"}
|
||||||
|
|
||||||
|
# Set microversion options in tempest.conf
|
||||||
|
iniset $TEMPEST_CONFIG optimize min_microversion $TEMPEST_WATCHER_MIN_MICROVERSION
|
||||||
|
iniset $TEMPEST_CONFIG optimize max_microversion $TEMPEST_WATCHER_MAX_MICROVERSION
|
||||||
|
}
|
||||||
|
|
||||||
# Restore xtrace
|
# Restore xtrace
|
||||||
$_XTRACE_WATCHER
|
$_XTRACE_WATCHER
|
||||||
|
|
||||||
|
|||||||
@@ -1,5 +1,3 @@
|
|||||||
#!/bin/bash
|
|
||||||
#
|
|
||||||
# plugin.sh - DevStack plugin script to install watcher
|
# plugin.sh - DevStack plugin script to install watcher
|
||||||
|
|
||||||
# Save trace setting
|
# Save trace setting
|
||||||
@@ -38,6 +36,9 @@ if is_service_enabled watcher-api watcher-decision-engine watcher-applier; then
|
|||||||
# Start the watcher components
|
# Start the watcher components
|
||||||
echo_summary "Starting watcher"
|
echo_summary "Starting watcher"
|
||||||
start_watcher
|
start_watcher
|
||||||
|
elif [[ "$1" == "stack" && "$2" == "test-config" ]]; then
|
||||||
|
echo_summary "Configuring tempest for watcher"
|
||||||
|
configure_tempest_for_watcher
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [[ "$1" == "unstack" ]]; then
|
if [[ "$1" == "unstack" ]]; then
|
||||||
|
|||||||
@@ -1,5 +1,3 @@
|
|||||||
#!/usr/bin/env bash
|
|
||||||
|
|
||||||
# ``upgrade-watcher``
|
# ``upgrade-watcher``
|
||||||
|
|
||||||
function configure_watcher_upgrade {
|
function configure_watcher_upgrade {
|
||||||
|
|||||||
@@ -70,7 +70,7 @@ then write_uwsgi_config "$WATCHER_UWSGI_CONF" "$WATCHER_UWSGI" "/infra-optim"
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
# Migrate the database
|
# Migrate the database
|
||||||
watcher-db-manage upgrade || die $LINO "DB migration error"
|
$WATCHER_BIN_DIR/watcher-db-manage upgrade || die $LINO "DB migration error"
|
||||||
|
|
||||||
start_watcher
|
start_watcher
|
||||||
|
|
||||||
|
|||||||
4
doc/dictionary.txt
Normal file
4
doc/dictionary.txt
Normal file
@@ -0,0 +1,4 @@
|
|||||||
|
thirdparty
|
||||||
|
assertin
|
||||||
|
notin
|
||||||
|
|
||||||
@@ -52,7 +52,7 @@ class BaseWatcherDirective(rst.Directive):
|
|||||||
obj_raw_docstring = obj.__init__.__doc__
|
obj_raw_docstring = obj.__init__.__doc__
|
||||||
|
|
||||||
if not obj_raw_docstring:
|
if not obj_raw_docstring:
|
||||||
# Raise a warning to make the tests fail wit doc8
|
# Raise a warning to make the tests fail with doc8
|
||||||
raise self.error("No docstring available for %s!" % obj)
|
raise self.error("No docstring available for %s!" % obj)
|
||||||
|
|
||||||
obj_docstring = inspect.cleandoc(obj_raw_docstring)
|
obj_docstring = inspect.cleandoc(obj_raw_docstring)
|
||||||
|
|||||||
@@ -1,10 +1,10 @@
|
|||||||
# The order of packages is significant, because pip processes them in the order
|
sphinx>=2.1.1 # BSD
|
||||||
# of appearance. Changing the order has an impact on the overall integration
|
|
||||||
# process, which may cause wedges in the gate later.
|
|
||||||
openstackdocstheme>=2.2.1 # Apache-2.0
|
|
||||||
sphinx>=2.0.0,!=2.1.0 # BSD
|
|
||||||
sphinxcontrib-pecanwsme>=0.8.0 # Apache-2.0
|
|
||||||
sphinxcontrib-svg2pdfconverter>=0.1.0 # BSD
|
sphinxcontrib-svg2pdfconverter>=0.1.0 # BSD
|
||||||
reno>=3.1.0 # Apache-2.0
|
sphinxcontrib-pecanwsme>=0.8.0 # Apache-2.0
|
||||||
sphinxcontrib-apidoc>=0.2.0 # BSD
|
sphinxcontrib-apidoc>=0.2.0 # BSD
|
||||||
|
# openstack
|
||||||
os-api-ref>=1.4.0 # Apache-2.0
|
os-api-ref>=1.4.0 # Apache-2.0
|
||||||
|
openstackdocstheme>=2.2.1 # Apache-2.0
|
||||||
|
# releasenotes
|
||||||
|
reno>=3.1.0 # Apache-2.0
|
||||||
|
|
||||||
|
|||||||
@@ -34,7 +34,7 @@ own sections. However, the base *GMR* consists of several sections:
|
|||||||
|
|
||||||
Package
|
Package
|
||||||
Shows information about the package to which this process belongs, including
|
Shows information about the package to which this process belongs, including
|
||||||
version informations.
|
version information.
|
||||||
|
|
||||||
Threads
|
Threads
|
||||||
Shows stack traces and thread ids for each of the threads within this
|
Shows stack traces and thread ids for each of the threads within this
|
||||||
|
|||||||
@@ -285,7 +285,7 @@ Audit and interval (in case of CONTINUOUS type). There is three types of Audit:
|
|||||||
ONESHOT, CONTINUOUS and EVENT. ONESHOT Audit is launched once and if it
|
ONESHOT, CONTINUOUS and EVENT. ONESHOT Audit is launched once and if it
|
||||||
succeeded executed new action plan list will be provided; CONTINUOUS Audit
|
succeeded executed new action plan list will be provided; CONTINUOUS Audit
|
||||||
creates action plans with specified interval (in seconds or cron format, cron
|
creates action plans with specified interval (in seconds or cron format, cron
|
||||||
inteval can be used like: `*/5 * * * *`), if action plan
|
interval can be used like: ``*/5 * * * *``), if action plan
|
||||||
has been created, all previous action plans get CANCELLED state;
|
has been created, all previous action plans get CANCELLED state;
|
||||||
EVENT audit is launched when receiving webhooks API.
|
EVENT audit is launched when receiving webhooks API.
|
||||||
|
|
||||||
|
|||||||
2
doc/source/conf.py
Executable file → Normal file
2
doc/source/conf.py
Executable file → Normal file
@@ -115,7 +115,7 @@ html_theme = 'openstackdocs'
|
|||||||
htmlhelp_basename = '%sdoc' % project
|
htmlhelp_basename = '%sdoc' % project
|
||||||
|
|
||||||
|
|
||||||
#openstackdocstheme options
|
# openstackdocstheme options
|
||||||
openstackdocs_repo_name = 'openstack/watcher'
|
openstackdocs_repo_name = 'openstack/watcher'
|
||||||
openstackdocs_pdf_link = True
|
openstackdocs_pdf_link = True
|
||||||
openstackdocs_auto_name = False
|
openstackdocs_auto_name = False
|
||||||
|
|||||||
@@ -194,11 +194,14 @@ The configuration file is organized into the following sections:
|
|||||||
* ``[watcher_applier]`` - Watcher Applier module configuration
|
* ``[watcher_applier]`` - Watcher Applier module configuration
|
||||||
* ``[watcher_decision_engine]`` - Watcher Decision Engine module configuration
|
* ``[watcher_decision_engine]`` - Watcher Decision Engine module configuration
|
||||||
* ``[oslo_messaging_rabbit]`` - Oslo Messaging RabbitMQ driver configuration
|
* ``[oslo_messaging_rabbit]`` - Oslo Messaging RabbitMQ driver configuration
|
||||||
* ``[ceilometer_client]`` - Ceilometer client configuration
|
|
||||||
* ``[cinder_client]`` - Cinder client configuration
|
* ``[cinder_client]`` - Cinder client configuration
|
||||||
* ``[glance_client]`` - Glance client configuration
|
* ``[glance_client]`` - Glance client configuration
|
||||||
|
* ``[gnocchi_client]`` - Gnocchi client configuration
|
||||||
|
* ``[ironic_client]`` - Ironic client configuration
|
||||||
|
* ``[keystone_client]`` - Keystone client configuration
|
||||||
* ``[nova_client]`` - Nova client configuration
|
* ``[nova_client]`` - Nova client configuration
|
||||||
* ``[neutron_client]`` - Neutron client configuration
|
* ``[neutron_client]`` - Neutron client configuration
|
||||||
|
* ``[placement_client]`` - Placement client configuration
|
||||||
|
|
||||||
The Watcher configuration file is expected to be named
|
The Watcher configuration file is expected to be named
|
||||||
``watcher.conf``. When starting Watcher, you can specify a different
|
``watcher.conf``. When starting Watcher, you can specify a different
|
||||||
|
|||||||
@@ -221,7 +221,7 @@ workflow engine can halt or take other actions while the action plan is being
|
|||||||
executed based on the success or failure of individual actions. However, the
|
executed based on the success or failure of individual actions. However, the
|
||||||
base workflow engine simply uses these notifies to store the result of
|
base workflow engine simply uses these notifies to store the result of
|
||||||
individual actions in the database. Additionally, since taskflow uses a graph
|
individual actions in the database. Additionally, since taskflow uses a graph
|
||||||
flow if any of the tasks would fail all childs of this tasks not be executed
|
flow if any of the tasks would fail all children of this tasks not be executed
|
||||||
while ``do_revert`` will be triggered for all parents.
|
while ``do_revert`` will be triggered for all parents.
|
||||||
|
|
||||||
.. code-block:: python
|
.. code-block:: python
|
||||||
|
|||||||
@@ -16,7 +16,7 @@ multinode environment to use.
|
|||||||
You can set up the Watcher services quickly and easily using a Watcher
|
You can set up the Watcher services quickly and easily using a Watcher
|
||||||
DevStack plugin. See `PluginModelDocs`_ for information on DevStack's plugin
|
DevStack plugin. See `PluginModelDocs`_ for information on DevStack's plugin
|
||||||
model. To enable the Watcher plugin with DevStack, add the following to the
|
model. To enable the Watcher plugin with DevStack, add the following to the
|
||||||
`[[local|localrc]]` section of your controller's `local.conf` to enable the
|
``[[local|localrc]]`` section of your controller's ``local.conf`` to enable the
|
||||||
Watcher plugin::
|
Watcher plugin::
|
||||||
|
|
||||||
enable_plugin watcher https://opendev.org/openstack/watcher
|
enable_plugin watcher https://opendev.org/openstack/watcher
|
||||||
@@ -32,7 +32,7 @@ Quick Devstack Instructions with Datasources
|
|||||||
|
|
||||||
Watcher requires a datasource to collect metrics from compute nodes and
|
Watcher requires a datasource to collect metrics from compute nodes and
|
||||||
instances in order to execute most strategies. To enable this a
|
instances in order to execute most strategies. To enable this a
|
||||||
`[[local|localrc]]` to setup DevStack for some of the supported datasources
|
``[[local|localrc]]`` to setup DevStack for some of the supported datasources
|
||||||
is provided. These examples specify the minimal configuration parameters to
|
is provided. These examples specify the minimal configuration parameters to
|
||||||
get both Watcher and the datasource working but can be expanded is desired.
|
get both Watcher and the datasource working but can be expanded is desired.
|
||||||
|
|
||||||
@@ -41,54 +41,60 @@ Gnocchi
|
|||||||
|
|
||||||
With the Gnocchi datasource most of the metrics for compute nodes and
|
With the Gnocchi datasource most of the metrics for compute nodes and
|
||||||
instances will work with the provided configuration but metrics that
|
instances will work with the provided configuration but metrics that
|
||||||
require Ironic such as `host_airflow and` `host_power` will still be
|
require Ironic such as ``host_airflow and`` ``host_power`` will still be
|
||||||
unavailable as well as `instance_l3_cpu_cache`::
|
unavailable as well as ``instance_l3_cpu_cache``
|
||||||
|
|
||||||
[[local|localrc]]
|
.. code-block:: ini
|
||||||
enable_plugin watcher https://opendev.org/openstack/watcher
|
|
||||||
|
|
||||||
enable_plugin watcher-dashboard https://opendev.org/openstack/watcher-dashboard
|
[[local|localrc]]
|
||||||
|
|
||||||
enable_plugin ceilometer https://opendev.org/openstack/ceilometer.git
|
enable_plugin watcher https://opendev.org/openstack/watcher
|
||||||
CEILOMETER_BACKEND=gnocchi
|
enable_plugin watcher-dashboard https://opendev.org/openstack/watcher-dashboard
|
||||||
|
enable_plugin ceilometer https://opendev.org/openstack/ceilometer.git
|
||||||
|
enable_plugin aodh https://opendev.org/openstack/aodh
|
||||||
|
enable_plugin panko https://opendev.org/openstack/panko
|
||||||
|
|
||||||
enable_plugin aodh https://opendev.org/openstack/aodh
|
CEILOMETER_BACKEND=gnocchi
|
||||||
enable_plugin panko https://opendev.org/openstack/panko
|
[[post-config|$NOVA_CONF]]
|
||||||
|
[DEFAULT]
|
||||||
[[post-config|$NOVA_CONF]]
|
compute_monitors=cpu.virt_driver
|
||||||
[DEFAULT]
|
|
||||||
compute_monitors=cpu.virt_driver
|
|
||||||
|
|
||||||
Detailed DevStack Instructions
|
Detailed DevStack Instructions
|
||||||
==============================
|
==============================
|
||||||
|
|
||||||
#. Obtain N (where N >= 1) servers (virtual machines preferred for DevStack).
|
#. Obtain N (where N >= 1) servers (virtual machines preferred for DevStack).
|
||||||
One of these servers will be the controller node while the others will be
|
One of these servers will be the controller node while the others will be
|
||||||
compute nodes. N is preferably >= 3 so that you have at least 2 compute
|
compute nodes. N is preferably >= 3 so that you have at least 2 compute
|
||||||
nodes, but in order to stand up the Watcher services only 1 server is
|
nodes, but in order to stand up the Watcher services only 1 server is
|
||||||
needed (i.e., no computes are needed if you want to just experiment with
|
needed (i.e., no computes are needed if you want to just experiment with
|
||||||
the Watcher services). These servers can be VMs running on your local
|
the Watcher services). These servers can be VMs running on your local
|
||||||
machine via VirtualBox if you prefer. DevStack currently recommends that
|
machine via VirtualBox if you prefer. DevStack currently recommends that
|
||||||
you use Ubuntu 16.04 LTS. The servers should also have connections to the
|
you use Ubuntu 16.04 LTS. The servers should also have connections to the
|
||||||
same network such that they are all able to communicate with one another.
|
same network such that they are all able to communicate with one another.
|
||||||
|
|
||||||
#. For each server, clone the DevStack repository and create the stack user::
|
#. For each server, clone the DevStack repository and create the stack user
|
||||||
|
|
||||||
sudo apt-get update
|
.. code-block:: bash
|
||||||
sudo apt-get install git
|
|
||||||
git clone https://opendev.org/openstack/devstack.git
|
sudo apt-get update
|
||||||
sudo ./devstack/tools/create-stack-user.sh
|
sudo apt-get install git
|
||||||
|
git clone https://opendev.org/openstack/devstack.git
|
||||||
|
sudo ./devstack/tools/create-stack-user.sh
|
||||||
|
|
||||||
Now you have a stack user that is used to run the DevStack processes. You
|
Now you have a stack user that is used to run the DevStack processes. You
|
||||||
may want to give your stack user a password to allow SSH via a password::
|
may want to give your stack user a password to allow SSH via a password
|
||||||
|
|
||||||
sudo passwd stack
|
.. code-block:: bash
|
||||||
|
|
||||||
#. Switch to the stack user and clone the DevStack repo again::
|
sudo passwd stack
|
||||||
|
|
||||||
sudo su stack
|
#. Switch to the stack user and clone the DevStack repo again
|
||||||
cd ~
|
|
||||||
git clone https://opendev.org/openstack/devstack.git
|
.. code-block:: bash
|
||||||
|
|
||||||
|
sudo su stack
|
||||||
|
cd ~
|
||||||
|
git clone https://opendev.org/openstack/devstack.git
|
||||||
|
|
||||||
#. For each compute node, copy the provided `local.conf.compute`_ example file
|
#. For each compute node, copy the provided `local.conf.compute`_ example file
|
||||||
to the compute node's system at ~/devstack/local.conf. Make sure the
|
to the compute node's system at ~/devstack/local.conf. Make sure the
|
||||||
@@ -111,24 +117,30 @@ Detailed DevStack Instructions
|
|||||||
the HOST_IP value is changed appropriately - i.e., HOST_IP is set to the IP
|
the HOST_IP value is changed appropriately - i.e., HOST_IP is set to the IP
|
||||||
address of the controller node.
|
address of the controller node.
|
||||||
|
|
||||||
Note: if you want to use another Watcher git repository (such as a local
|
.. NOTE::
|
||||||
one), then change the enable plugin line::
|
if you want to use another Watcher git repository (such as a local
|
||||||
|
one), then change the enable plugin line
|
||||||
|
|
||||||
|
.. code-block:: bash
|
||||||
|
|
||||||
|
enable_plugin watcher <your_local_git_repo> [optional_branch]
|
||||||
|
|
||||||
enable_plugin watcher <your_local_git_repo> [optional_branch]
|
|
||||||
|
|
||||||
If you do this, then the Watcher DevStack plugin will try to pull the
|
If you do this, then the Watcher DevStack plugin will try to pull the
|
||||||
python-watcherclient repo from <your_local_git_repo>/../, so either make
|
python-watcherclient repo from ``<your_local_git_repo>/../``, so either make
|
||||||
sure that is also available or specify WATCHERCLIENT_REPO in the local.conf
|
sure that is also available or specify WATCHERCLIENT_REPO in the ``local.conf``
|
||||||
file.
|
file.
|
||||||
|
|
||||||
Note: if you want to use a specific branch, specify WATCHER_BRANCH in the
|
.. NOTE::
|
||||||
local.conf file. By default it will use the master branch.
|
if you want to use a specific branch, specify WATCHER_BRANCH in the
|
||||||
|
local.conf file. By default it will use the master branch.
|
||||||
|
|
||||||
Note: watcher-api will default run under apache/httpd, set the variable
|
.. Note::
|
||||||
WATCHER_USE_MOD_WSGI=FALSE if you do not wish to run under apache/httpd.
|
watcher-api will default run under apache/httpd, set the variable
|
||||||
For development environment it is suggested to set WATHCER_USE_MOD_WSGI
|
WATCHER_USE_MOD_WSGI=FALSE if you do not wish to run under apache/httpd.
|
||||||
to FALSE. For Production environment it is suggested to keep it at the
|
For development environment it is suggested to set WATHCER_USE_MOD_WSGI
|
||||||
default TRUE value.
|
to FALSE. For Production environment it is suggested to keep it at the
|
||||||
|
default TRUE value.
|
||||||
|
|
||||||
#. Start stacking from the controller node::
|
#. Start stacking from the controller node::
|
||||||
|
|
||||||
@@ -136,8 +148,9 @@ Detailed DevStack Instructions
|
|||||||
|
|
||||||
#. Start stacking on each of the compute nodes using the same command.
|
#. Start stacking on each of the compute nodes using the same command.
|
||||||
|
|
||||||
#. Configure the environment for live migration via NFS. See the
|
.. seealso::
|
||||||
`Multi-Node DevStack Environment`_ section for more details.
|
Configure the environment for live migration via NFS. See the
|
||||||
|
`Multi-Node DevStack Environment`_ section for more details.
|
||||||
|
|
||||||
.. _local.conf.controller: https://github.com/openstack/watcher/tree/master/devstack/local.conf.controller
|
.. _local.conf.controller: https://github.com/openstack/watcher/tree/master/devstack/local.conf.controller
|
||||||
.. _local.conf.compute: https://github.com/openstack/watcher/tree/master/devstack/local.conf.compute
|
.. _local.conf.compute: https://github.com/openstack/watcher/tree/master/devstack/local.conf.compute
|
||||||
@@ -149,60 +162,19 @@ Since deploying Watcher with only a single compute node is not very useful, a
|
|||||||
few tips are given here for enabling a multi-node environment with live
|
few tips are given here for enabling a multi-node environment with live
|
||||||
migration.
|
migration.
|
||||||
|
|
||||||
Configuring NFS Server
|
.. NOTE::
|
||||||
----------------------
|
|
||||||
|
|
||||||
If you would like to use live migration for shared storage, then the controller
|
Nova supports live migration with local block storage so by default NFS
|
||||||
can serve as the NFS server if needed::
|
is not required and is considered an advance configuration.
|
||||||
|
The minimum requirements for live migration are:
|
||||||
|
|
||||||
sudo apt-get install nfs-kernel-server
|
- all hostnames are resolvable on each host
|
||||||
sudo mkdir -p /nfs/instances
|
- all hosts have a passwordless ssh key that is trusted by the other hosts
|
||||||
sudo chown stack:stack /nfs/instances
|
- all hosts have a known_hosts file that lists each hosts
|
||||||
|
|
||||||
Add an entry to `/etc/exports` with the appropriate gateway and netmask
|
If these requirements are met live migration will be possible.
|
||||||
information::
|
Shared storage such as ceph, booting form cinder volume or nfs are recommend
|
||||||
|
when testing evacuate if you want to preserve vm data.
|
||||||
/nfs/instances <gateway>/<netmask>(rw,fsid=0,insecure,no_subtree_check,async,no_root_squash)
|
|
||||||
|
|
||||||
Export the NFS directories::
|
|
||||||
|
|
||||||
sudo exportfs -ra
|
|
||||||
|
|
||||||
Make sure the NFS server is running::
|
|
||||||
|
|
||||||
sudo service nfs-kernel-server status
|
|
||||||
|
|
||||||
If the server is not running, then start it::
|
|
||||||
|
|
||||||
sudo service nfs-kernel-server start
|
|
||||||
|
|
||||||
Configuring NFS on Compute Node
|
|
||||||
-------------------------------
|
|
||||||
|
|
||||||
Each compute node needs to use the NFS server to hold the instance data::
|
|
||||||
|
|
||||||
sudo apt-get install rpcbind nfs-common
|
|
||||||
mkdir -p /opt/stack/data/instances
|
|
||||||
sudo mount <nfs-server-ip>:/nfs/instances /opt/stack/data/instances
|
|
||||||
|
|
||||||
If you would like to have the NFS directory automatically mounted on reboot,
|
|
||||||
then add the following to `/etc/fstab`::
|
|
||||||
|
|
||||||
<nfs-server-ip>:/nfs/instances /opt/stack/data/instances nfs auto 0 0
|
|
||||||
|
|
||||||
Edit `/etc/libvirt/libvirtd.conf` to make sure the following values are set::
|
|
||||||
|
|
||||||
listen_tls = 0
|
|
||||||
listen_tcp = 1
|
|
||||||
auth_tcp = "none"
|
|
||||||
|
|
||||||
Edit `/etc/default/libvirt-bin`::
|
|
||||||
|
|
||||||
libvirtd_opts="-d -l"
|
|
||||||
|
|
||||||
Restart the libvirt service::
|
|
||||||
|
|
||||||
sudo service libvirt-bin restart
|
|
||||||
|
|
||||||
Setting up SSH keys between compute nodes to enable live migration
|
Setting up SSH keys between compute nodes to enable live migration
|
||||||
------------------------------------------------------------------
|
------------------------------------------------------------------
|
||||||
@@ -231,22 +203,91 @@ must exist in every other compute node's stack user's authorized_keys file and
|
|||||||
every compute node's public ECDSA key needs to be in every other compute
|
every compute node's public ECDSA key needs to be in every other compute
|
||||||
node's root user's known_hosts file.
|
node's root user's known_hosts file.
|
||||||
|
|
||||||
Disable serial console
|
Configuring NFS Server (ADVANCED)
|
||||||
----------------------
|
---------------------------------
|
||||||
|
|
||||||
Serial console needs to be disabled for live migration to work.
|
If you would like to use live migration for shared storage, then the controller
|
||||||
|
can serve as the NFS server if needed
|
||||||
|
|
||||||
On both the controller and compute node, in /etc/nova/nova.conf
|
.. code-block:: bash
|
||||||
|
|
||||||
[serial_console]
|
sudo apt-get install nfs-kernel-server
|
||||||
enabled = False
|
sudo mkdir -p /nfs/instances
|
||||||
|
sudo chown stack:stack /nfs/instances
|
||||||
|
|
||||||
Alternatively, in devstack's local.conf:
|
Add an entry to ``/etc/exports`` with the appropriate gateway and netmask
|
||||||
|
information
|
||||||
|
|
||||||
[[post-config|$NOVA_CONF]]
|
|
||||||
[serial_console]
|
|
||||||
#enabled=false
|
|
||||||
|
|
||||||
|
.. code-block:: bash
|
||||||
|
|
||||||
|
/nfs/instances <gateway>/<netmask>(rw,fsid=0,insecure,no_subtree_check,async,no_root_squash)
|
||||||
|
|
||||||
|
Export the NFS directories
|
||||||
|
|
||||||
|
.. code-block:: bash
|
||||||
|
|
||||||
|
sudo exportfs -ra
|
||||||
|
|
||||||
|
Make sure the NFS server is running
|
||||||
|
|
||||||
|
.. code-block:: bash
|
||||||
|
|
||||||
|
sudo service nfs-kernel-server status
|
||||||
|
|
||||||
|
If the server is not running, then start it
|
||||||
|
|
||||||
|
.. code-block:: bash
|
||||||
|
|
||||||
|
sudo service nfs-kernel-server start
|
||||||
|
|
||||||
|
Configuring NFS on Compute Node (ADVANCED)
|
||||||
|
------------------------------------------
|
||||||
|
|
||||||
|
Each compute node needs to use the NFS server to hold the instance data
|
||||||
|
|
||||||
|
.. code-block:: bash
|
||||||
|
|
||||||
|
sudo apt-get install rpcbind nfs-common
|
||||||
|
mkdir -p /opt/stack/data/instances
|
||||||
|
sudo mount <nfs-server-ip>:/nfs/instances /opt/stack/data/instances
|
||||||
|
|
||||||
|
If you would like to have the NFS directory automatically mounted on reboot,
|
||||||
|
then add the following to ``/etc/fstab``
|
||||||
|
|
||||||
|
.. code-block:: bash
|
||||||
|
|
||||||
|
<nfs-server-ip>:/nfs/instances /opt/stack/data/instances nfs auto 0 0
|
||||||
|
|
||||||
|
Configuring libvirt to listen on tcp (ADVANCED)
|
||||||
|
-----------------------------------------------
|
||||||
|
|
||||||
|
.. NOTE::
|
||||||
|
|
||||||
|
By default nova will use ssh as a transport for live migration
|
||||||
|
if you have a low bandwidth connection you can use tcp instead
|
||||||
|
however this is generally not recommended.
|
||||||
|
|
||||||
|
|
||||||
|
Edit ``/etc/libvirt/libvirtd.conf`` to make sure the following values are set
|
||||||
|
|
||||||
|
.. code-block:: ini
|
||||||
|
|
||||||
|
listen_tls = 0
|
||||||
|
listen_tcp = 1
|
||||||
|
auth_tcp = "none"
|
||||||
|
|
||||||
|
Edit ``/etc/default/libvirt-bin``
|
||||||
|
|
||||||
|
.. code-block:: ini
|
||||||
|
|
||||||
|
libvirtd_opts="-d -l"
|
||||||
|
|
||||||
|
Restart the libvirt service
|
||||||
|
|
||||||
|
.. code-block:: bash
|
||||||
|
|
||||||
|
sudo service libvirt-bin restart
|
||||||
|
|
||||||
VNC server configuration
|
VNC server configuration
|
||||||
------------------------
|
------------------------
|
||||||
@@ -254,13 +295,18 @@ VNC server configuration
|
|||||||
The VNC server listening parameter needs to be set to any address so
|
The VNC server listening parameter needs to be set to any address so
|
||||||
that the server can accept connections from all of the compute nodes.
|
that the server can accept connections from all of the compute nodes.
|
||||||
|
|
||||||
On both the controller and compute node, in /etc/nova/nova.conf
|
On both the controller and compute node, in ``/etc/nova/nova.conf``
|
||||||
|
|
||||||
vncserver_listen = 0.0.0.0
|
.. code-block:: ini
|
||||||
|
|
||||||
Alternatively, in devstack's local.conf:
|
[vnc]
|
||||||
|
server_listen = "0.0.0.0"
|
||||||
|
|
||||||
VNCSERVER_LISTEN=0.0.0.0
|
Alternatively, in devstack's ``local.conf``:
|
||||||
|
|
||||||
|
.. code-block:: bash
|
||||||
|
|
||||||
|
VNCSERVER_LISTEN="0.0.0.0"
|
||||||
|
|
||||||
|
|
||||||
Environment final checkup
|
Environment final checkup
|
||||||
|
|||||||
@@ -43,7 +43,7 @@ different version of the above, please document your configuration here!
|
|||||||
Getting the latest code
|
Getting the latest code
|
||||||
=======================
|
=======================
|
||||||
|
|
||||||
Make a clone of the code from our `Git repository`:
|
Make a clone of the code from our ``Git repository``:
|
||||||
|
|
||||||
.. code-block:: bash
|
.. code-block:: bash
|
||||||
|
|
||||||
@@ -72,9 +72,9 @@ These dependencies can be installed from PyPi_ using the Python tool pip_.
|
|||||||
.. _PyPi: https://pypi.org/
|
.. _PyPi: https://pypi.org/
|
||||||
.. _pip: https://pypi.org/project/pip
|
.. _pip: https://pypi.org/project/pip
|
||||||
|
|
||||||
However, your system *may* need additional dependencies that `pip` (and by
|
However, your system *may* need additional dependencies that ``pip`` (and by
|
||||||
extension, PyPi) cannot satisfy. These dependencies should be installed
|
extension, PyPi) cannot satisfy. These dependencies should be installed
|
||||||
prior to using `pip`, and the installation method may vary depending on
|
prior to using ``pip``, and the installation method may vary depending on
|
||||||
your platform.
|
your platform.
|
||||||
|
|
||||||
* Ubuntu 16.04::
|
* Ubuntu 16.04::
|
||||||
@@ -141,7 +141,7 @@ forget to activate it:
|
|||||||
|
|
||||||
$ workon watcher
|
$ workon watcher
|
||||||
|
|
||||||
You should then be able to `import watcher` using Python without issue:
|
You should then be able to ``import watcher`` using Python without issue:
|
||||||
|
|
||||||
.. code-block:: bash
|
.. code-block:: bash
|
||||||
|
|
||||||
|
|||||||
@@ -90,15 +90,15 @@ parameter will need to specify the type of http protocol and the use of
|
|||||||
plain text http is strongly discouraged due to the transmission of the access
|
plain text http is strongly discouraged due to the transmission of the access
|
||||||
token. Additionally the path to the proxy interface needs to be supplied as
|
token. Additionally the path to the proxy interface needs to be supplied as
|
||||||
well in case Grafana is placed in a sub directory of the web server. An example
|
well in case Grafana is placed in a sub directory of the web server. An example
|
||||||
would be: `https://mygrafana.org/api/datasource/proxy/` were
|
would be: ``https://mygrafana.org/api/datasource/proxy/`` were
|
||||||
`/api/datasource/proxy` is the default path without any subdirectories.
|
``/api/datasource/proxy`` is the default path without any subdirectories.
|
||||||
Likewise, this parameter can not be placed in the yaml.
|
Likewise, this parameter can not be placed in the yaml.
|
||||||
|
|
||||||
To prevent many errors from occurring and potentially filing the logs files it
|
To prevent many errors from occurring and potentially filing the logs files it
|
||||||
is advised to specify the desired datasource in the configuration as it would
|
is advised to specify the desired datasource in the configuration as it would
|
||||||
prevent the datasource manager from having to iterate and try possible
|
prevent the datasource manager from having to iterate and try possible
|
||||||
datasources with the launch of each audit. To do this specify `datasources` in
|
datasources with the launch of each audit. To do this specify
|
||||||
the `[watcher_datasources]` group.
|
``datasources`` in the ``[watcher_datasources]`` group.
|
||||||
|
|
||||||
The current configuration that is required to be placed in the traditional
|
The current configuration that is required to be placed in the traditional
|
||||||
configuration file would look like the following:
|
configuration file would look like the following:
|
||||||
@@ -120,7 +120,7 @@ traditional configuration file or in the yaml, however, it is not advised to
|
|||||||
mix and match but in the case it does occur the yaml would override the
|
mix and match but in the case it does occur the yaml would override the
|
||||||
settings from the traditional configuration file. All five of these parameters
|
settings from the traditional configuration file. All five of these parameters
|
||||||
are dictionaries mapping specific metrics to a configuration parameter. For
|
are dictionaries mapping specific metrics to a configuration parameter. For
|
||||||
instance the `project_id_map` will specify the specific project id in Grafana
|
instance the ``project_id_map`` will specify the specific project id in Grafana
|
||||||
to be used. The parameters are named as follow:
|
to be used. The parameters are named as follow:
|
||||||
|
|
||||||
* project_id_map
|
* project_id_map
|
||||||
@@ -149,10 +149,10 @@ project_id
|
|||||||
|
|
||||||
The project id's can only be determined by someone with the admin role in
|
The project id's can only be determined by someone with the admin role in
|
||||||
Grafana as that role is required to open the list of projects. The list of
|
Grafana as that role is required to open the list of projects. The list of
|
||||||
projects can be found on `/datasources` in the web interface but
|
projects can be found on ``/datasources`` in the web interface but
|
||||||
unfortunately it does not immediately display the project id. To display
|
unfortunately it does not immediately display the project id. To display
|
||||||
the id one can best hover the mouse over the projects and the url will show the
|
the id one can best hover the mouse over the projects and the url will show the
|
||||||
project id's for example `/datasources/edit/7563`. Alternatively the entire
|
project id's for example ``/datasources/edit/7563``. Alternatively the entire
|
||||||
list of projects can be retrieved using the `REST api`_. To easily make
|
list of projects can be retrieved using the `REST api`_. To easily make
|
||||||
requests to the REST api a tool such as Postman can be used.
|
requests to the REST api a tool such as Postman can be used.
|
||||||
|
|
||||||
@@ -239,18 +239,24 @@ conversion from bytes to megabytes.
|
|||||||
|
|
||||||
SELECT value/1000000 FROM memory...
|
SELECT value/1000000 FROM memory...
|
||||||
|
|
||||||
Queries will be formatted using the .format string method within Python. This
|
Queries will be formatted using the .format string method within Python.
|
||||||
format will currently have give attributes exposed to it labeled `{0}` to
|
This format will currently have give attributes exposed to it labeled
|
||||||
`{4}`. Every occurrence of these characters within the string will be replaced
|
``{0}`` through ``{4}``.
|
||||||
|
Every occurrence of these characters within the string will be replaced
|
||||||
with the specific attribute.
|
with the specific attribute.
|
||||||
|
|
||||||
- {0} is the aggregate typically `mean`, `min`, `max` but `count` is also
|
{0}
|
||||||
supported.
|
is the aggregate typically ``mean``, ``min``, ``max`` but ``count``
|
||||||
- {1} is the attribute as specified in the attribute parameter.
|
is also supported.
|
||||||
- {2} is the period of time to aggregate data over in seconds.
|
{1}
|
||||||
- {3} is the granularity or the interval between data points in seconds.
|
is the attribute as specified in the attribute parameter.
|
||||||
- {4} is translator specific and in the case of InfluxDB it will be used for
|
{2}
|
||||||
retention_periods.
|
is the period of time to aggregate data over in seconds.
|
||||||
|
{3}
|
||||||
|
is the granularity or the interval between data points in seconds.
|
||||||
|
{4}
|
||||||
|
is translator specific and in the case of InfluxDB it will be used for
|
||||||
|
retention_periods.
|
||||||
|
|
||||||
**InfluxDB**
|
**InfluxDB**
|
||||||
|
|
||||||
|
|||||||
140
doc/source/datasources/prometheus.rst
Normal file
140
doc/source/datasources/prometheus.rst
Normal file
@@ -0,0 +1,140 @@
|
|||||||
|
=====================
|
||||||
|
Prometheus datasource
|
||||||
|
=====================
|
||||||
|
|
||||||
|
Synopsis
|
||||||
|
--------
|
||||||
|
The Prometheus datasource allows Watcher to use a Prometheus server as the
|
||||||
|
source for collected metrics used by the Watcher decision engine. At minimum
|
||||||
|
deployers must configure the ``host`` and ``port`` at which the Prometheus
|
||||||
|
server is listening.
|
||||||
|
|
||||||
|
Requirements
|
||||||
|
-------------
|
||||||
|
It is required that Prometheus metrics contain a label to identify the hostname
|
||||||
|
of the exporter from which the metric was collected. This is used to match
|
||||||
|
against the Watcher cluster model ``ComputeNode.hostname``. The default for
|
||||||
|
this label is ``fqdn`` and in the prometheus scrape configs would look like:
|
||||||
|
|
||||||
|
.. code-block::
|
||||||
|
|
||||||
|
scrape_configs:
|
||||||
|
- job_name: node
|
||||||
|
static_configs:
|
||||||
|
- targets: ['10.1.2.3:9100']
|
||||||
|
labels:
|
||||||
|
fqdn: "testbox.controlplane.domain"
|
||||||
|
|
||||||
|
This default can be overridden when a deployer uses a different label to
|
||||||
|
identify the exporter host (for example ``hostname`` or ``host``, or any other
|
||||||
|
label, as long as it identifies the host).
|
||||||
|
|
||||||
|
Internally this label is used in creating ``fqdn_instance_labels``, containing
|
||||||
|
the list of values assigned to the the label in the Prometheus targets.
|
||||||
|
The elements of the resulting fqdn_instance_labels are expected to match the
|
||||||
|
``ComputeNode.hostname`` used in the Watcher decision engine cluster model.
|
||||||
|
An example ``fqdn_instance_labels`` is the following:
|
||||||
|
|
||||||
|
.. code-block::
|
||||||
|
|
||||||
|
[
|
||||||
|
'ena.controlplane.domain',
|
||||||
|
'dio.controlplane.domain',
|
||||||
|
'tria.controlplane.domain',
|
||||||
|
]
|
||||||
|
|
||||||
|
For instance metrics, it is required that Prometheus contains a label
|
||||||
|
with the uuid of the OpenStack instance in each relevant metric. By default,
|
||||||
|
the datasource will look for the label ``resource``. The
|
||||||
|
``instance_uuid_label`` config option in watcher.conf allows deployers to
|
||||||
|
override this default to any other label name that stores the ``uuid``.
|
||||||
|
|
||||||
|
Limitations
|
||||||
|
-----------
|
||||||
|
The current implementation doesn't support the ``statistic_series`` function of
|
||||||
|
the Watcher ``class DataSourceBase``. It is expected that the
|
||||||
|
``statistic_aggregation`` function (which is implemented) is sufficient in
|
||||||
|
providing the **current** state of the managed resources in the cluster.
|
||||||
|
The ``statistic_aggregation`` function defaults to querying back 300 seconds,
|
||||||
|
starting from the present time (the time period is a function parameter and
|
||||||
|
can be set to a value as required). Implementing the ``statistic_series`` can
|
||||||
|
always be re-visited if the requisite interest and work cycles are volunteered
|
||||||
|
by the interested parties.
|
||||||
|
|
||||||
|
One further note about a limitation in the implemented
|
||||||
|
``statistic_aggregation`` function. This function is defined with a
|
||||||
|
``granularity`` parameter, to be used when querying whichever of the Watcher
|
||||||
|
``DataSourceBase`` metrics providers. In the case of Prometheus, we do not
|
||||||
|
fetch and then process individual metrics across the specified time period.
|
||||||
|
Instead we use the PromQL querying operators and functions, so that the
|
||||||
|
server itself will process the request across the specified parameters and
|
||||||
|
then return the result. So ``granularity`` parameter is redundant and remains
|
||||||
|
unused for the Prometheus implementation of ``statistic_aggregation``. The
|
||||||
|
granularity of the data fetched by Prometheus server is specified in
|
||||||
|
configuration as the server ``scrape_interval`` (current default 15 seconds).
|
||||||
|
|
||||||
|
Configuration
|
||||||
|
-------------
|
||||||
|
A deployer must set the ``datasources`` parameter to include ``prometheus``
|
||||||
|
under the watcher_datasources section of watcher.conf (or add ``prometheus`` in
|
||||||
|
datasources for a specific strategy if preferred eg. under the
|
||||||
|
``[watcher_strategies.workload_stabilization]`` section).
|
||||||
|
|
||||||
|
The watcher.conf configuration file is also used to set the parameter values
|
||||||
|
required by the Watcher Prometheus data source. The configuration can be
|
||||||
|
added under the ``[prometheus_client]`` section and the available options are
|
||||||
|
duplicated below from the code as they are self documenting:
|
||||||
|
|
||||||
|
.. code-block::
|
||||||
|
|
||||||
|
cfg.StrOpt('host',
|
||||||
|
help="The hostname or IP address for the prometheus server."),
|
||||||
|
cfg.StrOpt('port',
|
||||||
|
help="The port number used by the prometheus server."),
|
||||||
|
cfg.StrOpt('fqdn_label',
|
||||||
|
default="fqdn",
|
||||||
|
help="The label that Prometheus uses to store the fqdn of "
|
||||||
|
"exporters. Defaults to 'fqdn'."),
|
||||||
|
cfg.StrOpt('instance_uuid_label',
|
||||||
|
default="resource",
|
||||||
|
help="The label that Prometheus uses to store the uuid of "
|
||||||
|
"OpenStack instances. Defaults to 'resource'."),
|
||||||
|
cfg.StrOpt('username',
|
||||||
|
help="The basic_auth username to use to authenticate with the "
|
||||||
|
"Prometheus server."),
|
||||||
|
cfg.StrOpt('password',
|
||||||
|
secret=True,
|
||||||
|
help="The basic_auth password to use to authenticate with the "
|
||||||
|
"Prometheus server."),
|
||||||
|
cfg.StrOpt('cafile',
|
||||||
|
help="Path to the CA certificate for establishing a TLS "
|
||||||
|
"connection with the Prometheus server."),
|
||||||
|
cfg.StrOpt('certfile',
|
||||||
|
help="Path to the client certificate for establishing a TLS "
|
||||||
|
"connection with the Prometheus server."),
|
||||||
|
cfg.StrOpt('keyfile',
|
||||||
|
help="Path to the client key for establishing a TLS "
|
||||||
|
"connection with the Prometheus server."),
|
||||||
|
|
||||||
|
The ``host`` and ``port`` are **required** configuration options which have
|
||||||
|
no set default. These specify the hostname (or IP) and port for at which
|
||||||
|
the Prometheus server is listening. The ``fqdn_label`` allows deployers to
|
||||||
|
override the required metric label used to match Prometheus node exporters
|
||||||
|
against the Watcher ComputeNodes in the Watcher decision engine cluster data
|
||||||
|
model. The default is ``fqdn`` and deployers can specify any other value
|
||||||
|
(e.g. if they have an equivalent but different label such as ``host``).
|
||||||
|
|
||||||
|
So a sample watcher.conf configured to use the Prometheus server at
|
||||||
|
``10.2.3.4:9090`` would look like the following:
|
||||||
|
|
||||||
|
.. code-block::
|
||||||
|
|
||||||
|
[watcher_datasources]
|
||||||
|
|
||||||
|
datasources = prometheus
|
||||||
|
|
||||||
|
[prometheus_client]
|
||||||
|
|
||||||
|
host = 10.2.3.4
|
||||||
|
port = 9090
|
||||||
|
fqdn_label = fqdn
|
||||||
@@ -9,7 +9,7 @@
|
|||||||
...
|
...
|
||||||
connection = mysql+pymysql://watcher:WATCHER_DBPASS@controller/watcher?charset=utf8
|
connection = mysql+pymysql://watcher:WATCHER_DBPASS@controller/watcher?charset=utf8
|
||||||
|
|
||||||
* In the `[DEFAULT]` section, configure the transport url for RabbitMQ message broker.
|
* In the ``[DEFAULT]`` section, configure the transport url for RabbitMQ message broker.
|
||||||
|
|
||||||
.. code-block:: ini
|
.. code-block:: ini
|
||||||
|
|
||||||
@@ -20,7 +20,7 @@
|
|||||||
|
|
||||||
Replace the RABBIT_PASS with the password you chose for OpenStack user in RabbitMQ.
|
Replace the RABBIT_PASS with the password you chose for OpenStack user in RabbitMQ.
|
||||||
|
|
||||||
* In the `[keystone_authtoken]` section, configure Identity service access.
|
* In the ``[keystone_authtoken]`` section, configure Identity service access.
|
||||||
|
|
||||||
.. code-block:: ini
|
.. code-block:: ini
|
||||||
|
|
||||||
@@ -39,7 +39,7 @@
|
|||||||
Replace WATCHER_PASS with the password you chose for the watcher user in the Identity service.
|
Replace WATCHER_PASS with the password you chose for the watcher user in the Identity service.
|
||||||
|
|
||||||
* Watcher interacts with other OpenStack projects via project clients, in order to instantiate these
|
* Watcher interacts with other OpenStack projects via project clients, in order to instantiate these
|
||||||
clients, Watcher requests new session from Identity service. In the `[watcher_clients_auth]` section,
|
clients, Watcher requests new session from Identity service. In the ``[watcher_clients_auth]`` section,
|
||||||
configure the identity service access to interact with other OpenStack project clients.
|
configure the identity service access to interact with other OpenStack project clients.
|
||||||
|
|
||||||
.. code-block:: ini
|
.. code-block:: ini
|
||||||
@@ -56,7 +56,7 @@
|
|||||||
|
|
||||||
Replace WATCHER_PASS with the password you chose for the watcher user in the Identity service.
|
Replace WATCHER_PASS with the password you chose for the watcher user in the Identity service.
|
||||||
|
|
||||||
* In the `[api]` section, configure host option.
|
* In the ``[api]`` section, configure host option.
|
||||||
|
|
||||||
.. code-block:: ini
|
.. code-block:: ini
|
||||||
|
|
||||||
@@ -66,7 +66,7 @@
|
|||||||
|
|
||||||
Replace controller with the IP address of the management network interface on your controller node, typically 10.0.0.11 for the first node in the example architecture.
|
Replace controller with the IP address of the management network interface on your controller node, typically 10.0.0.11 for the first node in the example architecture.
|
||||||
|
|
||||||
* In the `[oslo_messaging_notifications]` section, configure the messaging driver.
|
* In the ``[oslo_messaging_notifications]`` section, configure the messaging driver.
|
||||||
|
|
||||||
.. code-block:: ini
|
.. code-block:: ini
|
||||||
|
|
||||||
|
|||||||
@@ -48,7 +48,7 @@
|
|||||||
logging configuration to any other existing logging
|
logging configuration to any other existing logging
|
||||||
options. Please see the Python logging module documentation
|
options. Please see the Python logging module documentation
|
||||||
for details on logging configuration files. The log-config
|
for details on logging configuration files. The log-config
|
||||||
name for this option is depcrecated.
|
name for this option is deprecated.
|
||||||
|
|
||||||
**--log-format FORMAT**
|
**--log-format FORMAT**
|
||||||
A logging.Formatter log message format string which may use any
|
A logging.Formatter log message format string which may use any
|
||||||
|
|||||||
@@ -132,8 +132,8 @@ audit) that you want to use.
|
|||||||
$ openstack optimize audit create -a <your_audit_template>
|
$ openstack optimize audit create -a <your_audit_template>
|
||||||
|
|
||||||
If your_audit_template was created by --strategy <your_strategy>, and it
|
If your_audit_template was created by --strategy <your_strategy>, and it
|
||||||
defines some parameters (command `watcher strategy show` to check parameters
|
defines some parameters (command ``watcher strategy show`` to check parameters
|
||||||
format), your can append `-p` to input required parameters:
|
format), your can append ``-p`` to input required parameters:
|
||||||
|
|
||||||
.. code:: bash
|
.. code:: bash
|
||||||
|
|
||||||
|
|||||||
9
playbooks/generate_prometheus_config.yml
Normal file
9
playbooks/generate_prometheus_config.yml
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
---
|
||||||
|
- hosts: all
|
||||||
|
tasks:
|
||||||
|
- name: Generate prometheus.yml config file
|
||||||
|
delegate_to: controller
|
||||||
|
template:
|
||||||
|
src: "templates/prometheus.yml.j2"
|
||||||
|
dest: "/home/zuul/prometheus.yml"
|
||||||
|
mode: "0644"
|
||||||
13
playbooks/templates/prometheus.yml.j2
Normal file
13
playbooks/templates/prometheus.yml.j2
Normal file
@@ -0,0 +1,13 @@
|
|||||||
|
global:
|
||||||
|
scrape_interval: 10s
|
||||||
|
scrape_configs:
|
||||||
|
- job_name: "node"
|
||||||
|
static_configs:
|
||||||
|
- targets: ["localhost:3000"]
|
||||||
|
{% if 'compute' in groups %}
|
||||||
|
{% for host in groups['compute'] %}
|
||||||
|
- targets: ["{{ hostvars[host]['ansible_fqdn'] }}:9100"]
|
||||||
|
labels:
|
||||||
|
fqdn: "{{ hostvars[host]['ansible_fqdn'] }}"
|
||||||
|
{% endfor %}
|
||||||
|
{% endif %}
|
||||||
3
pyproject.toml
Normal file
3
pyproject.toml
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
[build-system]
|
||||||
|
requires = ["pbr>=6.0.0", "setuptools>=64.0.0"]
|
||||||
|
build-backend = "pbr.build"
|
||||||
@@ -1,7 +1,8 @@
|
|||||||
Rally job
|
Rally job
|
||||||
=========
|
=========
|
||||||
|
|
||||||
We provide, with Watcher, a Rally plugin you can use to benchmark the optimization service.
|
We provide, with Watcher, a Rally plugin you can use to benchmark
|
||||||
|
the optimization service.
|
||||||
|
|
||||||
To launch this task with configured Rally you just need to run:
|
To launch this task with configured Rally you just need to run:
|
||||||
|
|
||||||
|
|||||||
33
releasenotes/notes/2025.1-prelude-8be97eece4e1d1ff.yaml
Normal file
33
releasenotes/notes/2025.1-prelude-8be97eece4e1d1ff.yaml
Normal file
@@ -0,0 +1,33 @@
|
|||||||
|
---
|
||||||
|
prelude: |
|
||||||
|
The ``Openstack 2025.1`` (``Watcher 14.0.0``) includes several new features,
|
||||||
|
deprecations, and removals. After a period of inactivity, the Watcher
|
||||||
|
project moved to the Distributed leadership model in ``2025.1`` with
|
||||||
|
several new contributors working to modernize the code base.
|
||||||
|
Activity this cycle was mainly focused on paying down technical debt
|
||||||
|
related to supporting newer testing runtimes. With this release,
|
||||||
|
``ubuntu 24.04`` is now officially tested and supported.
|
||||||
|
|
||||||
|
``Ubuntu 24.04`` brings a new default Python runtime ``3.12`` and with it
|
||||||
|
improvements to eventlet and SQLAlchemy 2.0 compatibility where required.
|
||||||
|
``2025.1`` is the last release to officially support and test with ``Ubuntu 22.04``.
|
||||||
|
|
||||||
|
``2025.1`` is the second official skip-level upgrade release supporting
|
||||||
|
upgrades from either ``2024.1`` or ``2024.2``
|
||||||
|
|
||||||
|
Another area of focus in this cycle was the data sources supported by Watcher.
|
||||||
|
The long obsolete `Ceilometer` API data source has been removed, and the untested
|
||||||
|
`Monasca` data source has been deprecated and a new `Prometheus` data source
|
||||||
|
has been added.
|
||||||
|
https://specs.openstack.org/openstack/watcher-specs/specs/2025.1/approved/prometheus-datasource.html
|
||||||
|
fixes:
|
||||||
|
- https://bugs.launchpad.net/watcher/+bug/2086710 watcher compatibility between
|
||||||
|
eventlet, apscheduler, and python 3.12
|
||||||
|
- https://bugs.launchpad.net/watcher/+bug/2067815 refactoring of the SQLAlchemy
|
||||||
|
database layer to improve compatibility with eventlet on newer Pythons
|
||||||
|
- A number of linting issues were addressed with the introduction
|
||||||
|
of pre-commit. The issues include but are not limited to, spelling and grammar
|
||||||
|
fixes across all documentation and code, numerous sphinx documentation build warnings
|
||||||
|
, and incorrect file permission such as files having the execute bit set when not required.
|
||||||
|
While none of these changes should affect the runtime behavior of Watcher, they
|
||||||
|
generally improve the maintainability and quality of the codebase.
|
||||||
@@ -0,0 +1,6 @@
|
|||||||
|
---
|
||||||
|
features:
|
||||||
|
- |
|
||||||
|
Support for instance metrics has been added to the prometheus data source.
|
||||||
|
The included metrics are `instance_cpu_usage`, `instance_ram_usage`,
|
||||||
|
`instance_ram_allocated` and `instance_root_disk_size`.
|
||||||
@@ -4,4 +4,4 @@ features:
|
|||||||
will standardize interactions with scoring engines
|
will standardize interactions with scoring engines
|
||||||
through the common API. It is possible to use the
|
through the common API. It is possible to use the
|
||||||
scoring engine by different Strategies, which
|
scoring engine by different Strategies, which
|
||||||
improve the code and data model re-use.
|
improve the code and data model reuse.
|
||||||
|
|||||||
@@ -0,0 +1,30 @@
|
|||||||
|
---
|
||||||
|
features:
|
||||||
|
- |
|
||||||
|
A new module, ``watcher.wsgi``, has been added as a place to gather WSGI
|
||||||
|
``application`` objects. This is intended to ease deployment by providing
|
||||||
|
a consistent location for these objects. For example, if using uWSGI then
|
||||||
|
instead of:
|
||||||
|
|
||||||
|
.. code-block:: ini
|
||||||
|
|
||||||
|
[uwsgi]
|
||||||
|
wsgi-file = /bin/watcher-api-wsgi
|
||||||
|
|
||||||
|
You can now use:
|
||||||
|
|
||||||
|
.. code-block:: ini
|
||||||
|
|
||||||
|
[uwsgi]
|
||||||
|
module = watcher.wsgi.api:application
|
||||||
|
|
||||||
|
This also simplifies deployment with other WSGI servers that expect module
|
||||||
|
paths such as gunicorn.
|
||||||
|
deprecations:
|
||||||
|
- |
|
||||||
|
The watcher-api-wsgi console script is deprecated for removal
|
||||||
|
in a future release. This artifact is generated using a setup-tools
|
||||||
|
extension that is provide by PBR which is also deprecated.
|
||||||
|
due to the changes in python packaging this custom extensions
|
||||||
|
is planned to be removed form all OpenStack projects in a future
|
||||||
|
PBR release in favor of module based wsgi applications entry points.
|
||||||
@@ -5,5 +5,5 @@ features:
|
|||||||
failure. The amount of failures allowed before giving up and the time before
|
failure. The amount of failures allowed before giving up and the time before
|
||||||
reattempting are configurable. The `api_call_retries` and
|
reattempting are configurable. The `api_call_retries` and
|
||||||
`api_query_timeout` parameters in the `[collector]` group can be used to
|
`api_query_timeout` parameters in the `[collector]` group can be used to
|
||||||
adjust these paremeters. 10 retries with a 1 second time in between
|
adjust these parameters. 10 retries with a 1 second time in between
|
||||||
reattempts is the default.
|
reattempts is the default.
|
||||||
|
|||||||
@@ -3,6 +3,6 @@ features:
|
|||||||
Watcher starts to support API microversions since Stein cycle. From now
|
Watcher starts to support API microversions since Stein cycle. From now
|
||||||
onwards all API changes should be made with saving backward compatibility.
|
onwards all API changes should be made with saving backward compatibility.
|
||||||
To specify API version operator should use OpenStack-API-Version
|
To specify API version operator should use OpenStack-API-Version
|
||||||
HTTP header. If operator wants to know the mininum and maximum supported
|
HTTP header. If operator wants to know the minimum and maximum supported
|
||||||
versions by API, he/she can access /v1 resource and Watcher API will
|
versions by API, he/she can access /v1 resource and Watcher API will
|
||||||
return appropriate headers in response.
|
return appropriate headers in response.
|
||||||
|
|||||||
@@ -0,0 +1,8 @@
|
|||||||
|
---
|
||||||
|
fixes:
|
||||||
|
- |
|
||||||
|
When using prometheus datasource and more that one target has the same value
|
||||||
|
for the ``fqdn_label``, the driver used the wrong instance label to query for host
|
||||||
|
metrics. The ``instance`` label is no longer used in the queries but the ``fqdn_label``
|
||||||
|
which identifies all the metrics for a specific compute node.
|
||||||
|
see Bug 2103451: https://bugs.launchpad.net/watcher/+bug/2103451 for more info.
|
||||||
10
releasenotes/notes/bug-2110947.yaml
Normal file
10
releasenotes/notes/bug-2110947.yaml
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
---
|
||||||
|
fixes:
|
||||||
|
- |
|
||||||
|
Previously, when users attempted to create a new audit without providing
|
||||||
|
a name and a goal or an audit template, the API returned error 500 and an
|
||||||
|
incorrect error message was displayed.
|
||||||
|
|
||||||
|
Now, Watcher displays a helpful message and returns HTTP error 400.
|
||||||
|
|
||||||
|
For more info see: https://bugs.launchpad.net/watcher/+bug/2110947
|
||||||
47
releasenotes/notes/bug-2112187-763bae283e0b736d.yaml
Normal file
47
releasenotes/notes/bug-2112187-763bae283e0b736d.yaml
Normal file
@@ -0,0 +1,47 @@
|
|||||||
|
---
|
||||||
|
security:
|
||||||
|
- |
|
||||||
|
Watchers no longer forges requests on behalf of a tenant when
|
||||||
|
swapping volumes. Prior to this release watcher had 2 implementations
|
||||||
|
of moving a volume, it could use cinders volume migrate api or its own
|
||||||
|
internal implementation that directly calls nova volume attachment update
|
||||||
|
api. The former is safe and the recommend way to move volumes between
|
||||||
|
cinder storage backend the internal implementation was insecure, fragile
|
||||||
|
due to a lack of error handling and capable of deleting user data.
|
||||||
|
|
||||||
|
Insecure: the internal volume migration operation created a new keystone
|
||||||
|
user with a weak name and password and added it to the tenants project
|
||||||
|
with the admin role. It then used that user to forge request on behalf
|
||||||
|
of the tenant with admin right to swap the volume. if the applier was
|
||||||
|
restarted during the execution of this operation it would never be cleaned
|
||||||
|
up.
|
||||||
|
|
||||||
|
Fragile: the error handling was minimal, the swap volume api is async
|
||||||
|
so watcher has to poll for completion, there was no support to resume
|
||||||
|
that if interrupted of the time out was exceeded.
|
||||||
|
|
||||||
|
Data-loss: while the internal polling logic returned success or failure
|
||||||
|
watcher did not check the result, once the function returned it
|
||||||
|
unconditionally deleted the source volume. For larger volumes this
|
||||||
|
could result in irretrievable data loss.
|
||||||
|
|
||||||
|
Finally if a volume was swapped using the internal workflow it put
|
||||||
|
the nova instance in an out of sync state. If the VM was live migrated
|
||||||
|
after the swap volume completed successfully prior to a hard reboot
|
||||||
|
then the migration would fail or succeed and break tenant isolation.
|
||||||
|
|
||||||
|
see: https://bugs.launchpad.net/nova/+bug/2112187 for details.
|
||||||
|
fixes:
|
||||||
|
- |
|
||||||
|
All code related to creating keystone user and granting roles has been
|
||||||
|
removed. The internal swap volume implementation has been removed and
|
||||||
|
replaced by cinders volume migrate api. Note as part of this change
|
||||||
|
Watcher will no longer attempt volume migrations or retypes if the
|
||||||
|
instance is in the `Verify Resize` task state. This resolves several
|
||||||
|
issues related to volume migration in the zone migration and
|
||||||
|
Storage capacity balance strategies. While efforts have been made
|
||||||
|
to maintain backward compatibility these changes are required to
|
||||||
|
address a security weakness in watcher's prior approach.
|
||||||
|
|
||||||
|
see: https://bugs.launchpad.net/nova/+bug/2112187 for more context.
|
||||||
|
|
||||||
14
releasenotes/notes/bug-2113776-4bd314fb46623fbc.yaml
Normal file
14
releasenotes/notes/bug-2113776-4bd314fb46623fbc.yaml
Normal file
@@ -0,0 +1,14 @@
|
|||||||
|
---
|
||||||
|
fixes:
|
||||||
|
- |
|
||||||
|
When running an audit with the `workload_stabilization` strategy with
|
||||||
|
`instance_ram_usage` metric in a deployment with prometheus datasource,
|
||||||
|
the host metric for the ram usage was wrongly reported with the incorrect
|
||||||
|
unit which lead to incorrect standard deviation and action plans due to the
|
||||||
|
application of the wrong scale factor in the algorithm.
|
||||||
|
|
||||||
|
The host ram usage metric is now properly reported in KB when using a
|
||||||
|
prometheus datasource and the strategy `workload_stabilization` calculates
|
||||||
|
the standard deviation properly.
|
||||||
|
|
||||||
|
For more details: https://launchpad.net/bugs/2113776
|
||||||
@@ -0,0 +1,5 @@
|
|||||||
|
---
|
||||||
|
deprecations:
|
||||||
|
- |
|
||||||
|
Monasca Data Source is deprecated and will be removed in the future, due
|
||||||
|
to inactivity of Monasca project.
|
||||||
@@ -0,0 +1,10 @@
|
|||||||
|
---
|
||||||
|
fixes:
|
||||||
|
- |
|
||||||
|
Host maintenance strategy should migrate servers based on backup node if specified
|
||||||
|
or rely on nova scheduler. It was enabling disabled hosts with watcher_disabled
|
||||||
|
reason and migrating servers to those nodes. It can impact customer workload. Compute
|
||||||
|
nodes were disabled for a reason.
|
||||||
|
|
||||||
|
Host maintenance strategy is fixed now to support migrating servers only on backup
|
||||||
|
node or rely on nova scheduler if no backup node is provided.
|
||||||
@@ -0,0 +1,6 @@
|
|||||||
|
---
|
||||||
|
upgrade:
|
||||||
|
- |
|
||||||
|
Python 3.8 support has been dropped. Last release of watcher
|
||||||
|
supporting python 3.8 is 13.0.0.
|
||||||
|
The minimum version of Python now supported is Python 3.9.
|
||||||
@@ -0,0 +1,13 @@
|
|||||||
|
---
|
||||||
|
fixes:
|
||||||
|
- |
|
||||||
|
Previously, if an action failed in an action plan, the state of the
|
||||||
|
action plan was reported as SUCCEEDED if the execution of the action has
|
||||||
|
finished regardless of the outcome.
|
||||||
|
|
||||||
|
Watcher will now reflect the actual state of all the actions in the plan
|
||||||
|
after the execution has finished. If any action has status FAILED, it
|
||||||
|
will set the state of the action plan as FAILED. This is the expected
|
||||||
|
behavior according to Watcher documentation.
|
||||||
|
|
||||||
|
For more info see: https://bugs.launchpad.net/watcher/+bug/2106407
|
||||||
@@ -7,7 +7,7 @@ prelude: >
|
|||||||
features:
|
features:
|
||||||
- |
|
- |
|
||||||
A new threadpool for the decision engine that contributors can use to
|
A new threadpool for the decision engine that contributors can use to
|
||||||
improve the performance of many operations, primarily I/O bound onces.
|
improve the performance of many operations, primarily I/O bound ones.
|
||||||
The amount of workers used by the decision engine threadpool can be
|
The amount of workers used by the decision engine threadpool can be
|
||||||
configured to scale according to the available infrastructure using
|
configured to scale according to the available infrastructure using
|
||||||
the `watcher_decision_engine.max_general_workers` config option.
|
the `watcher_decision_engine.max_general_workers` config option.
|
||||||
|
|||||||
@@ -13,7 +13,7 @@ features:
|
|||||||
* disk_gb_reserved: The amount of disk a node has reserved for its own use.
|
* disk_gb_reserved: The amount of disk a node has reserved for its own use.
|
||||||
* disk_ratio: Disk allocation ratio.
|
* disk_ratio: Disk allocation ratio.
|
||||||
|
|
||||||
We also add some new propeties:
|
We also add some new properties:
|
||||||
|
|
||||||
* vcpu_capacity: The amount of vcpu, take allocation ratio into account,
|
* vcpu_capacity: The amount of vcpu, take allocation ratio into account,
|
||||||
but do not include reserved.
|
but do not include reserved.
|
||||||
|
|||||||
@@ -0,0 +1,8 @@
|
|||||||
|
---
|
||||||
|
features:
|
||||||
|
- |
|
||||||
|
A new Prometheus data source is added. This allows the watcher decision
|
||||||
|
engine to collect metrics from Prometheus server. For more information
|
||||||
|
about the Prometheus data source, including limitations and configuration
|
||||||
|
options see
|
||||||
|
https://docs.openstack.org/watcher/latest/datasources/prometheus.html
|
||||||
@@ -0,0 +1,6 @@
|
|||||||
|
---
|
||||||
|
upgrade:
|
||||||
|
- |
|
||||||
|
Ceilometer datasource has been completely removed. The datasource requires
|
||||||
|
ceilometer API which was already removed from Ceilometer. Use the other
|
||||||
|
datasources such as Gnocchi.
|
||||||
@@ -0,0 +1,7 @@
|
|||||||
|
---
|
||||||
|
fixes:
|
||||||
|
- |
|
||||||
|
`Bug #2110538 <https://bugs.launchpad.net/watcher/+bug/2110538>`_:
|
||||||
|
Corrected the HTTP error code returned when watcher users try to create
|
||||||
|
audits with invalid parameters. The API now correctly returns a 400 Bad
|
||||||
|
Request error.
|
||||||
@@ -1,4 +1,4 @@
|
|||||||
---
|
---
|
||||||
features:
|
features:
|
||||||
- Check the creation time of the action plan,
|
- Check the creation time of the action plan,
|
||||||
and set its state to SUPERSEDED if it has expired.
|
and set its state to SUPERSEDED if it has expired.
|
||||||
|
|||||||
@@ -4,5 +4,5 @@ features:
|
|||||||
Whenever a Watcher object is created, updated or deleted, a versioned
|
Whenever a Watcher object is created, updated or deleted, a versioned
|
||||||
notification will, if it's relevant, be automatically sent to notify in order
|
notification will, if it's relevant, be automatically sent to notify in order
|
||||||
to allow an event-driven style of architecture within Watcher. Moreover, it
|
to allow an event-driven style of architecture within Watcher. Moreover, it
|
||||||
will also give other services and/or 3rd party softwares (e.g. monitoring
|
will also give other services and/or 3rd party software (e.g. monitoring
|
||||||
solutions or rules engines) the ability to react to such events.
|
solutions or rules engines) the ability to react to such events.
|
||||||
|
|||||||
@@ -1,3 +1,3 @@
|
|||||||
---
|
---
|
||||||
features:
|
features:
|
||||||
- Add a service supervisor to watch Watcher deamons.
|
- Add a service supervisor to watch Watcher daemons.
|
||||||
|
|||||||
@@ -3,4 +3,4 @@
|
|||||||
===========================
|
===========================
|
||||||
|
|
||||||
.. release-notes::
|
.. release-notes::
|
||||||
:branch: stable/2023.1
|
:branch: unmaintained/2023.1
|
||||||
|
|||||||
6
releasenotes/source/2024.1.rst
Normal file
6
releasenotes/source/2024.1.rst
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
===========================
|
||||||
|
2024.1 Series Release Notes
|
||||||
|
===========================
|
||||||
|
|
||||||
|
.. release-notes::
|
||||||
|
:branch: stable/2024.1
|
||||||
6
releasenotes/source/2024.2.rst
Normal file
6
releasenotes/source/2024.2.rst
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
===========================
|
||||||
|
2024.2 Series Release Notes
|
||||||
|
===========================
|
||||||
|
|
||||||
|
.. release-notes::
|
||||||
|
:branch: stable/2024.2
|
||||||
@@ -28,12 +28,12 @@ import sys
|
|||||||
# If extensions (or modules to document with autodoc) are in another directory,
|
# If extensions (or modules to document with autodoc) are in another directory,
|
||||||
# add these directories to sys.path here. If the directory is relative to the
|
# add these directories to sys.path here. If the directory is relative to the
|
||||||
# documentation root, use os.path.abspath to make it absolute, like shown here.
|
# documentation root, use os.path.abspath to make it absolute, like shown here.
|
||||||
#sys.path.insert(0, os.path.abspath('.'))
|
# sys.path.insert(0, os.path.abspath('.'))
|
||||||
|
|
||||||
# -- General configuration ----------------------------------------------------
|
# -- General configuration ----------------------------------------------------
|
||||||
|
|
||||||
# If your documentation needs a minimal Sphinx version, state it here.
|
# If your documentation needs a minimal Sphinx version, state it here.
|
||||||
#needs_sphinx = '1.0'
|
# needs_sphinx = '1.0'
|
||||||
|
|
||||||
# Add any Sphinx extension module names here, as strings. They can be
|
# Add any Sphinx extension module names here, as strings. They can be
|
||||||
# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom ones.
|
# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom ones.
|
||||||
@@ -47,7 +47,7 @@ templates_path = ['_templates']
|
|||||||
source_suffix = '.rst'
|
source_suffix = '.rst'
|
||||||
|
|
||||||
# The encoding of source files.
|
# The encoding of source files.
|
||||||
#source_encoding = 'utf-8-sig'
|
# source_encoding = 'utf-8-sig'
|
||||||
|
|
||||||
# The master toctree document.
|
# The master toctree document.
|
||||||
master_doc = 'index'
|
master_doc = 'index'
|
||||||
@@ -63,37 +63,37 @@ release = ''
|
|||||||
|
|
||||||
# The language for content autogenerated by Sphinx. Refer to documentation
|
# The language for content autogenerated by Sphinx. Refer to documentation
|
||||||
# for a list of supported languages.
|
# for a list of supported languages.
|
||||||
#language = None
|
# language = None
|
||||||
|
|
||||||
# There are two options for replacing |today|: either, you set today to some
|
# There are two options for replacing |today|: either, you set today to some
|
||||||
# non-false value, then it is used:
|
# non-false value, then it is used:
|
||||||
#today = ''
|
# today = ''
|
||||||
# Else, today_fmt is used as the format for a strftime call.
|
# Else, today_fmt is used as the format for a strftime call.
|
||||||
#today_fmt = '%B %d, %Y'
|
# today_fmt = '%B %d, %Y'
|
||||||
|
|
||||||
# List of patterns, relative to source directory, that match files and
|
# List of patterns, relative to source directory, that match files and
|
||||||
# directories to ignore when looking for source files.
|
# directories to ignore when looking for source files.
|
||||||
exclude_patterns = ['_build']
|
exclude_patterns = ['_build']
|
||||||
|
|
||||||
# The reST default role (used for this markup: `text`) to use for all documents
|
# The reST default role (used for this markup: `text`) to use for all documents
|
||||||
#default_role = None
|
# default_role = None
|
||||||
|
|
||||||
# If true, '()' will be appended to :func: etc. cross-reference text.
|
# If true, '()' will be appended to :func: etc. cross-reference text.
|
||||||
#add_function_parentheses = True
|
# add_function_parentheses = True
|
||||||
|
|
||||||
# If true, the current module name will be prepended to all description
|
# If true, the current module name will be prepended to all description
|
||||||
# unit titles (such as .. function::).
|
# unit titles (such as .. function::).
|
||||||
#add_module_names = True
|
# add_module_names = True
|
||||||
|
|
||||||
# If true, sectionauthor and moduleauthor directives will be shown in the
|
# If true, sectionauthor and moduleauthor directives will be shown in the
|
||||||
# output. They are ignored by default.
|
# output. They are ignored by default.
|
||||||
#show_authors = False
|
# show_authors = False
|
||||||
|
|
||||||
# The name of the Pygments (syntax highlighting) style to use.
|
# The name of the Pygments (syntax highlighting) style to use.
|
||||||
pygments_style = 'native'
|
pygments_style = 'native'
|
||||||
|
|
||||||
# A list of ignored prefixes for module index sorting.
|
# A list of ignored prefixes for module index sorting.
|
||||||
#modindex_common_prefix = []
|
# modindex_common_prefix = []
|
||||||
|
|
||||||
# openstackdocstheme options
|
# openstackdocstheme options
|
||||||
openstackdocs_repo_name = 'openstack/watcher'
|
openstackdocs_repo_name = 'openstack/watcher'
|
||||||
@@ -109,26 +109,26 @@ html_theme = 'openstackdocs'
|
|||||||
# Theme options are theme-specific and customize the look and feel of a theme
|
# Theme options are theme-specific and customize the look and feel of a theme
|
||||||
# further. For a list of options available for each theme, see the
|
# further. For a list of options available for each theme, see the
|
||||||
# documentation.
|
# documentation.
|
||||||
#html_theme_options = {}
|
# html_theme_options = {}
|
||||||
|
|
||||||
# Add any paths that contain custom themes here, relative to this directory.
|
# Add any paths that contain custom themes here, relative to this directory.
|
||||||
#html_theme_path = []
|
# html_theme_path = []
|
||||||
|
|
||||||
# The name for this set of Sphinx documents. If None, it defaults to
|
# The name for this set of Sphinx documents. If None, it defaults to
|
||||||
# "<project> v<release> documentation".
|
# "<project> v<release> documentation".
|
||||||
#html_title = None
|
# html_title = None
|
||||||
|
|
||||||
# A shorter title for the navigation bar. Default is the same as html_title.
|
# A shorter title for the navigation bar. Default is the same as html_title.
|
||||||
#html_short_title = None
|
# html_short_title = None
|
||||||
|
|
||||||
# The name of an image file (relative to this directory) to place at the top
|
# The name of an image file (relative to this directory) to place at the top
|
||||||
# of the sidebar.
|
# of the sidebar.
|
||||||
#html_logo = None
|
# html_logo = None
|
||||||
|
|
||||||
# The name of an image file (within the static path) to use as favicon of the
|
# The name of an image file (within the static path) to use as favicon of the
|
||||||
# docs. This file should be a Windows icon file (.ico) being 16x16 or 32x32
|
# docs. This file should be a Windows icon file (.ico) being 16x16 or 32x32
|
||||||
# pixels large.
|
# pixels large.
|
||||||
#html_favicon = None
|
# html_favicon = None
|
||||||
|
|
||||||
# Add any paths that contain custom static files (such as style sheets) here,
|
# Add any paths that contain custom static files (such as style sheets) here,
|
||||||
# relative to this directory. They are copied after the builtin static files,
|
# relative to this directory. They are copied after the builtin static files,
|
||||||
@@ -137,44 +137,44 @@ html_static_path = ['_static']
|
|||||||
|
|
||||||
# If not '', a 'Last updated on:' timestamp is inserted at every page bottom,
|
# If not '', a 'Last updated on:' timestamp is inserted at every page bottom,
|
||||||
# using the given strftime format.
|
# using the given strftime format.
|
||||||
#html_last_updated_fmt = '%b %d, %Y'
|
# html_last_updated_fmt = '%b %d, %Y'
|
||||||
|
|
||||||
# If true, SmartyPants will be used to convert quotes and dashes to
|
# If true, SmartyPants will be used to convert quotes and dashes to
|
||||||
# typographically correct entities.
|
# typographically correct entities.
|
||||||
#html_use_smartypants = True
|
# html_use_smartypants = True
|
||||||
|
|
||||||
# Custom sidebar templates, maps document names to template names.
|
# Custom sidebar templates, maps document names to template names.
|
||||||
#html_sidebars = {}
|
# html_sidebars = {}
|
||||||
|
|
||||||
# Additional templates that should be rendered to pages, maps page names to
|
# Additional templates that should be rendered to pages, maps page names to
|
||||||
# template names.
|
# template names.
|
||||||
#html_additional_pages = {}
|
# html_additional_pages = {}
|
||||||
|
|
||||||
# If false, no module index is generated.
|
# If false, no module index is generated.
|
||||||
#html_domain_indices = True
|
# html_domain_indices = True
|
||||||
|
|
||||||
# If false, no index is generated.
|
# If false, no index is generated.
|
||||||
#html_use_index = True
|
# html_use_index = True
|
||||||
|
|
||||||
# If true, the index is split into individual pages for each letter.
|
# If true, the index is split into individual pages for each letter.
|
||||||
#html_split_index = False
|
# html_split_index = False
|
||||||
|
|
||||||
# If true, links to the reST sources are added to the pages.
|
# If true, links to the reST sources are added to the pages.
|
||||||
#html_show_sourcelink = True
|
# html_show_sourcelink = True
|
||||||
|
|
||||||
# If true, "Created using Sphinx" is shown in the HTML footer. Default is True.
|
# If true, "Created using Sphinx" is shown in the HTML footer. Default is True.
|
||||||
#html_show_sphinx = True
|
# html_show_sphinx = True
|
||||||
|
|
||||||
# If true, "(C) Copyright ..." is shown in the HTML footer. Default is True.
|
# If true, "(C) Copyright ..." is shown in the HTML footer. Default is True.
|
||||||
#html_show_copyright = True
|
# html_show_copyright = True
|
||||||
|
|
||||||
# If true, an OpenSearch description file will be output, and all pages will
|
# If true, an OpenSearch description file will be output, and all pages will
|
||||||
# contain a <link> tag referring to it. The value of this option must be the
|
# contain a <link> tag referring to it. The value of this option must be the
|
||||||
# base URL from which the finished HTML is served.
|
# base URL from which the finished HTML is served.
|
||||||
#html_use_opensearch = ''
|
# html_use_opensearch = ''
|
||||||
|
|
||||||
# This is the file name suffix for HTML files (e.g. ".xhtml").
|
# This is the file name suffix for HTML files (e.g. ".xhtml").
|
||||||
#html_file_suffix = None
|
# html_file_suffix = None
|
||||||
|
|
||||||
# Output file base name for HTML help builder.
|
# Output file base name for HTML help builder.
|
||||||
htmlhelp_basename = 'watcherdoc'
|
htmlhelp_basename = 'watcherdoc'
|
||||||
@@ -183,42 +183,42 @@ htmlhelp_basename = 'watcherdoc'
|
|||||||
# -- Options for LaTeX output -------------------------------------------------
|
# -- Options for LaTeX output -------------------------------------------------
|
||||||
|
|
||||||
latex_elements = {
|
latex_elements = {
|
||||||
# The paper size ('letterpaper' or 'a4paper').
|
# The paper size ('letterpaper' or 'a4paper').
|
||||||
#'papersize': 'letterpaper',
|
# 'papersize': 'letterpaper',
|
||||||
|
|
||||||
# The font size ('10pt', '11pt' or '12pt').
|
# The font size ('10pt', '11pt' or '12pt').
|
||||||
#'pointsize': '10pt',
|
# 'pointsize': '10pt',
|
||||||
|
|
||||||
# Additional stuff for the LaTeX preamble.
|
# Additional stuff for the LaTeX preamble.
|
||||||
#'preamble': '',
|
# 'preamble': '',
|
||||||
}
|
}
|
||||||
|
|
||||||
# Grouping the document tree into LaTeX files. List of tuples
|
# Grouping the document tree into LaTeX files. List of tuples
|
||||||
# (source start file, target name, title, author, documentclass [howto/manual])
|
# (source start file, target name, title, author, documentclass [howto/manual])
|
||||||
latex_documents = [
|
latex_documents = [
|
||||||
('index', 'watcher.tex', 'Watcher Documentation',
|
('index', 'watcher.tex', 'Watcher Documentation',
|
||||||
'Watcher developers', 'manual'),
|
'Watcher developers', 'manual'),
|
||||||
]
|
]
|
||||||
|
|
||||||
# The name of an image file (relative to this directory) to place at the top of
|
# The name of an image file (relative to this directory) to place at the top of
|
||||||
# the title page.
|
# the title page.
|
||||||
#latex_logo = None
|
# latex_logo = None
|
||||||
|
|
||||||
# For "manual" documents, if this is true, then toplevel headings are parts,
|
# For "manual" documents, if this is true, then toplevel headings are parts,
|
||||||
# not chapters.
|
# not chapters.
|
||||||
#latex_use_parts = False
|
# latex_use_parts = False
|
||||||
|
|
||||||
# If true, show page references after internal links.
|
# If true, show page references after internal links.
|
||||||
#latex_show_pagerefs = False
|
# latex_show_pagerefs = False
|
||||||
|
|
||||||
# If true, show URL addresses after external links.
|
# If true, show URL addresses after external links.
|
||||||
#latex_show_urls = False
|
# latex_show_urls = False
|
||||||
|
|
||||||
# Documents to append as an appendix to all manuals.
|
# Documents to append as an appendix to all manuals.
|
||||||
#latex_appendices = []
|
# latex_appendices = []
|
||||||
|
|
||||||
# If false, no module index is generated.
|
# If false, no module index is generated.
|
||||||
#latex_domain_indices = True
|
# latex_domain_indices = True
|
||||||
|
|
||||||
|
|
||||||
# -- Options for manual page output -------------------------------------------
|
# -- Options for manual page output -------------------------------------------
|
||||||
@@ -231,7 +231,7 @@ man_pages = [
|
|||||||
]
|
]
|
||||||
|
|
||||||
# If true, show URL addresses after external links.
|
# If true, show URL addresses after external links.
|
||||||
#man_show_urls = False
|
# man_show_urls = False
|
||||||
|
|
||||||
|
|
||||||
# -- Options for Texinfo output -----------------------------------------------
|
# -- Options for Texinfo output -----------------------------------------------
|
||||||
@@ -240,19 +240,19 @@ man_pages = [
|
|||||||
# (source start file, target name, title, author,
|
# (source start file, target name, title, author,
|
||||||
# dir menu entry, description, category)
|
# dir menu entry, description, category)
|
||||||
texinfo_documents = [
|
texinfo_documents = [
|
||||||
('index', 'watcher', 'Watcher Documentation',
|
('index', 'watcher', 'Watcher Documentation',
|
||||||
'Watcher developers', 'watcher', 'One line description of project.',
|
'Watcher developers', 'watcher', 'One line description of project.',
|
||||||
'Miscellaneous'),
|
'Miscellaneous'),
|
||||||
]
|
]
|
||||||
|
|
||||||
# Documents to append as an appendix to all manuals.
|
# Documents to append as an appendix to all manuals.
|
||||||
#texinfo_appendices = []
|
# texinfo_appendices = []
|
||||||
|
|
||||||
# If false, no module index is generated.
|
# If false, no module index is generated.
|
||||||
#texinfo_domain_indices = True
|
# texinfo_domain_indices = True
|
||||||
|
|
||||||
# How to display URL addresses: 'footnote', 'no', or 'inline'.
|
# How to display URL addresses: 'footnote', 'no', or 'inline'.
|
||||||
#texinfo_show_urls = 'footnote'
|
# texinfo_show_urls = 'footnote'
|
||||||
|
|
||||||
# -- Options for Internationalization output ------------------------------
|
# -- Options for Internationalization output ------------------------------
|
||||||
locale_dirs = ['locale/']
|
locale_dirs = ['locale/']
|
||||||
|
|||||||
@@ -21,6 +21,8 @@ Contents:
|
|||||||
:maxdepth: 1
|
:maxdepth: 1
|
||||||
|
|
||||||
unreleased
|
unreleased
|
||||||
|
2024.2
|
||||||
|
2024.1
|
||||||
2023.2
|
2023.2
|
||||||
2023.1
|
2023.1
|
||||||
zed
|
zed
|
||||||
|
|||||||
@@ -3,15 +3,16 @@
|
|||||||
# Andi Chandler <andi@gowling.com>, 2020. #zanata
|
# Andi Chandler <andi@gowling.com>, 2020. #zanata
|
||||||
# Andi Chandler <andi@gowling.com>, 2022. #zanata
|
# Andi Chandler <andi@gowling.com>, 2022. #zanata
|
||||||
# Andi Chandler <andi@gowling.com>, 2023. #zanata
|
# Andi Chandler <andi@gowling.com>, 2023. #zanata
|
||||||
|
# Andi Chandler <andi@gowling.com>, 2024. #zanata
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: python-watcher\n"
|
"Project-Id-Version: python-watcher\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2023-08-14 03:05+0000\n"
|
"POT-Creation-Date: 2025-01-10 00:32+0000\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"PO-Revision-Date: 2023-06-21 07:54+0000\n"
|
"PO-Revision-Date: 2024-04-18 12:21+0000\n"
|
||||||
"Last-Translator: Andi Chandler <andi@gowling.com>\n"
|
"Last-Translator: Andi Chandler <andi@gowling.com>\n"
|
||||||
"Language-Team: English (United Kingdom)\n"
|
"Language-Team: English (United Kingdom)\n"
|
||||||
"Language: en_GB\n"
|
"Language: en_GB\n"
|
||||||
@@ -63,12 +64,21 @@ msgstr "2.0.0"
|
|||||||
msgid "2023.1 Series Release Notes"
|
msgid "2023.1 Series Release Notes"
|
||||||
msgstr "2023.1 Series Release Notes"
|
msgstr "2023.1 Series Release Notes"
|
||||||
|
|
||||||
|
msgid "2023.2 Series Release Notes"
|
||||||
|
msgstr "2023.2 Series Release Notes"
|
||||||
|
|
||||||
msgid "3.0.0"
|
msgid "3.0.0"
|
||||||
msgstr "3.0.0"
|
msgstr "3.0.0"
|
||||||
|
|
||||||
|
msgid "3.0.0.0rc1"
|
||||||
|
msgstr "3.0.0.0rc1"
|
||||||
|
|
||||||
msgid "4.0.0"
|
msgid "4.0.0"
|
||||||
msgstr "4.0.0"
|
msgstr "4.0.0"
|
||||||
|
|
||||||
|
msgid "4.0.0.0rc1"
|
||||||
|
msgstr "4.0.0.0rc1"
|
||||||
|
|
||||||
msgid "6.0.0"
|
msgid "6.0.0"
|
||||||
msgstr "6.0.0"
|
msgstr "6.0.0"
|
||||||
|
|
||||||
@@ -210,6 +220,17 @@ msgstr ""
|
|||||||
msgid "Added SUSPENDED audit state"
|
msgid "Added SUSPENDED audit state"
|
||||||
msgstr "Added SUSPENDED audit state"
|
msgstr "Added SUSPENDED audit state"
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"Added a generic scoring engine module, which will standardize interactions "
|
||||||
|
"with scoring engines through the common API. It is possible to use the "
|
||||||
|
"scoring engine by different Strategies, which improve the code and data "
|
||||||
|
"model re-use."
|
||||||
|
msgstr ""
|
||||||
|
"Added a generic scoring engine module, which will standardize interactions "
|
||||||
|
"with scoring engines through the common API. It is possible to use the "
|
||||||
|
"scoring engine by different Strategies, which improve the code and data "
|
||||||
|
"model re-use."
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Added a generic scoring engine module, which will standarize interactions "
|
"Added a generic scoring engine module, which will standarize interactions "
|
||||||
"with scoring engines through the common API. It is possible to use the "
|
"with scoring engines through the common API. It is possible to use the "
|
||||||
@@ -329,6 +350,13 @@ msgstr ""
|
|||||||
"Added a way to create periodic audit to be able to continuously optimise the "
|
"Added a way to create periodic audit to be able to continuously optimise the "
|
||||||
"cloud infrastructure."
|
"cloud infrastructure."
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"Added a way to return the of available goals depending on which strategies "
|
||||||
|
"have been deployed on the node where the decision engine is running."
|
||||||
|
msgstr ""
|
||||||
|
"Added a way to return the of available goals depending on which strategies "
|
||||||
|
"have been deployed on the node where the decision engine is running."
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Added a way to return the of available goals depending on which strategies "
|
"Added a way to return the of available goals depending on which strategies "
|
||||||
"have been deployed on the node where the decison engine is running."
|
"have been deployed on the node where the decison engine is running."
|
||||||
@@ -405,6 +433,15 @@ msgstr ""
|
|||||||
"that negatively affects performance of a high priority VM by over utilising "
|
"that negatively affects performance of a high priority VM by over utilising "
|
||||||
"Last Level Cache."
|
"Last Level Cache."
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"Added strategy to identify and migrate a Noisy Neighbor - a low priority VM "
|
||||||
|
"that negatively affects performance of a high priority VM by over utilizing "
|
||||||
|
"Last Level Cache."
|
||||||
|
msgstr ""
|
||||||
|
"Added strategy to identify and migrate a Noisy Neighbour - a low-priority VM "
|
||||||
|
"that negatively affects the performance of a high-priority VM by over "
|
||||||
|
"utilising Last Level Cache."
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Added the functionality to filter out instances which have metadata field "
|
"Added the functionality to filter out instances which have metadata field "
|
||||||
"'optimize' set to False. For now, this is only available for the "
|
"'optimize' set to False. For now, this is only available for the "
|
||||||
@@ -511,6 +548,13 @@ msgstr ""
|
|||||||
msgid "Centralize all configuration options for Watcher."
|
msgid "Centralize all configuration options for Watcher."
|
||||||
msgstr "Centralise all configuration options for Watcher."
|
msgstr "Centralise all configuration options for Watcher."
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"Check the creation time of the action plan, and set its state to SUPERSEDED "
|
||||||
|
"if it has expired."
|
||||||
|
msgstr ""
|
||||||
|
"Check the creation time of the action plan, and set its state to SUPERSEDED "
|
||||||
|
"if it has expired."
|
||||||
|
|
||||||
msgid "Contents:"
|
msgid "Contents:"
|
||||||
msgstr "Contents:"
|
msgstr "Contents:"
|
||||||
|
|
||||||
|
|||||||
@@ -1,33 +0,0 @@
|
|||||||
# Gérald LONLAS <g.lonlas@gmail.com>, 2016. #zanata
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: python-watcher\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2019-03-22 02:21+0000\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
|
||||||
"PO-Revision-Date: 2016-10-22 06:44+0000\n"
|
|
||||||
"Last-Translator: Gérald LONLAS <g.lonlas@gmail.com>\n"
|
|
||||||
"Language-Team: French\n"
|
|
||||||
"Language: fr\n"
|
|
||||||
"X-Generator: Zanata 4.3.3\n"
|
|
||||||
"Plural-Forms: nplurals=2; plural=(n > 1)\n"
|
|
||||||
|
|
||||||
msgid "0.29.0"
|
|
||||||
msgstr "0.29.0"
|
|
||||||
|
|
||||||
msgid "Contents:"
|
|
||||||
msgstr "Contenu :"
|
|
||||||
|
|
||||||
msgid "Current Series Release Notes"
|
|
||||||
msgstr "Note de la release actuelle"
|
|
||||||
|
|
||||||
msgid "New Features"
|
|
||||||
msgstr "Nouvelles fonctionnalités"
|
|
||||||
|
|
||||||
msgid "Newton Series Release Notes"
|
|
||||||
msgstr "Note de release pour Newton"
|
|
||||||
|
|
||||||
msgid "Welcome to watcher's Release Notes documentation!"
|
|
||||||
msgstr "Bienvenue dans la documentation de la note de Release de Watcher"
|
|
||||||
@@ -3,4 +3,4 @@ Victoria Series Release Notes
|
|||||||
=============================
|
=============================
|
||||||
|
|
||||||
.. release-notes::
|
.. release-notes::
|
||||||
:branch: stable/victoria
|
:branch: unmaintained/victoria
|
||||||
|
|||||||
@@ -3,4 +3,4 @@ Wallaby Series Release Notes
|
|||||||
============================
|
============================
|
||||||
|
|
||||||
.. release-notes::
|
.. release-notes::
|
||||||
:branch: stable/wallaby
|
:branch: unmaintained/wallaby
|
||||||
|
|||||||
@@ -3,4 +3,4 @@ Xena Series Release Notes
|
|||||||
=========================
|
=========================
|
||||||
|
|
||||||
.. release-notes::
|
.. release-notes::
|
||||||
:branch: stable/xena
|
:branch: unmaintained/xena
|
||||||
|
|||||||
@@ -3,4 +3,4 @@ Yoga Series Release Notes
|
|||||||
=========================
|
=========================
|
||||||
|
|
||||||
.. release-notes::
|
.. release-notes::
|
||||||
:branch: stable/yoga
|
:branch: unmaintained/yoga
|
||||||
|
|||||||
@@ -3,4 +3,4 @@ Zed Series Release Notes
|
|||||||
========================
|
========================
|
||||||
|
|
||||||
.. release-notes::
|
.. release-notes::
|
||||||
:branch: stable/zed
|
:branch: unmaintained/zed
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
# The order of packages is significant, because pip processes them in the order
|
# Requirements lower bounds listed here are our best effort to keep them up to
|
||||||
# of appearance. Changing the order has an impact on the overall integration
|
# date but we do not test them so no guarantee of having them all correct. If
|
||||||
# process, which may cause wedges in the gate later.
|
# you find any incorrect lower bounds, let us know or propose a fix.
|
||||||
|
|
||||||
apscheduler>=3.5.1 # MIT License
|
apscheduler>=3.5.1 # MIT License
|
||||||
|
eventlet>=0.27.0 # MIT
|
||||||
jsonpatch>=1.21 # BSD
|
jsonpatch>=1.21 # BSD
|
||||||
keystoneauth1>=3.4.0 # Apache-2.0
|
keystoneauth1>=3.4.0 # Apache-2.0
|
||||||
jsonschema>=3.2.0 # MIT
|
jsonschema>=3.2.0 # MIT
|
||||||
@@ -18,12 +18,12 @@ oslo.db>=4.44.0 # Apache-2.0
|
|||||||
oslo.i18n>=3.20.0 # Apache-2.0
|
oslo.i18n>=3.20.0 # Apache-2.0
|
||||||
oslo.log>=3.37.0 # Apache-2.0
|
oslo.log>=3.37.0 # Apache-2.0
|
||||||
oslo.messaging>=14.1.0 # Apache-2.0
|
oslo.messaging>=14.1.0 # Apache-2.0
|
||||||
oslo.policy>=3.6.0 # Apache-2.0
|
oslo.policy>=4.5.0 # Apache-2.0
|
||||||
oslo.reports>=1.27.0 # Apache-2.0
|
oslo.reports>=1.27.0 # Apache-2.0
|
||||||
oslo.serialization>=2.25.0 # Apache-2.0
|
oslo.serialization>=2.25.0 # Apache-2.0
|
||||||
oslo.service>=1.30.0 # Apache-2.0
|
oslo.service>=1.30.0 # Apache-2.0
|
||||||
oslo.upgradecheck>=1.3.0 # Apache-2.0
|
oslo.upgradecheck>=1.3.0 # Apache-2.0
|
||||||
oslo.utils>=3.36.0 # Apache-2.0
|
oslo.utils>=7.0.0 # Apache-2.0
|
||||||
oslo.versionedobjects>=1.32.0 # Apache-2.0
|
oslo.versionedobjects>=1.32.0 # Apache-2.0
|
||||||
PasteDeploy>=1.5.2 # MIT
|
PasteDeploy>=1.5.2 # MIT
|
||||||
pbr>=3.1.1 # Apache-2.0
|
pbr>=3.1.1 # Apache-2.0
|
||||||
@@ -36,6 +36,7 @@ python-keystoneclient>=3.15.0 # Apache-2.0
|
|||||||
python-monascaclient>=1.12.0 # Apache-2.0
|
python-monascaclient>=1.12.0 # Apache-2.0
|
||||||
python-neutronclient>=6.7.0 # Apache-2.0
|
python-neutronclient>=6.7.0 # Apache-2.0
|
||||||
python-novaclient>=14.1.0 # Apache-2.0
|
python-novaclient>=14.1.0 # Apache-2.0
|
||||||
|
python-observabilityclient>=0.3.0 # Apache-2.0
|
||||||
python-openstackclient>=3.14.0 # Apache-2.0
|
python-openstackclient>=3.14.0 # Apache-2.0
|
||||||
python-ironicclient>=2.5.0 # Apache-2.0
|
python-ironicclient>=2.5.0 # Apache-2.0
|
||||||
SQLAlchemy>=1.2.5 # MIT
|
SQLAlchemy>=1.2.5 # MIT
|
||||||
|
|||||||
11
setup.cfg
11
setup.cfg
@@ -6,7 +6,8 @@ description_file =
|
|||||||
author = OpenStack
|
author = OpenStack
|
||||||
author_email = openstack-discuss@lists.openstack.org
|
author_email = openstack-discuss@lists.openstack.org
|
||||||
home_page = https://docs.openstack.org/watcher/latest/
|
home_page = https://docs.openstack.org/watcher/latest/
|
||||||
python_requires = >=3.8
|
# TODO(sean-k-mooney): bump to >= 3.10 before m3.
|
||||||
|
python_requires = >=3.9
|
||||||
classifier =
|
classifier =
|
||||||
Environment :: OpenStack
|
Environment :: OpenStack
|
||||||
Intended Audience :: Information Technology
|
Intended Audience :: Information Technology
|
||||||
@@ -17,10 +18,9 @@ classifier =
|
|||||||
Programming Language :: Python :: Implementation :: CPython
|
Programming Language :: Python :: Implementation :: CPython
|
||||||
Programming Language :: Python :: 3 :: Only
|
Programming Language :: Python :: 3 :: Only
|
||||||
Programming Language :: Python :: 3
|
Programming Language :: Python :: 3
|
||||||
Programming Language :: Python :: 3.8
|
|
||||||
Programming Language :: Python :: 3.9
|
|
||||||
Programming Language :: Python :: 3.10
|
Programming Language :: Python :: 3.10
|
||||||
Programming Language :: Python :: 3.11
|
Programming Language :: Python :: 3.11
|
||||||
|
Programming Language :: Python :: 3.12
|
||||||
|
|
||||||
[files]
|
[files]
|
||||||
packages =
|
packages =
|
||||||
@@ -109,3 +109,8 @@ watcher_cluster_data_model_collectors =
|
|||||||
compute = watcher.decision_engine.model.collector.nova:NovaClusterDataModelCollector
|
compute = watcher.decision_engine.model.collector.nova:NovaClusterDataModelCollector
|
||||||
storage = watcher.decision_engine.model.collector.cinder:CinderClusterDataModelCollector
|
storage = watcher.decision_engine.model.collector.cinder:CinderClusterDataModelCollector
|
||||||
baremetal = watcher.decision_engine.model.collector.ironic:BaremetalClusterDataModelCollector
|
baremetal = watcher.decision_engine.model.collector.ironic:BaremetalClusterDataModelCollector
|
||||||
|
|
||||||
|
[codespell]
|
||||||
|
skip = *.po,*.js,*.css,*.html,*.svg,HACKING.py,*hacking*,*build*,*_static*,doc/dictionary.txt,*.pyc,*.inv,*.gz,*.jpg,*.png,*.vsd,*.graffle,*.json
|
||||||
|
count =
|
||||||
|
quiet-level = 4
|
||||||
@@ -1,15 +1,7 @@
|
|||||||
# The order of packages is significant, because pip processes them in the order
|
|
||||||
# of appearance. Changing the order has an impact on the overall integration
|
|
||||||
# process, which may cause wedges in the gate later.
|
|
||||||
|
|
||||||
coverage>=4.5.1 # Apache-2.0
|
coverage>=4.5.1 # Apache-2.0
|
||||||
doc8>=0.8.0 # Apache-2.0
|
|
||||||
freezegun>=0.3.10 # Apache-2.0
|
freezegun>=0.3.10 # Apache-2.0
|
||||||
hacking>=3.0.1,<3.1.0 # Apache-2.0
|
|
||||||
oslotest>=3.3.0 # Apache-2.0
|
oslotest>=3.3.0 # Apache-2.0
|
||||||
testscenarios>=0.5.0 # Apache-2.0/BSD
|
testscenarios>=0.5.0 # Apache-2.0/BSD
|
||||||
testtools>=2.3.0 # MIT
|
testtools>=2.3.0 # MIT
|
||||||
stestr>=2.0.0 # Apache-2.0
|
stestr>=2.0.0 # Apache-2.0
|
||||||
os-api-ref>=1.4.0 # Apache-2.0
|
WebTest>=2.0.27 # MIT
|
||||||
bandit>=1.6.0 # Apache-2.0
|
|
||||||
WebTest>=2.0.27 # MIT
|
|
||||||
|
|||||||
42
tox.ini
42
tox.ini
@@ -8,9 +8,13 @@ basepython = python3
|
|||||||
usedevelop = True
|
usedevelop = True
|
||||||
allowlist_externals = find
|
allowlist_externals = find
|
||||||
rm
|
rm
|
||||||
install_command = pip install -c{env:TOX_CONSTRAINTS_FILE:https://releases.openstack.org/constraints/upper/master} {opts} {packages}
|
install_command = pip install -c{env:TOX_CONSTRAINTS_FILE:https://releases.openstack.org/constraints/upper/2025.1} {opts} {packages}
|
||||||
setenv =
|
setenv =
|
||||||
VIRTUAL_ENV={envdir}
|
VIRTUAL_ENV={envdir}
|
||||||
|
OS_STDOUT_CAPTURE=1
|
||||||
|
OS_STDERR_CAPTURE=1
|
||||||
|
OS_TEST_TIMEOUT=30
|
||||||
|
PYTHONDONTWRITEBYTECODE=1
|
||||||
deps =
|
deps =
|
||||||
-r{toxinidir}/test-requirements.txt
|
-r{toxinidir}/test-requirements.txt
|
||||||
-r{toxinidir}/requirements.txt
|
-r{toxinidir}/requirements.txt
|
||||||
@@ -26,12 +30,22 @@ passenv =
|
|||||||
HTTPS_PROXY
|
HTTPS_PROXY
|
||||||
no_proxy
|
no_proxy
|
||||||
NO_PROXY
|
NO_PROXY
|
||||||
|
OS_DEBUG
|
||||||
|
# NOTE(sean-k-mooney) optimization is enabled by default and when enabled
|
||||||
|
# asserts are complied out. Disable optimization to allow asserts in
|
||||||
|
# nova to fire in unit and functional tests. This can be useful for
|
||||||
|
# debugging issue with fixtures and mocks.
|
||||||
|
PYTHONOPTIMIZE
|
||||||
|
|
||||||
[testenv:pep8]
|
[testenv:pep8]
|
||||||
|
description =
|
||||||
|
Run style checks.
|
||||||
|
skip_install = true
|
||||||
|
deps =
|
||||||
|
pre-commit
|
||||||
commands =
|
commands =
|
||||||
doc8 doc/source/ CONTRIBUTING.rst HACKING.rst README.rst
|
pre-commit run --all-files --show-diff-on-failure
|
||||||
flake8
|
|
||||||
#bandit -r watcher -x watcher/tests/* -n5 -ll -s B320
|
|
||||||
|
|
||||||
[testenv:venv]
|
[testenv:venv]
|
||||||
setenv = PYTHONHASHSEED=0
|
setenv = PYTHONHASHSEED=0
|
||||||
@@ -82,7 +96,6 @@ commands =
|
|||||||
commands = python setup.py bdist_wheel
|
commands = python setup.py bdist_wheel
|
||||||
|
|
||||||
[testenv:pdf-docs]
|
[testenv:pdf-docs]
|
||||||
envdir = {toxworkdir}/docs
|
|
||||||
deps = {[testenv:docs]deps}
|
deps = {[testenv:docs]deps}
|
||||||
allowlist_externals =
|
allowlist_externals =
|
||||||
rm
|
rm
|
||||||
@@ -93,12 +106,16 @@ commands =
|
|||||||
make -C doc/build/pdf
|
make -C doc/build/pdf
|
||||||
|
|
||||||
[testenv:releasenotes]
|
[testenv:releasenotes]
|
||||||
deps = -r{toxinidir}/doc/requirements.txt
|
deps = {[testenv:docs]deps}
|
||||||
commands = sphinx-build -a -W -E -d releasenotes/build/doctrees --keep-going -b html releasenotes/source releasenotes/build/html
|
commands =
|
||||||
|
rm -rf releasenotes/build
|
||||||
|
sphinx-build -W --keep-going -b html -j auto releasenotes/source releasenotes/build/html
|
||||||
|
|
||||||
[testenv:bandit]
|
[testenv:bandit]
|
||||||
deps = -r{toxinidir}/test-requirements.txt
|
skip_install = true
|
||||||
commands = bandit -r watcher -x watcher/tests/* -n5 -ll -s B320
|
deps = {[testenv:pep8]deps}
|
||||||
|
commands =
|
||||||
|
pre-commit run --all-files --show-diff-on-failure bandit
|
||||||
|
|
||||||
[flake8]
|
[flake8]
|
||||||
filename = *.py,app.wsgi
|
filename = *.py,app.wsgi
|
||||||
@@ -131,8 +148,3 @@ extension =
|
|||||||
N342 = checks:no_redundant_import_alias
|
N342 = checks:no_redundant_import_alias
|
||||||
N366 = checks:import_stock_mock
|
N366 = checks:import_stock_mock
|
||||||
paths = ./watcher/hacking
|
paths = ./watcher/hacking
|
||||||
|
|
||||||
[doc8]
|
|
||||||
extension=.rst
|
|
||||||
# todo: stop ignoring doc/source/man when https://bugs.launchpad.net/doc8/+bug/1502391 is fixed
|
|
||||||
ignore-path=doc/source/image_src,doc/source/man,doc/source/api
|
|
||||||
|
|||||||
@@ -55,9 +55,8 @@ possible to :ref:`develop new implementations <implement_action_plugin>` which
|
|||||||
are dynamically loaded by Watcher at launch time.
|
are dynamically loaded by Watcher at launch time.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
import datetime
|
|
||||||
|
|
||||||
from http import HTTPStatus
|
from http import HTTPStatus
|
||||||
|
from oslo_utils import timeutils
|
||||||
import pecan
|
import pecan
|
||||||
from pecan import rest
|
from pecan import rest
|
||||||
import wsme
|
import wsme
|
||||||
@@ -194,9 +193,9 @@ class Action(base.APIBase):
|
|||||||
sample = cls(uuid='27e3153e-d5bf-4b7e-b517-fb518e17f34c',
|
sample = cls(uuid='27e3153e-d5bf-4b7e-b517-fb518e17f34c',
|
||||||
description='action description',
|
description='action description',
|
||||||
state='PENDING',
|
state='PENDING',
|
||||||
created_at=datetime.datetime.utcnow(),
|
created_at=timeutils.utcnow(),
|
||||||
deleted_at=None,
|
deleted_at=None,
|
||||||
updated_at=datetime.datetime.utcnow(),
|
updated_at=timeutils.utcnow(),
|
||||||
parents=[])
|
parents=[])
|
||||||
sample._action_plan_uuid = '7ae81bb3-dec3-4289-8d6c-da80bd8001ae'
|
sample._action_plan_uuid = '7ae81bb3-dec3-4289-8d6c-da80bd8001ae'
|
||||||
return cls._convert_with_links(sample, 'http://localhost:9322', expand)
|
return cls._convert_with_links(sample, 'http://localhost:9322', expand)
|
||||||
@@ -230,6 +229,7 @@ class ActionCollection(collection.Collection):
|
|||||||
|
|
||||||
class ActionsController(rest.RestController):
|
class ActionsController(rest.RestController):
|
||||||
"""REST controller for Actions."""
|
"""REST controller for Actions."""
|
||||||
|
|
||||||
def __init__(self):
|
def __init__(self):
|
||||||
super(ActionsController, self).__init__()
|
super(ActionsController, self).__init__()
|
||||||
|
|
||||||
@@ -334,7 +334,7 @@ class ActionsController(rest.RestController):
|
|||||||
policy.enforce(context, 'action:detail',
|
policy.enforce(context, 'action:detail',
|
||||||
action='action:detail')
|
action='action:detail')
|
||||||
|
|
||||||
# NOTE(lucasagomes): /detail should only work agaist collections
|
# NOTE(lucasagomes): /detail should only work against collections
|
||||||
parent = pecan.request.path.split('/')[:-1][-1]
|
parent = pecan.request.path.split('/')[:-1][-1]
|
||||||
if parent != "actions":
|
if parent != "actions":
|
||||||
raise exception.HTTPNotFound
|
raise exception.HTTPNotFound
|
||||||
|
|||||||
@@ -54,10 +54,9 @@ To see the life-cycle and description of
|
|||||||
state machine <action_plan_state_machine>`.
|
state machine <action_plan_state_machine>`.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
import datetime
|
|
||||||
|
|
||||||
from http import HTTPStatus
|
from http import HTTPStatus
|
||||||
from oslo_log import log
|
from oslo_log import log
|
||||||
|
from oslo_utils import timeutils
|
||||||
import pecan
|
import pecan
|
||||||
from pecan import rest
|
from pecan import rest
|
||||||
import wsme
|
import wsme
|
||||||
@@ -293,9 +292,9 @@ class ActionPlan(base.APIBase):
|
|||||||
def sample(cls, expand=True):
|
def sample(cls, expand=True):
|
||||||
sample = cls(uuid='9ef4d84c-41e8-4418-9220-ce55be0436af',
|
sample = cls(uuid='9ef4d84c-41e8-4418-9220-ce55be0436af',
|
||||||
state='ONGOING',
|
state='ONGOING',
|
||||||
created_at=datetime.datetime.utcnow(),
|
created_at=timeutils.utcnow(),
|
||||||
deleted_at=None,
|
deleted_at=None,
|
||||||
updated_at=datetime.datetime.utcnow())
|
updated_at=timeutils.utcnow())
|
||||||
sample._audit_uuid = 'abcee106-14d3-4515-b744-5a26885cf6f6'
|
sample._audit_uuid = 'abcee106-14d3-4515-b744-5a26885cf6f6'
|
||||||
sample._efficacy_indicators = [{'description': 'Test indicator',
|
sample._efficacy_indicators = [{'description': 'Test indicator',
|
||||||
'name': 'test_indicator',
|
'name': 'test_indicator',
|
||||||
@@ -434,7 +433,7 @@ class ActionPlansController(rest.RestController):
|
|||||||
policy.enforce(context, 'action_plan:detail',
|
policy.enforce(context, 'action_plan:detail',
|
||||||
action='action_plan:detail')
|
action='action_plan:detail')
|
||||||
|
|
||||||
# NOTE(lucasagomes): /detail should only work agaist collections
|
# NOTE(lucasagomes): /detail should only work against collections
|
||||||
parent = pecan.request.path.split('/')[:-1][-1]
|
parent = pecan.request.path.split('/')[:-1][-1]
|
||||||
if parent != "action_plans":
|
if parent != "action_plans":
|
||||||
raise exception.HTTPNotFound
|
raise exception.HTTPNotFound
|
||||||
|
|||||||
@@ -33,6 +33,9 @@ import datetime
|
|||||||
from dateutil import tz
|
from dateutil import tz
|
||||||
|
|
||||||
from http import HTTPStatus
|
from http import HTTPStatus
|
||||||
|
import jsonschema
|
||||||
|
from oslo_log import log
|
||||||
|
from oslo_utils import timeutils
|
||||||
import pecan
|
import pecan
|
||||||
from pecan import rest
|
from pecan import rest
|
||||||
import wsme
|
import wsme
|
||||||
@@ -40,8 +43,6 @@ from wsme import types as wtypes
|
|||||||
from wsme import utils as wutils
|
from wsme import utils as wutils
|
||||||
import wsmeext.pecan as wsme_pecan
|
import wsmeext.pecan as wsme_pecan
|
||||||
|
|
||||||
from oslo_log import log
|
|
||||||
|
|
||||||
from watcher._i18n import _
|
from watcher._i18n import _
|
||||||
from watcher.api.controllers import base
|
from watcher.api.controllers import base
|
||||||
from watcher.api.controllers import link
|
from watcher.api.controllers import link
|
||||||
@@ -114,6 +115,11 @@ class AuditPostType(wtypes.Base):
|
|||||||
if self.audit_type not in audit_type_values:
|
if self.audit_type not in audit_type_values:
|
||||||
raise exception.AuditTypeNotFound(audit_type=self.audit_type)
|
raise exception.AuditTypeNotFound(audit_type=self.audit_type)
|
||||||
|
|
||||||
|
if not self.audit_template_uuid and not self.goal:
|
||||||
|
message = _(
|
||||||
|
'A valid goal or audit_template_id must be provided')
|
||||||
|
raise exception.Invalid(message)
|
||||||
|
|
||||||
if (self.audit_type == objects.audit.AuditType.ONESHOT.value and
|
if (self.audit_type == objects.audit.AuditType.ONESHOT.value and
|
||||||
self.interval not in (wtypes.Unset, None)):
|
self.interval not in (wtypes.Unset, None)):
|
||||||
raise exception.AuditIntervalNotAllowed(audit_type=self.audit_type)
|
raise exception.AuditIntervalNotAllowed(audit_type=self.audit_type)
|
||||||
@@ -171,16 +177,16 @@ class AuditPostType(wtypes.Base):
|
|||||||
strategy = _get_object_by_value(context, objects.Strategy,
|
strategy = _get_object_by_value(context, objects.Strategy,
|
||||||
self.strategy)
|
self.strategy)
|
||||||
self.name = "%s-%s" % (strategy.name,
|
self.name = "%s-%s" % (strategy.name,
|
||||||
datetime.datetime.utcnow().isoformat())
|
timeutils.utcnow().isoformat())
|
||||||
elif self.audit_template_uuid:
|
elif self.audit_template_uuid:
|
||||||
audit_template = objects.AuditTemplate.get(
|
audit_template = objects.AuditTemplate.get(
|
||||||
context, self.audit_template_uuid)
|
context, self.audit_template_uuid)
|
||||||
self.name = "%s-%s" % (audit_template.name,
|
self.name = "%s-%s" % (audit_template.name,
|
||||||
datetime.datetime.utcnow().isoformat())
|
timeutils.utcnow().isoformat())
|
||||||
else:
|
else:
|
||||||
goal = _get_object_by_value(context, objects.Goal, self.goal)
|
goal = _get_object_by_value(context, objects.Goal, self.goal)
|
||||||
self.name = "%s-%s" % (goal.name,
|
self.name = "%s-%s" % (goal.name,
|
||||||
datetime.datetime.utcnow().isoformat())
|
timeutils.utcnow().isoformat())
|
||||||
# No more than 63 characters
|
# No more than 63 characters
|
||||||
if len(self.name) > 63:
|
if len(self.name) > 63:
|
||||||
LOG.warning("Audit: %s length exceeds 63 characters",
|
LOG.warning("Audit: %s length exceeds 63 characters",
|
||||||
@@ -424,15 +430,15 @@ class Audit(base.APIBase):
|
|||||||
name='My Audit',
|
name='My Audit',
|
||||||
audit_type='ONESHOT',
|
audit_type='ONESHOT',
|
||||||
state='PENDING',
|
state='PENDING',
|
||||||
created_at=datetime.datetime.utcnow(),
|
created_at=timeutils.utcnow(),
|
||||||
deleted_at=None,
|
deleted_at=None,
|
||||||
updated_at=datetime.datetime.utcnow(),
|
updated_at=timeutils.utcnow(),
|
||||||
interval='7200',
|
interval='7200',
|
||||||
scope=[],
|
scope=[],
|
||||||
auto_trigger=False,
|
auto_trigger=False,
|
||||||
next_run_time=datetime.datetime.utcnow(),
|
next_run_time=timeutils.utcnow(),
|
||||||
start_time=datetime.datetime.utcnow(),
|
start_time=timeutils.utcnow(),
|
||||||
end_time=datetime.datetime.utcnow())
|
end_time=timeutils.utcnow())
|
||||||
|
|
||||||
sample.goal_id = '7ae81bb3-dec3-4289-8d6c-da80bd8001ae'
|
sample.goal_id = '7ae81bb3-dec3-4289-8d6c-da80bd8001ae'
|
||||||
sample.strategy_id = '7ae81bb3-dec3-4289-8d6c-da80bd8001ff'
|
sample.strategy_id = '7ae81bb3-dec3-4289-8d6c-da80bd8001ff'
|
||||||
@@ -468,6 +474,7 @@ class AuditCollection(collection.Collection):
|
|||||||
|
|
||||||
class AuditsController(rest.RestController):
|
class AuditsController(rest.RestController):
|
||||||
"""REST controller for Audits."""
|
"""REST controller for Audits."""
|
||||||
|
|
||||||
def __init__(self):
|
def __init__(self):
|
||||||
super(AuditsController, self).__init__()
|
super(AuditsController, self).__init__()
|
||||||
self.dc_client = rpcapi.DecisionEngineAPI()
|
self.dc_client = rpcapi.DecisionEngineAPI()
|
||||||
@@ -569,7 +576,7 @@ class AuditsController(rest.RestController):
|
|||||||
context = pecan.request.context
|
context = pecan.request.context
|
||||||
policy.enforce(context, 'audit:detail',
|
policy.enforce(context, 'audit:detail',
|
||||||
action='audit:detail')
|
action='audit:detail')
|
||||||
# NOTE(lucasagomes): /detail should only work agaist collections
|
# NOTE(lucasagomes): /detail should only work against collections
|
||||||
parent = pecan.request.path.split('/')[:-1][-1]
|
parent = pecan.request.path.split('/')[:-1][-1]
|
||||||
if parent != "audits":
|
if parent != "audits":
|
||||||
raise exception.HTTPNotFound
|
raise exception.HTTPNotFound
|
||||||
@@ -611,11 +618,6 @@ class AuditsController(rest.RestController):
|
|||||||
if self.from_audits:
|
if self.from_audits:
|
||||||
raise exception.OperationNotPermitted
|
raise exception.OperationNotPermitted
|
||||||
|
|
||||||
if not audit._goal_uuid:
|
|
||||||
raise exception.Invalid(
|
|
||||||
message=_('A valid goal_id or audit_template_id '
|
|
||||||
'must be provided'))
|
|
||||||
|
|
||||||
strategy_uuid = audit.strategy_uuid
|
strategy_uuid = audit.strategy_uuid
|
||||||
no_schema = True
|
no_schema = True
|
||||||
if strategy_uuid is not None:
|
if strategy_uuid is not None:
|
||||||
@@ -626,8 +628,12 @@ class AuditsController(rest.RestController):
|
|||||||
if schema:
|
if schema:
|
||||||
# validate input parameter with default value feedback
|
# validate input parameter with default value feedback
|
||||||
no_schema = False
|
no_schema = False
|
||||||
utils.StrictDefaultValidatingDraft4Validator(schema).validate(
|
try:
|
||||||
audit.parameters)
|
utils.StrictDefaultValidatingDraft4Validator(
|
||||||
|
schema).validate(audit.parameters)
|
||||||
|
except jsonschema.exceptions.ValidationError as e:
|
||||||
|
raise exception.Invalid(
|
||||||
|
_('Invalid parameters for strategy: %s') % e)
|
||||||
|
|
||||||
if no_schema and audit.parameters:
|
if no_schema and audit.parameters:
|
||||||
raise exception.Invalid(_('Specify parameters but no predefined '
|
raise exception.Invalid(_('Specify parameters but no predefined '
|
||||||
|
|||||||
@@ -43,9 +43,8 @@ will be launched automatically or will need a manual confirmation from the
|
|||||||
:ref:`Administrator <administrator_definition>`.
|
:ref:`Administrator <administrator_definition>`.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
import datetime
|
|
||||||
|
|
||||||
from http import HTTPStatus
|
from http import HTTPStatus
|
||||||
|
from oslo_utils import timeutils
|
||||||
import pecan
|
import pecan
|
||||||
from pecan import rest
|
from pecan import rest
|
||||||
import wsme
|
import wsme
|
||||||
@@ -440,9 +439,9 @@ class AuditTemplate(base.APIBase):
|
|||||||
description='Description of my audit template',
|
description='Description of my audit template',
|
||||||
goal_uuid='83e44733-b640-40e2-8d8a-7dd3be7134e6',
|
goal_uuid='83e44733-b640-40e2-8d8a-7dd3be7134e6',
|
||||||
strategy_uuid='367d826e-b6a4-4b70-bc44-c3f6fe1c9986',
|
strategy_uuid='367d826e-b6a4-4b70-bc44-c3f6fe1c9986',
|
||||||
created_at=datetime.datetime.utcnow(),
|
created_at=timeutils.utcnow(),
|
||||||
deleted_at=None,
|
deleted_at=None,
|
||||||
updated_at=datetime.datetime.utcnow(),
|
updated_at=timeutils.utcnow(),
|
||||||
scope=[],)
|
scope=[],)
|
||||||
return cls._convert_with_links(sample, 'http://localhost:9322', expand)
|
return cls._convert_with_links(sample, 'http://localhost:9322', expand)
|
||||||
|
|
||||||
@@ -476,6 +475,7 @@ class AuditTemplateCollection(collection.Collection):
|
|||||||
|
|
||||||
class AuditTemplatesController(rest.RestController):
|
class AuditTemplatesController(rest.RestController):
|
||||||
"""REST controller for AuditTemplates."""
|
"""REST controller for AuditTemplates."""
|
||||||
|
|
||||||
def __init__(self):
|
def __init__(self):
|
||||||
super(AuditTemplatesController, self).__init__()
|
super(AuditTemplatesController, self).__init__()
|
||||||
|
|
||||||
@@ -576,7 +576,7 @@ class AuditTemplatesController(rest.RestController):
|
|||||||
policy.enforce(context, 'audit_template:detail',
|
policy.enforce(context, 'audit_template:detail',
|
||||||
action='audit_template:detail')
|
action='audit_template:detail')
|
||||||
|
|
||||||
# NOTE(lucasagomes): /detail should only work agaist collections
|
# NOTE(lucasagomes): /detail should only work against collections
|
||||||
parent = pecan.request.path.split('/')[:-1][-1]
|
parent = pecan.request.path.split('/')[:-1][-1]
|
||||||
if parent != "audit_templates":
|
if parent != "audit_templates":
|
||||||
raise exception.HTTPNotFound
|
raise exception.HTTPNotFound
|
||||||
|
|||||||
@@ -32,6 +32,7 @@ from watcher.decision_engine import rpcapi
|
|||||||
|
|
||||||
class DataModelController(rest.RestController):
|
class DataModelController(rest.RestController):
|
||||||
"""REST controller for data model"""
|
"""REST controller for data model"""
|
||||||
|
|
||||||
def __init__(self):
|
def __init__(self):
|
||||||
super(DataModelController, self).__init__()
|
super(DataModelController, self).__init__()
|
||||||
|
|
||||||
|
|||||||
@@ -24,7 +24,7 @@ Here are some examples of :ref:`Goals <goal_definition>`:
|
|||||||
- minimize the energy consumption
|
- minimize the energy consumption
|
||||||
- minimize the number of compute nodes (consolidation)
|
- minimize the number of compute nodes (consolidation)
|
||||||
- balance the workload among compute nodes
|
- balance the workload among compute nodes
|
||||||
- minimize the license cost (some softwares have a licensing model which is
|
- minimize the license cost (some software have a licensing model which is
|
||||||
based on the number of sockets or cores where the software is deployed)
|
based on the number of sockets or cores where the software is deployed)
|
||||||
- find the most appropriate moment for a planned maintenance on a
|
- find the most appropriate moment for a planned maintenance on a
|
||||||
given group of host (which may be an entire availability zone):
|
given group of host (which may be an entire availability zone):
|
||||||
@@ -153,6 +153,7 @@ class GoalCollection(collection.Collection):
|
|||||||
|
|
||||||
class GoalsController(rest.RestController):
|
class GoalsController(rest.RestController):
|
||||||
"""REST controller for Goals."""
|
"""REST controller for Goals."""
|
||||||
|
|
||||||
def __init__(self):
|
def __init__(self):
|
||||||
super(GoalsController, self).__init__()
|
super(GoalsController, self).__init__()
|
||||||
|
|
||||||
@@ -216,7 +217,7 @@ class GoalsController(rest.RestController):
|
|||||||
context = pecan.request.context
|
context = pecan.request.context
|
||||||
policy.enforce(context, 'goal:detail',
|
policy.enforce(context, 'goal:detail',
|
||||||
action='goal:detail')
|
action='goal:detail')
|
||||||
# NOTE(lucasagomes): /detail should only work agaist collections
|
# NOTE(lucasagomes): /detail should only work against collections
|
||||||
parent = pecan.request.path.split('/')[:-1][-1]
|
parent = pecan.request.path.split('/')[:-1][-1]
|
||||||
if parent != "goals":
|
if parent != "goals":
|
||||||
raise exception.HTTPNotFound
|
raise exception.HTTPNotFound
|
||||||
|
|||||||
@@ -145,6 +145,7 @@ class ScoringEngineCollection(collection.Collection):
|
|||||||
|
|
||||||
class ScoringEngineController(rest.RestController):
|
class ScoringEngineController(rest.RestController):
|
||||||
"""REST controller for Scoring Engines."""
|
"""REST controller for Scoring Engines."""
|
||||||
|
|
||||||
def __init__(self):
|
def __init__(self):
|
||||||
super(ScoringEngineController, self).__init__()
|
super(ScoringEngineController, self).__init__()
|
||||||
|
|
||||||
|
|||||||
@@ -175,6 +175,7 @@ class ServiceCollection(collection.Collection):
|
|||||||
|
|
||||||
class ServicesController(rest.RestController):
|
class ServicesController(rest.RestController):
|
||||||
"""REST controller for Services."""
|
"""REST controller for Services."""
|
||||||
|
|
||||||
def __init__(self):
|
def __init__(self):
|
||||||
super(ServicesController, self).__init__()
|
super(ServicesController, self).__init__()
|
||||||
|
|
||||||
@@ -236,7 +237,7 @@ class ServicesController(rest.RestController):
|
|||||||
context = pecan.request.context
|
context = pecan.request.context
|
||||||
policy.enforce(context, 'service:detail',
|
policy.enforce(context, 'service:detail',
|
||||||
action='service:detail')
|
action='service:detail')
|
||||||
# NOTE(lucasagomes): /detail should only work agaist collections
|
# NOTE(lucasagomes): /detail should only work against collections
|
||||||
parent = pecan.request.path.split('/')[:-1][-1]
|
parent = pecan.request.path.split('/')[:-1][-1]
|
||||||
if parent != "services":
|
if parent != "services":
|
||||||
raise exception.HTTPNotFound
|
raise exception.HTTPNotFound
|
||||||
|
|||||||
@@ -196,6 +196,7 @@ class StrategyCollection(collection.Collection):
|
|||||||
|
|
||||||
class StrategiesController(rest.RestController):
|
class StrategiesController(rest.RestController):
|
||||||
"""REST controller for Strategies."""
|
"""REST controller for Strategies."""
|
||||||
|
|
||||||
def __init__(self):
|
def __init__(self):
|
||||||
super(StrategiesController, self).__init__()
|
super(StrategiesController, self).__init__()
|
||||||
|
|
||||||
@@ -283,7 +284,7 @@ class StrategiesController(rest.RestController):
|
|||||||
context = pecan.request.context
|
context = pecan.request.context
|
||||||
policy.enforce(context, 'strategy:detail',
|
policy.enforce(context, 'strategy:detail',
|
||||||
action='strategy:detail')
|
action='strategy:detail')
|
||||||
# NOTE(lucasagomes): /detail should only work agaist collections
|
# NOTE(lucasagomes): /detail should only work against collections
|
||||||
parent = pecan.request.path.split('/')[:-1][-1]
|
parent = pecan.request.path.split('/')[:-1][-1]
|
||||||
if parent != "strategies":
|
if parent != "strategies":
|
||||||
raise exception.HTTPNotFound
|
raise exception.HTTPNotFound
|
||||||
|
|||||||
@@ -161,6 +161,7 @@ class MultiType(wtypes.UserType):
|
|||||||
:param types: Variable-length list of types.
|
:param types: Variable-length list of types.
|
||||||
|
|
||||||
"""
|
"""
|
||||||
|
|
||||||
def __init__(self, *types):
|
def __init__(self, *types):
|
||||||
self.types = types
|
self.types = types
|
||||||
|
|
||||||
|
|||||||
@@ -32,6 +32,7 @@ LOG = log.getLogger(__name__)
|
|||||||
|
|
||||||
class WebhookController(rest.RestController):
|
class WebhookController(rest.RestController):
|
||||||
"""REST controller for webhooks resource."""
|
"""REST controller for webhooks resource."""
|
||||||
|
|
||||||
def __init__(self):
|
def __init__(self):
|
||||||
super(WebhookController, self).__init__()
|
super(WebhookController, self).__init__()
|
||||||
self.dc_client = rpcapi.DecisionEngineAPI()
|
self.dc_client = rpcapi.DecisionEngineAPI()
|
||||||
|
|||||||
@@ -83,6 +83,7 @@ class NoExceptionTracebackHook(hooks.PecanHook):
|
|||||||
# 'on_error' never fired for wsme+pecan pair. wsme @wsexpose decorator
|
# 'on_error' never fired for wsme+pecan pair. wsme @wsexpose decorator
|
||||||
# catches and handles all the errors, so 'on_error' dedicated for unhandled
|
# catches and handles all the errors, so 'on_error' dedicated for unhandled
|
||||||
# exceptions never fired.
|
# exceptions never fired.
|
||||||
|
|
||||||
def after(self, state):
|
def after(self, state):
|
||||||
# Omit empty body. Some errors may not have body at this level yet.
|
# Omit empty body. Some errors may not have body at this level yet.
|
||||||
if not state.response.body:
|
if not state.response.body:
|
||||||
|
|||||||
@@ -33,6 +33,7 @@ class AuthTokenMiddleware(auth_token.AuthProtocol):
|
|||||||
for public routes in the API.
|
for public routes in the API.
|
||||||
|
|
||||||
"""
|
"""
|
||||||
|
|
||||||
def __init__(self, app, conf, public_api_routes=()):
|
def __init__(self, app, conf, public_api_routes=()):
|
||||||
route_pattern_tpl = r'%s(\.json|\.xml)?$'
|
route_pattern_tpl = r'%s(\.json|\.xml)?$'
|
||||||
|
|
||||||
|
|||||||
@@ -56,12 +56,30 @@ class DefaultActionPlanHandler(base.BaseActionPlanHandler):
|
|||||||
applier = default.DefaultApplier(self.ctx, self.service)
|
applier = default.DefaultApplier(self.ctx, self.service)
|
||||||
applier.execute(self.action_plan_uuid)
|
applier.execute(self.action_plan_uuid)
|
||||||
|
|
||||||
action_plan.state = objects.action_plan.State.SUCCEEDED
|
# If any action has failed the action plan should be FAILED
|
||||||
|
# Define default values for successful execution
|
||||||
|
ap_state = objects.action_plan.State.SUCCEEDED
|
||||||
|
notification_kwargs = {
|
||||||
|
'phase': fields.NotificationPhase.END
|
||||||
|
}
|
||||||
|
|
||||||
|
failed_filter = {'action_plan_uuid': self.action_plan_uuid,
|
||||||
|
'state': objects.action.State.FAILED}
|
||||||
|
failed_actions = objects.Action.list(
|
||||||
|
self.ctx, filters=failed_filter, eager=True)
|
||||||
|
if failed_actions:
|
||||||
|
ap_state = objects.action_plan.State.FAILED
|
||||||
|
notification_kwargs = {
|
||||||
|
'phase': fields.NotificationPhase.ERROR,
|
||||||
|
'priority': fields.NotificationPriority.ERROR
|
||||||
|
}
|
||||||
|
|
||||||
|
action_plan.state = ap_state
|
||||||
action_plan.save()
|
action_plan.save()
|
||||||
notifications.action_plan.send_action_notification(
|
notifications.action_plan.send_action_notification(
|
||||||
self.ctx, action_plan,
|
self.ctx, action_plan,
|
||||||
action=fields.NotificationAction.EXECUTION,
|
action=fields.NotificationAction.EXECUTION,
|
||||||
phase=fields.NotificationPhase.END)
|
**notification_kwargs)
|
||||||
|
|
||||||
except exception.ActionPlanCancelled as e:
|
except exception.ActionPlanCancelled as e:
|
||||||
LOG.exception(e)
|
LOG.exception(e)
|
||||||
|
|||||||
@@ -118,7 +118,8 @@ class BaseAction(loadable.Loadable, metaclass=abc.ABCMeta):
|
|||||||
"""
|
"""
|
||||||
raise NotImplementedError()
|
raise NotImplementedError()
|
||||||
|
|
||||||
@abc.abstractproperty
|
@property
|
||||||
|
@abc.abstractmethod
|
||||||
def schema(self):
|
def schema(self):
|
||||||
"""Defines a Schema that the input parameters shall comply to
|
"""Defines a Schema that the input parameters shall comply to
|
||||||
|
|
||||||
|
|||||||
@@ -17,14 +17,11 @@ import jsonschema
|
|||||||
|
|
||||||
from oslo_log import log
|
from oslo_log import log
|
||||||
|
|
||||||
from cinderclient import client as cinder_client
|
|
||||||
from watcher._i18n import _
|
from watcher._i18n import _
|
||||||
from watcher.applier.actions import base
|
from watcher.applier.actions import base
|
||||||
from watcher.common import cinder_helper
|
from watcher.common import cinder_helper
|
||||||
from watcher.common import exception
|
from watcher.common import exception
|
||||||
from watcher.common import keystone_helper
|
|
||||||
from watcher.common import nova_helper
|
from watcher.common import nova_helper
|
||||||
from watcher.common import utils
|
|
||||||
from watcher import conf
|
from watcher import conf
|
||||||
|
|
||||||
CONF = conf.CONF
|
CONF = conf.CONF
|
||||||
@@ -70,8 +67,6 @@ class VolumeMigrate(base.BaseAction):
|
|||||||
|
|
||||||
def __init__(self, config, osc=None):
|
def __init__(self, config, osc=None):
|
||||||
super(VolumeMigrate, self).__init__(config)
|
super(VolumeMigrate, self).__init__(config)
|
||||||
self.temp_username = utils.random_string(10)
|
|
||||||
self.temp_password = utils.random_string(10)
|
|
||||||
self.cinder_util = cinder_helper.CinderHelper(osc=self.osc)
|
self.cinder_util = cinder_helper.CinderHelper(osc=self.osc)
|
||||||
self.nova_util = nova_helper.NovaHelper(osc=self.osc)
|
self.nova_util = nova_helper.NovaHelper(osc=self.osc)
|
||||||
|
|
||||||
@@ -134,83 +129,42 @@ class VolumeMigrate(base.BaseAction):
|
|||||||
|
|
||||||
def _can_swap(self, volume):
|
def _can_swap(self, volume):
|
||||||
"""Judge volume can be swapped"""
|
"""Judge volume can be swapped"""
|
||||||
|
# TODO(sean-k-mooney): rename this to _can_migrate and update
|
||||||
|
# tests to reflect that.
|
||||||
|
|
||||||
|
# cinder volume migration can migrate volumes that are not
|
||||||
|
# attached to instances or nova can migrate the data for cinder
|
||||||
|
# if the volume is in-use. If the volume has no attachments
|
||||||
|
# allow cinder to decided if it can be migrated.
|
||||||
if not volume.attachments:
|
if not volume.attachments:
|
||||||
return False
|
LOG.debug(f"volume: {volume.id} has no attachments")
|
||||||
instance_id = volume.attachments[0]['server_id']
|
|
||||||
instance_status = self.nova_util.find_instance(instance_id).status
|
|
||||||
|
|
||||||
if (volume.status == 'in-use' and
|
|
||||||
instance_status in ('ACTIVE', 'PAUSED', 'RESIZED')):
|
|
||||||
return True
|
return True
|
||||||
|
|
||||||
return False
|
# since it has attachments we need to validate nova's constraints
|
||||||
|
instance_id = volume.attachments[0]['server_id']
|
||||||
def _create_user(self, volume, user):
|
instance_status = self.nova_util.find_instance(instance_id).status
|
||||||
"""Create user with volume attribute and user information"""
|
LOG.debug(
|
||||||
keystone_util = keystone_helper.KeystoneHelper(osc=self.osc)
|
f"volume: {volume.id} is attached to instance: {instance_id} "
|
||||||
project_id = getattr(volume, 'os-vol-tenant-attr:tenant_id')
|
f"in instance status: {instance_status}")
|
||||||
user['project'] = project_id
|
# NOTE(sean-k-mooney): This used to allow RESIZED which
|
||||||
user['domain'] = keystone_util.get_project(project_id).domain_id
|
# is the resize_verify task state, that is not an acceptable time
|
||||||
user['roles'] = ['admin']
|
# to migrate volumes, if nova does not block this in the API
|
||||||
return keystone_util.create_user(user)
|
# today that is probably a bug. PAUSED is also questionable but
|
||||||
|
# it should generally be safe.
|
||||||
def _get_cinder_client(self, session):
|
return (volume.status == 'in-use' and
|
||||||
"""Get cinder client by session"""
|
instance_status in ('ACTIVE', 'PAUSED'))
|
||||||
return cinder_client.Client(
|
|
||||||
CONF.cinder_client.api_version,
|
|
||||||
session=session,
|
|
||||||
endpoint_type=CONF.cinder_client.endpoint_type)
|
|
||||||
|
|
||||||
def _swap_volume(self, volume, dest_type):
|
|
||||||
"""Swap volume to dest_type
|
|
||||||
|
|
||||||
Limitation note: only for compute libvirt driver
|
|
||||||
"""
|
|
||||||
if not dest_type:
|
|
||||||
raise exception.Invalid(
|
|
||||||
message=(_("destination type is required when "
|
|
||||||
"migration type is swap")))
|
|
||||||
|
|
||||||
if not self._can_swap(volume):
|
|
||||||
raise exception.Invalid(
|
|
||||||
message=(_("Invalid state for swapping volume")))
|
|
||||||
|
|
||||||
user_info = {
|
|
||||||
'name': self.temp_username,
|
|
||||||
'password': self.temp_password}
|
|
||||||
user = self._create_user(volume, user_info)
|
|
||||||
keystone_util = keystone_helper.KeystoneHelper(osc=self.osc)
|
|
||||||
try:
|
|
||||||
session = keystone_util.create_session(
|
|
||||||
user.id, self.temp_password)
|
|
||||||
temp_cinder = self._get_cinder_client(session)
|
|
||||||
|
|
||||||
# swap volume
|
|
||||||
new_volume = self.cinder_util.create_volume(
|
|
||||||
temp_cinder, volume, dest_type)
|
|
||||||
self.nova_util.swap_volume(volume, new_volume)
|
|
||||||
|
|
||||||
# delete old volume
|
|
||||||
self.cinder_util.delete_volume(volume)
|
|
||||||
|
|
||||||
finally:
|
|
||||||
keystone_util.delete_user(user)
|
|
||||||
|
|
||||||
return True
|
|
||||||
|
|
||||||
def _migrate(self, volume_id, dest_node, dest_type):
|
def _migrate(self, volume_id, dest_node, dest_type):
|
||||||
|
|
||||||
try:
|
try:
|
||||||
volume = self.cinder_util.get_volume(volume_id)
|
volume = self.cinder_util.get_volume(volume_id)
|
||||||
if self.migration_type == self.SWAP:
|
# for backward compatibility map swap to migrate.
|
||||||
if dest_node:
|
if self.migration_type in (self.SWAP, self.MIGRATE):
|
||||||
LOG.warning("dest_node is ignored")
|
if not self._can_swap(volume):
|
||||||
return self._swap_volume(volume, dest_type)
|
raise exception.Invalid(
|
||||||
|
message=(_("Invalid state for swapping volume")))
|
||||||
|
return self.cinder_util.migrate(volume, dest_node)
|
||||||
elif self.migration_type == self.RETYPE:
|
elif self.migration_type == self.RETYPE:
|
||||||
return self.cinder_util.retype(volume, dest_type)
|
return self.cinder_util.retype(volume, dest_type)
|
||||||
elif self.migration_type == self.MIGRATE:
|
|
||||||
return self.cinder_util.migrate(volume, dest_node)
|
|
||||||
else:
|
else:
|
||||||
raise exception.Invalid(
|
raise exception.Invalid(
|
||||||
message=(_("Migration of type '%(migration_type)s' is not "
|
message=(_("Migration of type '%(migration_type)s' is not "
|
||||||
|
|||||||
0
watcher/applier/default.py
Executable file → Normal file
0
watcher/applier/default.py
Executable file → Normal file
@@ -199,5 +199,6 @@ class TaskFlowNop(flow_task.Task):
|
|||||||
|
|
||||||
We need at least two atoms to create a link.
|
We need at least two atoms to create a link.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
def execute(self):
|
def execute(self):
|
||||||
pass
|
pass
|
||||||
|
|||||||
@@ -15,13 +15,15 @@
|
|||||||
# common/service.py. This allows the API service to run without monkey
|
# common/service.py. This allows the API service to run without monkey
|
||||||
# patching under Apache (which uses its own concurrency model). Mixing
|
# patching under Apache (which uses its own concurrency model). Mixing
|
||||||
# concurrency models can cause undefined behavior and potentially API timeouts.
|
# concurrency models can cause undefined behavior and potentially API timeouts.
|
||||||
import eventlet
|
# NOTE(sean-k-mooney) while ^ is true, since that was written asyncio was added
|
||||||
|
# to the code base in addition to apscheduler which provides native threads.
|
||||||
eventlet.monkey_patch()
|
# As such we have a lot of technical debt to fix with regards to watchers
|
||||||
|
# concurrency model as we are mixing up to 3 models the same process.
|
||||||
# Monkey patch the original current_thread to use the up-to-date _active
|
# apscheduler does not technically support eventlet but it has mostly worked
|
||||||
# global variable. See https://bugs.launchpad.net/bugs/1863021 and
|
# until now, apscheduler is used to provide a job schedulers which mixes
|
||||||
# https://github.com/eventlet/eventlet/issues/592
|
# monkey patched and non monkey patched code in the same process.
|
||||||
import __original_module_threading as orig_threading # noqa
|
# That is problematic and can lead to errors on python 3.12+.
|
||||||
import threading # noqa
|
# The maas support added asyncio to the codebase which is unsafe to mix
|
||||||
orig_threading.current_thread.__globals__['_active'] = threading._active
|
# with eventlets by default.
|
||||||
|
from watcher import eventlet
|
||||||
|
eventlet.patch()
|
||||||
|
|||||||
@@ -153,7 +153,7 @@ class CinderHelper(object):
|
|||||||
final_status = ('success', 'error')
|
final_status = ('success', 'error')
|
||||||
while getattr(volume, 'migration_status') not in final_status:
|
while getattr(volume, 'migration_status') not in final_status:
|
||||||
volume = self.get_volume(volume.id)
|
volume = self.get_volume(volume.id)
|
||||||
LOG.debug('Waiting the migration of {0}'.format(volume))
|
LOG.debug('Waiting the migration of %s', volume)
|
||||||
time.sleep(retry_interval)
|
time.sleep(retry_interval)
|
||||||
if getattr(volume, 'migration_status') == 'error':
|
if getattr(volume, 'migration_status') == 'error':
|
||||||
host_name = getattr(volume, 'os-vol-host-attr:host')
|
host_name = getattr(volume, 'os-vol-host-attr:host')
|
||||||
@@ -230,7 +230,7 @@ class CinderHelper(object):
|
|||||||
availability_zone=getattr(volume, 'availability_zone'))
|
availability_zone=getattr(volume, 'availability_zone'))
|
||||||
while getattr(new_volume, 'status') != 'available' and retry:
|
while getattr(new_volume, 'status') != 'available' and retry:
|
||||||
new_volume = cinder.volumes.get(new_volume.id)
|
new_volume = cinder.volumes.get(new_volume.id)
|
||||||
LOG.debug('Waiting volume creation of {0}'.format(new_volume))
|
LOG.debug('Waiting volume creation of %s', new_volume)
|
||||||
time.sleep(retry_interval)
|
time.sleep(retry_interval)
|
||||||
retry -= 1
|
retry -= 1
|
||||||
LOG.debug("retry count: %s", retry)
|
LOG.debug("retry count: %s", retry)
|
||||||
|
|||||||
25
watcher/common/clients.py
Executable file → Normal file
25
watcher/common/clients.py
Executable file → Normal file
@@ -27,12 +27,6 @@ from novaclient import client as nvclient
|
|||||||
from watcher.common import exception
|
from watcher.common import exception
|
||||||
from watcher.common import utils
|
from watcher.common import utils
|
||||||
|
|
||||||
try:
|
|
||||||
from ceilometerclient import client as ceclient
|
|
||||||
HAS_CEILCLIENT = True
|
|
||||||
except ImportError:
|
|
||||||
HAS_CEILCLIENT = False
|
|
||||||
|
|
||||||
try:
|
try:
|
||||||
from maas import client as maas_client
|
from maas import client as maas_client
|
||||||
except ImportError:
|
except ImportError:
|
||||||
@@ -77,7 +71,6 @@ class OpenStackClients(object):
|
|||||||
self._glance = None
|
self._glance = None
|
||||||
self._gnocchi = None
|
self._gnocchi = None
|
||||||
self._cinder = None
|
self._cinder = None
|
||||||
self._ceilometer = None
|
|
||||||
self._monasca = None
|
self._monasca = None
|
||||||
self._neutron = None
|
self._neutron = None
|
||||||
self._ironic = None
|
self._ironic = None
|
||||||
@@ -188,24 +181,6 @@ class OpenStackClients(object):
|
|||||||
session=self.session)
|
session=self.session)
|
||||||
return self._cinder
|
return self._cinder
|
||||||
|
|
||||||
@exception.wrap_keystone_exception
|
|
||||||
def ceilometer(self):
|
|
||||||
if self._ceilometer:
|
|
||||||
return self._ceilometer
|
|
||||||
|
|
||||||
ceilometerclient_version = self._get_client_option('ceilometer',
|
|
||||||
'api_version')
|
|
||||||
ceilometer_endpoint_type = self._get_client_option('ceilometer',
|
|
||||||
'endpoint_type')
|
|
||||||
ceilometer_region_name = self._get_client_option('ceilometer',
|
|
||||||
'region_name')
|
|
||||||
self._ceilometer = ceclient.get_client(
|
|
||||||
ceilometerclient_version,
|
|
||||||
endpoint_type=ceilometer_endpoint_type,
|
|
||||||
region_name=ceilometer_region_name,
|
|
||||||
session=self.session)
|
|
||||||
return self._ceilometer
|
|
||||||
|
|
||||||
@exception.wrap_keystone_exception
|
@exception.wrap_keystone_exception
|
||||||
def monasca(self):
|
def monasca(self):
|
||||||
if self._monasca:
|
if self._monasca:
|
||||||
|
|||||||
@@ -11,12 +11,15 @@
|
|||||||
# under the License.
|
# under the License.
|
||||||
|
|
||||||
from oslo_context import context
|
from oslo_context import context
|
||||||
|
from oslo_db.sqlalchemy import enginefacade
|
||||||
from oslo_log import log
|
from oslo_log import log
|
||||||
from oslo_utils import timeutils
|
from oslo_utils import timeutils
|
||||||
|
|
||||||
|
|
||||||
LOG = log.getLogger(__name__)
|
LOG = log.getLogger(__name__)
|
||||||
|
|
||||||
|
|
||||||
|
@enginefacade.transaction_context_provider
|
||||||
class RequestContext(context.RequestContext):
|
class RequestContext(context.RequestContext):
|
||||||
"""Extends security contexts from the OpenStack common library."""
|
"""Extends security contexts from the OpenStack common library."""
|
||||||
|
|
||||||
|
|||||||
@@ -154,6 +154,10 @@ class InvalidParameter(Invalid):
|
|||||||
msg_fmt = _("%(parameter)s has to be of type %(parameter_type)s")
|
msg_fmt = _("%(parameter)s has to be of type %(parameter_type)s")
|
||||||
|
|
||||||
|
|
||||||
|
class MissingParameter(Invalid):
|
||||||
|
msg_fmt = _("%(parameter)s is required but missing. Check watcher.conf")
|
||||||
|
|
||||||
|
|
||||||
class InvalidIdentity(Invalid):
|
class InvalidIdentity(Invalid):
|
||||||
msg_fmt = _("Expected a uuid or int but received %(identity)s")
|
msg_fmt = _("Expected a uuid or int but received %(identity)s")
|
||||||
|
|
||||||
|
|||||||
@@ -15,8 +15,6 @@
|
|||||||
from oslo_log import log
|
from oslo_log import log
|
||||||
|
|
||||||
from keystoneauth1.exceptions import http as ks_exceptions
|
from keystoneauth1.exceptions import http as ks_exceptions
|
||||||
from keystoneauth1 import loading
|
|
||||||
from keystoneauth1 import session
|
|
||||||
from watcher._i18n import _
|
from watcher._i18n import _
|
||||||
from watcher.common import clients
|
from watcher.common import clients
|
||||||
from watcher.common import exception
|
from watcher.common import exception
|
||||||
@@ -72,8 +70,8 @@ class KeystoneHelper(object):
|
|||||||
message=(_("Project not Found: %s") % name_or_id))
|
message=(_("Project not Found: %s") % name_or_id))
|
||||||
if len(projects) > 1:
|
if len(projects) > 1:
|
||||||
raise exception.Invalid(
|
raise exception.Invalid(
|
||||||
messsage=(_("Project name seems ambiguous: %s") %
|
message=(_("Project name seems ambiguous: %s") %
|
||||||
name_or_id))
|
name_or_id))
|
||||||
return projects[0]
|
return projects[0]
|
||||||
|
|
||||||
def get_domain(self, name_or_id):
|
def get_domain(self, name_or_id):
|
||||||
@@ -90,35 +88,3 @@ class KeystoneHelper(object):
|
|||||||
message=(_("Domain name seems ambiguous: %s") %
|
message=(_("Domain name seems ambiguous: %s") %
|
||||||
name_or_id))
|
name_or_id))
|
||||||
return domains[0]
|
return domains[0]
|
||||||
|
|
||||||
def create_session(self, user_id, password):
|
|
||||||
user = self.get_user(user_id)
|
|
||||||
loader = loading.get_plugin_loader('password')
|
|
||||||
auth = loader.load_from_options(
|
|
||||||
auth_url=CONF.watcher_clients_auth.auth_url,
|
|
||||||
password=password,
|
|
||||||
user_id=user_id,
|
|
||||||
project_id=user.default_project_id)
|
|
||||||
return session.Session(auth=auth)
|
|
||||||
|
|
||||||
def create_user(self, user):
|
|
||||||
project = self.get_project(user['project'])
|
|
||||||
domain = self.get_domain(user['domain'])
|
|
||||||
_user = self.keystone.users.create(
|
|
||||||
user['name'],
|
|
||||||
password=user['password'],
|
|
||||||
domain=domain,
|
|
||||||
project=project,
|
|
||||||
)
|
|
||||||
for role in user['roles']:
|
|
||||||
role = self.get_role(role)
|
|
||||||
self.keystone.roles.grant(
|
|
||||||
role.id, user=_user.id, project=project.id)
|
|
||||||
return _user
|
|
||||||
|
|
||||||
def delete_user(self, user):
|
|
||||||
try:
|
|
||||||
user = self.get_user(user)
|
|
||||||
self.keystone.users.delete(user)
|
|
||||||
except exception.Invalid:
|
|
||||||
pass
|
|
||||||
|
|||||||
@@ -292,9 +292,7 @@ class NovaHelper(object):
|
|||||||
'OS-EXT-STS:vm_state') != 'resized' \
|
'OS-EXT-STS:vm_state') != 'resized' \
|
||||||
and retry:
|
and retry:
|
||||||
instance = self.nova.servers.get(instance.id)
|
instance = self.nova.servers.get(instance.id)
|
||||||
LOG.debug(
|
LOG.debug('Waiting the resize of %s to %s', instance, flavor_id)
|
||||||
'Waiting the resize of {0} to {1}'.format(
|
|
||||||
instance, flavor_id))
|
|
||||||
time.sleep(1)
|
time.sleep(1)
|
||||||
retry -= 1
|
retry -= 1
|
||||||
|
|
||||||
@@ -349,8 +347,7 @@ class NovaHelper(object):
|
|||||||
if dest_hostname is None:
|
if dest_hostname is None:
|
||||||
while (instance.status not in ['ACTIVE', 'ERROR'] and retry):
|
while (instance.status not in ['ACTIVE', 'ERROR'] and retry):
|
||||||
instance = self.nova.servers.get(instance.id)
|
instance = self.nova.servers.get(instance.id)
|
||||||
LOG.debug(
|
LOG.debug('Waiting the migration of %s', instance.id)
|
||||||
'Waiting the migration of {0}'.format(instance.id))
|
|
||||||
time.sleep(1)
|
time.sleep(1)
|
||||||
retry -= 1
|
retry -= 1
|
||||||
new_hostname = getattr(instance, 'OS-EXT-SRV-ATTR:host')
|
new_hostname = getattr(instance, 'OS-EXT-SRV-ATTR:host')
|
||||||
@@ -371,11 +368,9 @@ class NovaHelper(object):
|
|||||||
if not getattr(instance, 'OS-EXT-STS:task_state'):
|
if not getattr(instance, 'OS-EXT-STS:task_state'):
|
||||||
LOG.debug("Instance task state: %s is null", instance_id)
|
LOG.debug("Instance task state: %s is null", instance_id)
|
||||||
break
|
break
|
||||||
LOG.debug(
|
LOG.debug('Waiting the migration of %s to %s',
|
||||||
'Waiting the migration of {0} to {1}'.format(
|
instance,
|
||||||
instance,
|
getattr(instance, 'OS-EXT-SRV-ATTR:host'))
|
||||||
getattr(instance,
|
|
||||||
'OS-EXT-SRV-ATTR:host')))
|
|
||||||
time.sleep(1)
|
time.sleep(1)
|
||||||
retry -= 1
|
retry -= 1
|
||||||
|
|
||||||
@@ -725,7 +720,7 @@ class NovaHelper(object):
|
|||||||
instance_id, old_volume.id, new_volume.id)
|
instance_id, old_volume.id, new_volume.id)
|
||||||
while getattr(new_volume, 'status') != 'in-use' and retry:
|
while getattr(new_volume, 'status') != 'in-use' and retry:
|
||||||
new_volume = self.cinder.volumes.get(new_volume.id)
|
new_volume = self.cinder.volumes.get(new_volume.id)
|
||||||
LOG.debug('Waiting volume update to {0}'.format(new_volume))
|
LOG.debug('Waiting volume update to %s', new_volume)
|
||||||
time.sleep(retry_interval)
|
time.sleep(retry_interval)
|
||||||
retry -= 1
|
retry -= 1
|
||||||
LOG.debug("retry count: %s", retry)
|
LOG.debug("retry count: %s", retry)
|
||||||
|
|||||||
@@ -18,7 +18,6 @@
|
|||||||
import sys
|
import sys
|
||||||
|
|
||||||
from oslo_config import cfg
|
from oslo_config import cfg
|
||||||
from oslo_policy import opts
|
|
||||||
from oslo_policy import policy
|
from oslo_policy import policy
|
||||||
|
|
||||||
from watcher.common import exception
|
from watcher.common import exception
|
||||||
@@ -27,12 +26,6 @@ from watcher.common import policies
|
|||||||
_ENFORCER = None
|
_ENFORCER = None
|
||||||
CONF = cfg.CONF
|
CONF = cfg.CONF
|
||||||
|
|
||||||
# TODO(gmann): Remove setting the default value of config policy_file
|
|
||||||
# once oslo_policy change the default value to 'policy.yaml'.
|
|
||||||
# https://github.com/openstack/oslo.policy/blob/a626ad12fe5a3abd49d70e3e5b95589d279ab578/oslo_policy/opts.py#L49
|
|
||||||
DEFAULT_POLICY_FILE = 'policy.yaml'
|
|
||||||
opts.set_defaults(CONF, DEFAULT_POLICY_FILE)
|
|
||||||
|
|
||||||
|
|
||||||
# we can get a policy enforcer by this init.
|
# we can get a policy enforcer by this init.
|
||||||
# oslo policy support change policy rule dynamically.
|
# oslo policy support change policy rule dynamically.
|
||||||
@@ -71,7 +64,6 @@ def init(policy_file=None, rules=None,
|
|||||||
|
|
||||||
def enforce(context, rule=None, target=None,
|
def enforce(context, rule=None, target=None,
|
||||||
do_raise=True, exc=None, *args, **kwargs):
|
do_raise=True, exc=None, *args, **kwargs):
|
||||||
|
|
||||||
"""Checks authorization of a rule against the target and credentials.
|
"""Checks authorization of a rule against the target and credentials.
|
||||||
|
|
||||||
:param dict context: As much information about the user performing the
|
:param dict context: As much information about the user performing the
|
||||||
|
|||||||
@@ -16,16 +16,22 @@
|
|||||||
# See the License for the specific language governing permissions and
|
# See the License for the specific language governing permissions and
|
||||||
# limitations under the License.
|
# limitations under the License.
|
||||||
|
|
||||||
|
import eventlet
|
||||||
|
|
||||||
from apscheduler import events
|
from apscheduler import events
|
||||||
from apscheduler.executors.pool import BasePoolExecutor
|
from apscheduler.executors import pool as pool_executor
|
||||||
from apscheduler.schedulers import background
|
from apscheduler.schedulers import background
|
||||||
|
|
||||||
import futurist
|
import futurist
|
||||||
|
|
||||||
from oslo_service import service
|
from oslo_service import service
|
||||||
|
|
||||||
|
from watcher import eventlet as eventlet_helper
|
||||||
|
|
||||||
job_events = events
|
job_events = events
|
||||||
|
|
||||||
|
|
||||||
class GreenThreadPoolExecutor(BasePoolExecutor):
|
class GreenThreadPoolExecutor(pool_executor.BasePoolExecutor):
|
||||||
"""Green thread pool
|
"""Green thread pool
|
||||||
|
|
||||||
An executor that runs jobs in a green thread pool.
|
An executor that runs jobs in a green thread pool.
|
||||||
@@ -43,16 +49,25 @@ executors = {
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
class BackgroundSchedulerService(service.ServiceBase,
|
class BackgroundSchedulerService(
|
||||||
background.BackgroundScheduler):
|
service.ServiceBase, background.BackgroundScheduler):
|
||||||
def __init__(self, gconfig={}, **options):
|
def __init__(self, gconfig=None, **options):
|
||||||
|
self.should_patch = eventlet_helper.is_patched()
|
||||||
if options is None:
|
if options is None:
|
||||||
options = {'executors': executors}
|
options = {'executors': executors}
|
||||||
else:
|
else:
|
||||||
if 'executors' not in options.keys():
|
if 'executors' not in options.keys():
|
||||||
options['executors'] = executors
|
options['executors'] = executors
|
||||||
super(BackgroundSchedulerService, self).__init__(
|
super().__init__(gconfig or {}, **options)
|
||||||
gconfig, **options)
|
|
||||||
|
def _main_loop(self):
|
||||||
|
if self.should_patch:
|
||||||
|
# NOTE(sean-k-mooney): is_patched and monkey_patch form
|
||||||
|
# watcher.eventlet check a non thread local variable to early out
|
||||||
|
# as we do not use eventlet_helper.patch() here to ensure
|
||||||
|
# eventlet.monkey_patch() is actually called.
|
||||||
|
eventlet.monkey_patch()
|
||||||
|
super()._main_loop()
|
||||||
|
|
||||||
def start(self):
|
def start(self):
|
||||||
"""Start service."""
|
"""Start service."""
|
||||||
|
|||||||
@@ -26,6 +26,7 @@ from oslo_reports import guru_meditation_report as gmr
|
|||||||
from oslo_reports import opts as gmr_opts
|
from oslo_reports import opts as gmr_opts
|
||||||
from oslo_service import service
|
from oslo_service import service
|
||||||
from oslo_service import wsgi
|
from oslo_service import wsgi
|
||||||
|
from oslo_utils import timeutils
|
||||||
|
|
||||||
from watcher._i18n import _
|
from watcher._i18n import _
|
||||||
from watcher.api import app
|
from watcher.api import app
|
||||||
@@ -120,7 +121,7 @@ class ServiceHeartbeat(scheduling.BackgroundSchedulerService):
|
|||||||
'host': host})
|
'host': host})
|
||||||
if watcher_list:
|
if watcher_list:
|
||||||
watcher_service = watcher_list[0]
|
watcher_service = watcher_list[0]
|
||||||
watcher_service.last_seen_up = datetime.datetime.utcnow()
|
watcher_service.last_seen_up = timeutils.utcnow()
|
||||||
watcher_service.save()
|
watcher_service.save()
|
||||||
else:
|
else:
|
||||||
watcher_service = objects.Service(self.context)
|
watcher_service = objects.Service(self.context)
|
||||||
|
|||||||
@@ -19,30 +19,37 @@ import abc
|
|||||||
|
|
||||||
class ServiceManager(object, metaclass=abc.ABCMeta):
|
class ServiceManager(object, metaclass=abc.ABCMeta):
|
||||||
|
|
||||||
@abc.abstractproperty
|
@property
|
||||||
|
@abc.abstractmethod
|
||||||
def service_name(self):
|
def service_name(self):
|
||||||
raise NotImplementedError()
|
raise NotImplementedError()
|
||||||
|
|
||||||
@abc.abstractproperty
|
@property
|
||||||
|
@abc.abstractmethod
|
||||||
def api_version(self):
|
def api_version(self):
|
||||||
raise NotImplementedError()
|
raise NotImplementedError()
|
||||||
|
|
||||||
@abc.abstractproperty
|
@property
|
||||||
|
@abc.abstractmethod
|
||||||
def publisher_id(self):
|
def publisher_id(self):
|
||||||
raise NotImplementedError()
|
raise NotImplementedError()
|
||||||
|
|
||||||
@abc.abstractproperty
|
@property
|
||||||
|
@abc.abstractmethod
|
||||||
def conductor_topic(self):
|
def conductor_topic(self):
|
||||||
raise NotImplementedError()
|
raise NotImplementedError()
|
||||||
|
|
||||||
@abc.abstractproperty
|
@property
|
||||||
|
@abc.abstractmethod
|
||||||
def notification_topics(self):
|
def notification_topics(self):
|
||||||
raise NotImplementedError()
|
raise NotImplementedError()
|
||||||
|
|
||||||
@abc.abstractproperty
|
@property
|
||||||
|
@abc.abstractmethod
|
||||||
def conductor_endpoints(self):
|
def conductor_endpoints(self):
|
||||||
raise NotImplementedError()
|
raise NotImplementedError()
|
||||||
|
|
||||||
@abc.abstractproperty
|
@property
|
||||||
|
@abc.abstractmethod
|
||||||
def notification_endpoints(self):
|
def notification_endpoints(self):
|
||||||
raise NotImplementedError()
|
raise NotImplementedError()
|
||||||
|
|||||||
@@ -19,9 +19,7 @@
|
|||||||
import asyncio
|
import asyncio
|
||||||
import datetime
|
import datetime
|
||||||
import inspect
|
import inspect
|
||||||
import random
|
|
||||||
import re
|
import re
|
||||||
import string
|
|
||||||
|
|
||||||
from croniter import croniter
|
from croniter import croniter
|
||||||
import eventlet
|
import eventlet
|
||||||
@@ -160,14 +158,10 @@ def extend_with_strict_schema(validator_class):
|
|||||||
StrictDefaultValidatingDraft4Validator = extend_with_default(
|
StrictDefaultValidatingDraft4Validator = extend_with_default(
|
||||||
extend_with_strict_schema(validators.Draft4Validator))
|
extend_with_strict_schema(validators.Draft4Validator))
|
||||||
|
|
||||||
|
|
||||||
Draft4Validator = validators.Draft4Validator
|
Draft4Validator = validators.Draft4Validator
|
||||||
|
|
||||||
|
|
||||||
def random_string(n):
|
|
||||||
return ''.join([random.choice(
|
|
||||||
string.ascii_letters + string.digits) for i in range(n)])
|
|
||||||
|
|
||||||
|
|
||||||
# Some clients (e.g. MAAS) use asyncio, which isn't compatible with Eventlet.
|
# Some clients (e.g. MAAS) use asyncio, which isn't compatible with Eventlet.
|
||||||
# As a workaround, we're delegating such calls to a native thread.
|
# As a workaround, we're delegating such calls to a native thread.
|
||||||
def async_compat_call(f, *args, **kwargs):
|
def async_compat_call(f, *args, **kwargs):
|
||||||
|
|||||||
4
watcher/conf/__init__.py
Executable file → Normal file
4
watcher/conf/__init__.py
Executable file → Normal file
@@ -21,7 +21,6 @@ from oslo_config import cfg
|
|||||||
|
|
||||||
from watcher.conf import api
|
from watcher.conf import api
|
||||||
from watcher.conf import applier
|
from watcher.conf import applier
|
||||||
from watcher.conf import ceilometer_client
|
|
||||||
from watcher.conf import cinder_client
|
from watcher.conf import cinder_client
|
||||||
from watcher.conf import clients_auth
|
from watcher.conf import clients_auth
|
||||||
from watcher.conf import collector
|
from watcher.conf import collector
|
||||||
@@ -42,6 +41,7 @@ from watcher.conf import nova_client
|
|||||||
from watcher.conf import paths
|
from watcher.conf import paths
|
||||||
from watcher.conf import placement_client
|
from watcher.conf import placement_client
|
||||||
from watcher.conf import planner
|
from watcher.conf import planner
|
||||||
|
from watcher.conf import prometheus_client
|
||||||
from watcher.conf import service
|
from watcher.conf import service
|
||||||
|
|
||||||
CONF = cfg.CONF
|
CONF = cfg.CONF
|
||||||
@@ -64,9 +64,9 @@ keystone_client.register_opts(CONF)
|
|||||||
grafana_client.register_opts(CONF)
|
grafana_client.register_opts(CONF)
|
||||||
grafana_translators.register_opts(CONF)
|
grafana_translators.register_opts(CONF)
|
||||||
cinder_client.register_opts(CONF)
|
cinder_client.register_opts(CONF)
|
||||||
ceilometer_client.register_opts(CONF)
|
|
||||||
neutron_client.register_opts(CONF)
|
neutron_client.register_opts(CONF)
|
||||||
clients_auth.register_opts(CONF)
|
clients_auth.register_opts(CONF)
|
||||||
ironic_client.register_opts(CONF)
|
ironic_client.register_opts(CONF)
|
||||||
collector.register_opts(CONF)
|
collector.register_opts(CONF)
|
||||||
placement_client.register_opts(CONF)
|
placement_client.register_opts(CONF)
|
||||||
|
prometheus_client.register_opts(CONF)
|
||||||
|
|||||||
@@ -47,7 +47,7 @@ APPLIER_OPTS = [
|
|||||||
cfg.BoolOpt('rollback_when_actionplan_failed',
|
cfg.BoolOpt('rollback_when_actionplan_failed',
|
||||||
default=False,
|
default=False,
|
||||||
help='If set True, the failed actionplan will rollback '
|
help='If set True, the failed actionplan will rollback '
|
||||||
'when executing. Defaule value is False.'),
|
'when executing. Default value is False.'),
|
||||||
]
|
]
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -1,63 +0,0 @@
|
|||||||
# -*- encoding: utf-8 -*-
|
|
||||||
# Copyright (c) 2016 Intel Corp
|
|
||||||
#
|
|
||||||
# Authors: Prudhvi Rao Shedimbi <prudhvi.rao.shedimbi@intel.com>
|
|
||||||
#
|
|
||||||
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
||||||
# you may not use this file except in compliance with the License.
|
|
||||||
# You may obtain a copy of the License at
|
|
||||||
#
|
|
||||||
# http://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
#
|
|
||||||
# Unless required by applicable law or agreed to in writing, software
|
|
||||||
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
||||||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
||||||
# implied.
|
|
||||||
# See the License for the specific language governing permissions and
|
|
||||||
# limitations under the License.
|
|
||||||
|
|
||||||
from oslo_config import cfg
|
|
||||||
|
|
||||||
ceilometer_client = cfg.OptGroup(name='ceilometer_client',
|
|
||||||
title='Configuration Options for Ceilometer')
|
|
||||||
|
|
||||||
CEILOMETER_CLIENT_OPTS = [
|
|
||||||
cfg.StrOpt('api_version',
|
|
||||||
default='2',
|
|
||||||
deprecated_for_removal=True,
|
|
||||||
deprecated_since="1.13.0",
|
|
||||||
deprecated_reason="""
|
|
||||||
Ceilometer API is deprecated since Ocata release.
|
|
||||||
Any related configuration options are deprecated too.
|
|
||||||
""",
|
|
||||||
help='Version of Ceilometer API to use in '
|
|
||||||
'ceilometerclient.'),
|
|
||||||
cfg.StrOpt('endpoint_type',
|
|
||||||
default='internalURL',
|
|
||||||
deprecated_for_removal=True,
|
|
||||||
deprecated_since="1.13.0",
|
|
||||||
deprecated_reason="""
|
|
||||||
Ceilometer API is deprecated since Ocata release.
|
|
||||||
Any related configuration options are deprecated too.
|
|
||||||
""",
|
|
||||||
help='Type of endpoint to use in ceilometerclient. '
|
|
||||||
'Supported values: internalURL, publicURL, adminURL. '
|
|
||||||
'The default is internalURL.'),
|
|
||||||
cfg.StrOpt('region_name',
|
|
||||||
deprecated_for_removal=True,
|
|
||||||
deprecated_since="1.13.0",
|
|
||||||
deprecated_reason="""
|
|
||||||
Ceilometer API is deprecated since Ocata release.
|
|
||||||
Any related configuration options are deprecated too.
|
|
||||||
""",
|
|
||||||
help='Region in Identity service catalog to use for '
|
|
||||||
'communication with the OpenStack service.')]
|
|
||||||
|
|
||||||
|
|
||||||
def register_opts(conf):
|
|
||||||
conf.register_group(ceilometer_client)
|
|
||||||
conf.register_opts(CEILOMETER_CLIENT_OPTS, group=ceilometer_client)
|
|
||||||
|
|
||||||
|
|
||||||
def list_opts():
|
|
||||||
return [(ceilometer_client, CEILOMETER_CLIENT_OPTS)]
|
|
||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user