Add cloudwatch check plugin to default plugins

The cloudwatch check plugin needs django autocomplete light -
eventually we can use this for other plugins too (e.g. getting
the available jenkins jobs for jenkins check)
This commit is contained in:
Frank Hamand 2017-09-13 12:02:49 +01:00
parent ae00284b3b
commit 30451d6ddf
7 changed files with 16 additions and 3 deletions

View File

@ -1,3 +1,9 @@
master
------
* Add cloudwatch check plugin to dockerfile by default
- Can be enabled by adding "cabot_check_cloudwatch" to CABOT_PLUGINS_ENABLED
Version 0.11.5
--------------

View File

@ -135,8 +135,6 @@ INSTALLED_APPS = (
'django.contrib.sites',
'django.contrib.messages',
'django.contrib.staticfiles',
# Uncomment the next line to enable the admin:
'django.contrib.admin',
# Uncomment the next line to enable admin documentation:
# 'django.contrib.admindocs',
'django_filters',
@ -145,6 +143,9 @@ INSTALLED_APPS = (
'jsonify',
'cabot.cabotapp',
'rest_framework',
'dal',
'dal_select2',
'django.contrib.admin',
)
AUTH_USER_MODEL = 'auth.User'

View File

@ -17,6 +17,8 @@
<link href="{% static 'arachnys/css/base.less' %}" type="text/less" rel="stylesheet">
<link rel="stylesheet" href="{% static 'arachnys/css/morris.css' %}" type="text/css">
<link rel="stylesheet" href="{% static 'arachnys/css/graph.css' %}" type="text/css">
<link rel="stylesheet" href="{% static 'autocomplete_light/vendor/select2/dist/css/select2.css' %}" type="text/css">
<link rel="stylesheet" href="{% static 'autocomplete_light/select2.css' %}" type="text/css">
{% endcompress %}
<link href="//cdnjs.cloudflare.com/ajax/libs/bootstrap-social/5.1.1/bootstrap-social.css" rel="stylesheet">
<link href="//netdna.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.css" rel="stylesheet">

View File

@ -30,4 +30,4 @@
</div>
{% endif %}
</div>
{% endfor %}
{% endfor %}

View File

@ -1,4 +1,5 @@
{% extends 'base.html' %}
{% load static from staticfiles %}
{% block content %}
<div class="row">
@ -115,5 +116,6 @@ removeMorris = () ->
$('#graph').hide()
</script>
{{ form.media }}
{% endcompress %}
{% endblock %}

View File

@ -2,3 +2,4 @@ cabot_alert_email==1.4.3
cabot_alert_hipchat==2.0.2
cabot_alert_twilio==1.3.1
cabot_alert_slack==0.8.1
cabot_check_cloudwatch==0.1.1

View File

@ -9,6 +9,7 @@ dj-database-url==0.4.2
Django==1.11
django-appconf==1.0.2
django-auth-ldap==1.2.11
django-autocomplete-light==3.2.10
django-compressor==2.1.1
django-filter==1.0.2
django-jsonify==0.3.0