-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add support for RedHat. #5
Open
michal800106
wants to merge
4
commits into
hpcloud-mon:master
Choose a base branch
from
FujitsuEnablingSoftwareTechnologyGmbH:master
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
.gitreview |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,53 @@ | ||
--- | ||
horizon_path: /opt/stack/horizon/ | ||
panel_src_path_os: | ||
RedHat: /usr/lib/python2.7/site-packages/monitoring/ | ||
Debian: /usr/local/lib/python2.7/dist-packages/monitoring/ | ||
|
||
grafana_tarball_url_os: | ||
RedHat: https://api.github.com/repos/FujitsuEnablingSoftwareTechnologyGmbH/grafana/tarball | ||
Debian: https://api.github.com/repos/hpcloud-mon/grafana/tarball | ||
|
||
apache_conf_dir_os: | ||
RedHat: /etc/httpd/conf.d/ | ||
Debian: /etc/apache2/sites-enabled/ | ||
|
||
apache_service_name_os: | ||
RedHat: httpd | ||
Debian: apache2 | ||
|
||
horizon_path_os: | ||
RedHat: /usr/share/openstack-dashboard/ | ||
Debian: /opt/stack/horizon/ | ||
|
||
grafana_base_dir_os: | ||
RedHat: /usr/share | ||
Debian: /opt/stack | ||
|
||
download_tmp_dir: /opt/monasca_download | ||
|
||
apache_conf_dir: "{{ apache_conf_dir_os[ansible_os_family] }}" | ||
apache_service_name: "{{ apache_service_name_os[ansible_os_family] }}" | ||
horizon_path: "{{ horizon_path_os[ansible_os_family] }}" | ||
grafana_tarball_url: "{{ grafana_tarball_url_os[ansible_os_family] }}" | ||
panel_src_path: "{{ panel_src_path_os[ansible_os_family] }}" | ||
grafana_base_dir: "{{ grafana_base_dir_os[ansible_os_family] }}" | ||
|
||
monasca_ui_name: monasca-ui | ||
|
||
kibana_support_enabled: False | ||
|
||
dashboard_path: "{{ horizon_path }}openstack_dashboard/" | ||
dashboard_settings_file: "{{ dashboard_path }}settings.py" | ||
|
||
grafana_base_dir: /opt/stack | ||
grafana_dest: "{{ horizon_path }}static/grafana" | ||
grafana_config: "{{ grafana_dest }}/config.js" | ||
grafana_version: master | ||
|
||
panel_src_path: /usr/local/lib/python2.7/dist-packages/monitoring/ | ||
panel_dest_path: "{{ horizon_path }}monitoring" | ||
panel_static_dest_path: "{{ horizon_path }}static/monitoring" | ||
|
||
ui_dest_path: "{{ dashboard_path }}local/enabled/" | ||
ui_src_path: "{{panel_src_path}}enabled/" | ||
ui_py_file: _50_admin_add_monitoring_panel.py | ||
|
||
|
||
|
||
grafana_tarball_file: "" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,3 @@ | ||
--- | ||
- name: restart apache | ||
service: name=apache2 state=restarted enabled=yes | ||
|
||
service: name={{ apache_service_name }} state=restarted enabled=yes |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
from django.utils.translation import ugettext_lazy as _ | ||
|
||
# Services being monitored | ||
MONITORING_SERVICES = [ | ||
{'name': _('OpenStack Services'), | ||
'groupBy': 'service'}, | ||
{'name': _('Servers'), | ||
'groupBy': 'hostname'} | ||
] | ||
|
||
# Grafana button titles/file names | ||
GRAFANA_LINKS = [ | ||
{'title': 'Dashboard', 'fileName': 'openstack.json'}, | ||
{'title': 'Monasca Health', 'fileName': 'monasca.json'} | ||
] | ||
|
||
{% if kibana_support_enabled is defined and kibana_support_enabled %} | ||
KIBANA_HOST = '{{ kibana_url }}' | ||
{% endif %} | ||
|
||
MONITORING_SERVICE_TYPE='monitoring' | ||
|
||
OPENSTACK_SSL_NO_VERIFY=False | ||
OPENSTACK_SSL_CACERT=None |
This file was deleted.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There are enough platform specific variables that I think it would be cleaner to setup individual files for them and then at the top of the main task do an include_vars with_first_found statement.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
but vars are hard to overwrite. You could do it in include role but not in host_vars and group_vars. So if we think that some variable could be overwritten we think that better place is defaults/main.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good point using include_vars does make them harder to overwrite.