From 79eb3f7caf9c5d9e75d328fca18d57eae6a0bafa Mon Sep 17 00:00:00 2001
From: colin <colin@noreply@nixc.us>
Date: Sun, 28 Jan 2024 22:42:08 +0000
Subject: [PATCH] Delete stack.production.yml

---
 stack.production.yml | 50 --------------------------------------------
 1 file changed, 50 deletions(-)
 delete mode 100644 stack.production.yml

diff --git a/stack.production.yml b/stack.production.yml
deleted file mode 100644
index e74bc29..0000000
--- a/stack.production.yml
+++ /dev/null
@@ -1,50 +0,0 @@
-version: "3.9"
-services:
-  netdata:
-    image: git.nixc.us/colin/netdata:production-parent
-    # hostname: "netdata-parent"
-    environment:
-      - VIRTUAL_HOST=netdata.nixc.us
-      - VIRTUAL_PORT=19999
-    volumes:
-      - /proc:/host/proc:ro
-      - /sys:/host/sys:ro
-      - /var/run/docker.sock:/var/run/docker.sock:ro
-      - /mnt/tank/persist/nixc.us/netdata/production/data:/var/lib/netdata
-    networks:
-      - netdata-network
-      - traefik
-    dns:
-      - 1.1.1.1
-      - 9.9.9.9
-    deploy:
-      placement:
-        constraints:
-          - node.hostname == macmini14
-      labels:
-        traefik.enable: "true"
-        traefik.http.routers.production-netdata.rule: "Host(`netdata.nixc.us`)"
-        traefik.http.services.production-netdata.loadbalancer.server.port: "19999"
-        traefik.http.routers.production-netdata.entrypoints: "websecure"
-        traefik.http.routers.production-netdata.tls.certresolver: "letsencryptresolver"
-        traefik.http.routers.production-netdata.service: "production-netdata"
-        traefik.http.routers.production-netdata.middlewares: "authelia_authelia@docker"
-        traefik.docker.network: "traefik"
-
-  child:
-    image: git.nixc.us/colin/netdata:production-child
-    hostname: "{{.Node.Hostname}}"
-    volumes:
-      - /proc:/host/proc:ro
-      - /sys:/host/sys:ro
-      - /var/run/docker.sock:/var/run/docker.sock:ro
-    networks:
-      - netdata-network
-    deploy:
-      mode: global
-
-networks:
-  traefik:
-    external: true
-  netdata-network:
-    driver: overlay