Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
K
Kolla Ansible
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Very Demiurge Very Mindful
Kolla Ansible
Commits
867fe4c6
Commit
867fe4c6
authored
6 years ago
by
Zuul
Committed by
Gerrit Code Review
6 years ago
Browse files
Options
Downloads
Plain Diff
Merge "Improve registration of Monasca InfluxDB database"
parents
1afe0276
2af1d1d9
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
ansible/roles/monasca/defaults/main.yml
+4
-0
4 additions, 0 deletions
ansible/roles/monasca/defaults/main.yml
ansible/roles/monasca/tasks/bootstrap.yml
+15
-7
15 additions, 7 deletions
ansible/roles/monasca/tasks/bootstrap.yml
with
19 additions
and
7 deletions
ansible/roles/monasca/defaults/main.yml
+
4
−
0
View file @
867fe4c6
...
...
@@ -114,6 +114,10 @@ monasca_database_address: "{{ database_address }}:{{ database_port }}"
monasca_influxdb_name
:
"
monasca"
monasca_influxdb_address
:
"
{{
kolla_internal_fqdn
}}"
monasca_influxdb_http_port
:
"
{{
influxdb_http_port
}}"
monasca_influxdb_retention_policy
:
name
:
'
monasca_metrics'
duration
:
"
1w"
replication_count
:
1
####################
# Monasca
...
...
This diff is collapsed.
Click to expand it.
ansible/roles/monasca/tasks/bootstrap.yml
+
15
−
7
View file @
867fe4c6
...
...
@@ -36,15 +36,23 @@
-
include_tasks
:
bootstrap_service.yml
when
:
database.changed or use_preconfigured_databases | bool
# NOTE(dszumski): Monasca is not yet compatible with InfluxDB > 1.1.10, which means
# that the official Ansible modules for managing InfluxDB don't work [1].
# We therefore fall back to manual commands to register the database
# and set a default retention policy.
# [1] https://github.com/influxdata/influxdb-python#influxdb-pre-v110-users
-
name
:
List influxdb databases
command
:
"
docker
exec
influxdb
influx
-host
{{
monasca_influxdb_address
}}
-port
{{
monasca_influxdb_http_port
}}
-execute
'show
databases'"
run_once
:
True
delegate_to
:
"
{{
groups['influxdb'][0]
}}"
register
:
monasca_influxdb_database
changed_when
:
False
-
name
:
Creating monasca influxdb database
kolla_toolbox
:
module_name
:
influxdb_database
module_args
:
hostname
:
"
{{
monasca_influxdb_address
}}"
port
:
"
{{
monasca_influxdb_http_port
}}"
database_name
:
"
{{
monasca_influxdb_name
}}"
command
:
"
docker
exec
influxdb
influx
-host
{{
monasca_influxdb_address
}}
-port
{{
monasca_influxdb_http_port
}}
-execute
'CREATE
DATABASE
{{
monasca_influxdb_name
}}
WITH
DURATION
{{
monasca_influxdb_retention_policy.duration
}}
REPLICATION
{{
monasca_influxdb_retention_policy.replication_count
}}
NAME
{{
monasca_influxdb_retention_policy.name
}}'"
run_once
:
True
delegate_to
:
"
{{
groups['monasca-api'][0]
}}"
delegate_to
:
"
{{
groups['influxdb'][0]
}}"
when
:
monasca_influxdb_name not in monasca_influxdb_database.stdout_lines
# NOTE(dszumski): The Monasca APIs write logs and messages to Kafka. Since
# Kafka has automatic topic generation enabled by default we don't need to
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment