summaryrefslogtreecommitdiffstats
path: root/modules/tozt
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2021-02-28 03:32:06 -0500
committerJesse Luehrs <doy@tozt.net>2021-02-28 03:32:06 -0500
commit67b3a2808db2d47ed47d5f56c521eacf19099efd (patch)
treebde624f16a850eb3f29072acd9ca3fe4cd87fd0c /modules/tozt
parent5f26eacc6f10750c805d45d3aae84b1eea94d637 (diff)
downloadpuppet-tozt-67b3a2808db2d47ed47d5f56c521eacf19099efd.tar.gz
puppet-tozt-67b3a2808db2d47ed47d5f56c521eacf19099efd.zip
start on some changes for influxdb 2.0
remove chronograf, move to token auth instead of http basic auth need to remove kapacitor too, but have to port the alerts first
Diffstat (limited to 'modules/tozt')
-rw-r--r--modules/tozt/files/nginx/chronograf-tls.conf16
-rw-r--r--modules/tozt/files/nginx/chronograf.conf10
-rw-r--r--modules/tozt/files/nginx/influxdb-tls.conf2
-rw-r--r--modules/tozt/manifests/tick.pp14
4 files changed, 0 insertions, 42 deletions
diff --git a/modules/tozt/files/nginx/chronograf-tls.conf b/modules/tozt/files/nginx/chronograf-tls.conf
deleted file mode 100644
index 87a5447..0000000
--- a/modules/tozt/files/nginx/chronograf-tls.conf
+++ /dev/null
@@ -1,16 +0,0 @@
-server {
- listen 443 ssl;
- server_name chronograf.tozt.net;
-
- access_log /var/log/nginx/chronograf.access.log;
- error_log /var/log/nginx/chronograf.error.log;
-
- include ssl;
-
- location / {
- proxy_pass http://127.0.0.1:8888/;
- auth_basic "chronograf";
- auth_basic_user_file "/media/persistent/chronograf.htpasswd";
- }
-}
-# vim:ft=nginx
diff --git a/modules/tozt/files/nginx/chronograf.conf b/modules/tozt/files/nginx/chronograf.conf
deleted file mode 100644
index 9011fd6..0000000
--- a/modules/tozt/files/nginx/chronograf.conf
+++ /dev/null
@@ -1,10 +0,0 @@
-server {
- listen 80;
- server_name chronograf.tozt.net;
-
- access_log /var/log/nginx/chronograf.access.log;
- error_log /var/log/nginx/chronograf.error.log;
-
- rewrite ^(.*) https://$host$1 permanent;
-}
-# vim:ft=nginx
diff --git a/modules/tozt/files/nginx/influxdb-tls.conf b/modules/tozt/files/nginx/influxdb-tls.conf
index bf52358..2341261 100644
--- a/modules/tozt/files/nginx/influxdb-tls.conf
+++ b/modules/tozt/files/nginx/influxdb-tls.conf
@@ -9,8 +9,6 @@ server {
location / {
proxy_pass http://127.0.0.1:8086/;
- auth_basic "influxdb";
- auth_basic_user_file "/media/persistent/influxdb.htpasswd";
}
}
# vim:ft=nginx
diff --git a/modules/tozt/manifests/tick.pp b/modules/tozt/manifests/tick.pp
index 58da090..8eedf26 100644
--- a/modules/tozt/manifests/tick.pp
+++ b/modules/tozt/manifests/tick.pp
@@ -23,25 +23,11 @@ class tozt::tick {
source => 'puppet:///modules/tozt/kapacitor/partofme-data.tick';
}
- secret {
- "/media/persistent/influxdb.htpasswd":
- source => 'influxdb_htpasswd',
- owner => 'http';
- "/media/persistent/chronograf.htpasswd":
- source => 'chronograf_htpasswd',
- owner => 'http';
- }
-
nginx::site {
"influxdb-tls":
source => 'puppet:///modules/tozt/nginx/influxdb-tls.conf',
require => Class['certbot'];
"influxdb":
source => 'puppet:///modules/tozt/nginx/influxdb.conf';
- "chronograf-tls":
- source => 'puppet:///modules/tozt/nginx/chronograf-tls.conf',
- require => Class['certbot'];
- "chronograf":
- source => 'puppet:///modules/tozt/nginx/chronograf.conf';
}
}