diff options
| author | 2022-10-12 20:23:37 +0100 | |
|---|---|---|
| committer | 2022-10-18 23:14:17 +0200 | |
| commit | 1295dd8f97b7aed56cfa842da7d1923af1a526d5 (patch) | |
| tree | 74d7eca1ce00bedd34094a441060b0f0d95afead /roles/kibana-nginx | |
| parent | Disable `fqcn-builtins` lint (diff) | |
Delete roles we won't use with self-hosted k8s
Diffstat (limited to 'roles/kibana-nginx')
| -rw-r--r-- | roles/kibana-nginx/README.md | 3 | ||||
| -rw-r--r-- | roles/kibana-nginx/meta/main.yml | 4 | ||||
| -rw-r--r-- | roles/kibana-nginx/tasks/main.yml | 26 |
3 files changed, 0 insertions, 33 deletions
diff --git a/roles/kibana-nginx/README.md b/roles/kibana-nginx/README.md deleted file mode 100644 index 23f8ffc..0000000 --- a/roles/kibana-nginx/README.md +++ /dev/null @@ -1,3 +0,0 @@ -# Role "kibana-nginx" - -This role installs the configuration for NGINX reverse proxying to Kibana. diff --git a/roles/kibana-nginx/meta/main.yml b/roles/kibana-nginx/meta/main.yml deleted file mode 100644 index fe0bcd5..0000000 --- a/roles/kibana-nginx/meta/main.yml +++ /dev/null @@ -1,4 +0,0 @@ ---- -dependencies: - - nginx - - nginx-cloudflare-mtls diff --git a/roles/kibana-nginx/tasks/main.yml b/roles/kibana-nginx/tasks/main.yml deleted file mode 100644 index 40120b8..0000000 --- a/roles/kibana-nginx/tasks/main.yml +++ /dev/null @@ -1,26 +0,0 @@ -- name: Install Kibana NGINX config - copy: - dest: /etc/nginx/conf.d/kibana.conf - mode: 0644 - group: root - owner: root - content: | - # Managed by Ansible - server { - listen 443 ssl http2; - server_name kibana.pydis.wtf; - - ssl_certificate /etc/letsencrypt/live/pydis.wtf/fullchain.pem; - ssl_certificate_key /etc/letsencrypt/live/pydis.wtf/privkey.pem; - ssl_client_certificate {{ nginx_cloudflare_mtls_certificate_path }}; - ssl_verify_client on; - - location / { - include proxy_params; - proxy_pass http://localhost:5601; - } - } - notify: - - reload the nginx service - tags: - - role::kibana-nginx |