├── .gitignore ├── ActiveDirectory └── readme.md ├── Ansible └── readme.md ├── Asustor ├── Docker │ ├── configs │ │ ├── alertmanager │ │ │ └── config.yml │ │ ├── grafana │ │ │ └── provisioning │ │ │ │ ├── dashboards │ │ │ │ ├── dashboard.yml │ │ │ │ ├── docker_containers.json │ │ │ │ ├── docker_host.json │ │ │ │ ├── monitor_services.json │ │ │ │ ├── pihole.json │ │ │ │ └── traefik.json │ │ │ │ └── datasources │ │ │ │ └── datasource.yml │ │ ├── homepage │ │ │ └── config │ │ │ │ ├── bookmarks.yaml │ │ │ │ ├── custom.css │ │ │ │ ├── custom.js │ │ │ │ ├── docker.yaml │ │ │ │ ├── kubernetes.yaml │ │ │ │ ├── services.yaml │ │ │ │ ├── settings.yaml │ │ │ │ └── widgets.yaml │ │ ├── pihole │ │ │ └── dnsmasq.d │ │ │ │ └── 07-dhcp-options │ │ ├── prometheus │ │ │ ├── alert.rules │ │ │ └── prometheus.yml │ │ ├── readme.md │ │ └── traefik │ │ │ ├── acme │ │ │ └── acme.json │ │ │ └── rules │ │ │ ├── asusstornas1-rtr.yaml │ │ │ ├── homelab-rtr.yaml │ │ │ ├── middlewares-buffer.yaml │ │ │ ├── middlewares-chain-no-auth.yaml │ │ │ ├── middlewares-rate.limit.yaml │ │ │ ├── middlewares-security-headers.yaml │ │ │ ├── nassell-rtr.yaml │ │ │ └── tls-opts.yml │ ├── data │ │ └── readme.md │ └── readme.md ├── docker-compose │ ├── .env │ ├── compose │ │ ├── cloud │ │ │ └── nextcloud.yaml │ │ ├── coding │ │ │ └── code-server.yaml │ │ ├── core │ │ │ ├── clamav.yaml │ │ │ ├── dozzle.yaml │ │ │ ├── homepage.yaml │ │ │ └── portainer.yaml │ │ ├── database │ │ │ ├── mariadb.yaml │ │ │ └── redis.yaml │ │ ├── monitoring │ │ │ ├── alertmanager.yaml │ │ │ ├── cadvisor.yaml │ │ │ ├── grafana.yaml │ │ │ ├── mariadbexporter.yaml │ │ │ ├── nextcloudexporter.yaml │ │ │ ├── nodeexporter.yaml │ │ │ ├── piholeexporter.yaml │ │ │ ├── prometheus.yaml │ │ │ ├── pushgateway.yaml │ │ │ └── redisexporter.yaml │ │ ├── network │ │ │ ├── cloudflared.yaml │ │ │ ├── dhcphelper.yaml │ │ │ ├── dockovpn.yaml │ │ │ ├── nginxproxymanager.yaml │ │ │ ├── pihole.yaml │ │ │ └── traefik.yaml │ │ └── tools │ │ │ ├── boinc.yaml │ │ │ ├── collabora.yaml │ │ │ ├── drawio.yaml │ │ │ ├── it-tools.yaml │ │ │ └── stirling-pdf.yaml │ ├── dhcp-helper │ │ └── dhcp-helper.dockerfile │ ├── docker-compose.yaml │ ├── readme.md │ └── secrets │ │ └── readme.md └── readme.md ├── CertbotCloudflare └── readme.md ├── Docker ├── NvidiaGPU │ └── readme.md ├── docker │ ├── .env │ ├── compose │ │ ├── databases │ │ │ ├── cloudbeaver.yaml │ │ │ ├── dbgate.yaml │ │ │ ├── mariadb.yaml │ │ │ ├── memcached.yaml │ │ │ ├── mongodb.yaml │ │ │ ├── postgresql.yaml │ │ │ └── valkey.yaml │ │ ├── management │ │ │ ├── authentik.yaml │ │ │ └── portainer.yaml │ │ ├── mediaserver │ │ │ ├── bazarr.yaml │ │ │ ├── calibre.yaml │ │ │ ├── flaresolverr.yaml │ │ │ ├── gluetun.yaml │ │ │ ├── jellyfin.yaml │ │ │ ├── jellyseerr.yaml │ │ │ ├── lidarr.yaml │ │ │ ├── prowlarr.yaml │ │ │ ├── radarr.yaml │ │ │ ├── readarr.yaml │ │ │ ├── sabnzbd.yaml │ │ │ ├── sonarr.yaml │ │ │ ├── transmission.yaml │ │ │ └── unpackerr.yaml │ │ ├── monitoring │ │ │ ├── alertmanager.yaml │ │ │ ├── cadvisor.yaml │ │ │ ├── dozzle.yaml │ │ │ ├── grafana.yaml │ │ │ ├── mariadb-exporter.yaml │ │ │ ├── memcached-exporter.yaml │ │ │ ├── mongodb-exporter.yaml │ │ │ ├── node-exporter.yaml │ │ │ ├── pbs1-exporter.yaml │ │ │ ├── postgres-exporter.yaml │ │ │ ├── prometheus.yaml │ │ │ ├── redis-exporter.yaml │ │ │ └── watchtower.yaml │ │ ├── network │ │ │ └── traefik.yaml │ │ ├── security │ │ │ ├── clamav.yaml │ │ │ ├── crowdsec.yaml │ │ │ ├── generate-indexer-certs.yml │ │ │ └── wazuh.yaml │ │ ├── storage │ │ │ └── minio.yaml │ │ └── tools │ │ │ ├── actual-budget.yaml │ │ │ ├── bookstack.yaml │ │ │ ├── collabora.yaml │ │ │ ├── composecraft.yaml │ │ │ ├── cyberchef.yaml │ │ │ ├── drawio.yaml │ │ │ ├── excalidraw.yaml │ │ │ ├── fireflyIII.yaml │ │ │ ├── freshrss.yaml │ │ │ ├── gitlab.yaml │ │ │ ├── homepage.yaml │ │ │ ├── immich-ml.yaml │ │ │ ├── immich.yaml │ │ │ ├── it-tools.yaml │ │ │ ├── karakeep.yaml │ │ │ ├── local-ai.yaml │ │ │ ├── n8n.yaml │ │ │ ├── netbox.yaml │ │ │ ├── nextcloud.yaml │ │ │ ├── openproject.yaml │ │ │ ├── paperless-ngx.yaml │ │ │ ├── privatebin.yaml │ │ │ ├── qrcodegenerator.yaml │ │ │ ├── roundcube.yaml │ │ │ ├── semaphoreui.yaml │ │ │ ├── shlink.yaml │ │ │ ├── stirling-pdf.yaml │ │ │ ├── talk.yaml │ │ │ ├── teleport.yaml │ │ │ └── vaultwarden.yaml │ ├── docker-compose.yaml │ └── readme.md ├── readme.md └── volumes │ └── DockerProd1 │ └── configs │ ├── alertmanager │ ├── alertmanager.yml │ └── config.yml │ ├── homepage │ └── config │ │ ├── bookmarks.yaml │ │ ├── custom.css │ │ ├── custom.js │ │ ├── docker.yaml │ │ ├── kubernetes.yaml │ │ ├── services.yaml │ │ ├── settings.yaml │ │ └── widgets.yaml │ ├── prometheus │ ├── alert-rules.yml │ └── prometheus.yml │ ├── teleport │ └── teleport.yaml │ ├── traefik │ ├── acme │ │ └── acme.json │ └── rules │ │ ├── middlewares.yaml │ │ ├── routers.yaml │ │ ├── serversTransports.yaml │ │ ├── services.yaml │ │ └── tls-opts.yaml │ └── wazuh │ ├── certs.yml │ ├── wazuh_cluster │ └── wazuh_manager.conf │ ├── wazuh_dashboard │ ├── opensearch_dashboards.yml │ └── wazuh.yml │ ├── wazuh_indexer │ ├── internal_users.yml │ └── wazuh.indexer.yml │ └── wazuh_indexer_ssl_certs │ ├── admin-key.pem │ ├── admin.pem │ ├── root-ca.key │ ├── root-ca.pem │ ├── wazuh.dashboard-key.pem │ ├── wazuh.dashboard.pem │ ├── wazuh.indexer-key.pem │ └── wazuh.indexer.pem ├── Images ├── .gitkeep ├── Proxmox Network diagram.png └── Proxmox Storage diagram.png ├── Kubernetes ├── ActualBudget │ ├── readme.md │ └── yamls │ │ └── actual-budget.yaml ├── Asustornas1 │ ├── readme.md │ └── yamls │ │ └── ig-asustornas1.yaml ├── Authentik │ ├── readme.md │ └── yamls │ │ ├── ig-authentik-forwardauth.yaml │ │ ├── ig-authentik.yaml │ │ └── middleware-authentik.yaml ├── Automation │ ├── ArgoCD │ │ ├── readme.md │ │ └── yamls │ │ │ ├── argocd-redis-auth.yaml │ │ │ ├── argocd-values.yaml │ │ │ └── ig-argocd.yaml │ ├── ExternalSecrets │ │ ├── readme.md │ │ └── yamls │ │ │ ├── cluster-external-secret-example.yaml │ │ │ ├── cluster-push-secret.yaml │ │ │ ├── cluster-secret-store.yaml │ │ │ └── external-secret-example.yaml │ ├── Gitea │ │ ├── readme.md │ │ └── yamls │ │ │ └── ig-gitea.yaml │ ├── Gitlab │ │ ├── readme.md │ │ └── yamls │ │ │ ├── gitlab-values.yaml │ │ │ └── ig-gitlab.yaml │ ├── HashicorpVault │ │ ├── confs │ │ │ └── cert.config │ │ ├── readme.md │ │ └── yamls │ │ │ ├── hashicorp-vault-ha-values.yaml │ │ │ ├── hashicorp-vault-values.yaml │ │ │ ├── ig-hashicorp-vault-ha.yaml │ │ │ └── ig-hashicorp-vault.yaml │ └── Semaphore │ │ ├── readme.md │ │ └── yamls │ │ ├── ig-semaphore.yaml │ │ ├── semaphore-values.yaml │ │ └── semaphoreui.yaml ├── Bookstack │ ├── readme.md │ └── yamls │ │ └── bookstack-deploy.yaml ├── Cert-manager │ ├── readme.md │ └── yamls │ │ ├── cert-manager-issuer-cfdns01.yaml │ │ └── cert.yaml ├── ClamAV │ └── readme.md ├── Cloudflare-Operator │ ├── readme.md │ └── yamls │ │ ├── 01-cloudflare-secret.yaml │ │ ├── 02-cloudflareaccount.yaml │ │ ├── 03-dynamic-IP.yaml │ │ ├── 04a-dns-a-dynamic-ip.yaml │ │ ├── 04b-dns-a-fixed-ip.yaml │ │ ├── 04c-dns-cname.yaml │ │ ├── 05-prometheus-pod-monitor.yaml │ │ └── 06-grafana-dashboard.json ├── Cluster │ ├── 01-Prepare-Machines │ │ ├── configs │ │ │ ├── 20auto-upgrades │ │ │ ├── 50-default.conf │ │ │ ├── 50unattended-upgrades │ │ │ ├── main.cf │ │ │ ├── sasl_passwd │ │ │ └── smtp_header_checks file │ │ └── readme.md │ ├── 02-External-Etcd │ │ ├── configs │ │ │ ├── etcd.service │ │ │ ├── etcd1.conf │ │ │ ├── etcd2.conf │ │ │ └── etcd3.conf │ │ └── readme.md │ ├── 03-High-Availability │ │ ├── configs │ │ │ ├── check_apiserver.sh │ │ │ ├── haproxy.cfg │ │ │ ├── keepalived_backup.conf │ │ │ ├── keepalived_master.conf │ │ │ └── sysctl.conf │ │ └── readme.md │ ├── 04-Kubernetes │ │ ├── configs │ │ │ ├── 99-kubernetes-cri.conf │ │ │ ├── config.toml │ │ │ ├── containerd.conf │ │ │ ├── custom-resources.yaml │ │ │ └── kubeadm-config.yaml │ │ └── readme.md │ ├── 04-Microk8s │ │ ├── readme.md │ │ └── yamls │ │ │ └── microk8s.yaml │ └── readme.md ├── Coding │ └── CodeServer │ │ ├── readme.md │ │ └── yamls │ │ └── code-server-deploy.yaml ├── Collabora │ ├── readme.md │ └── yamls │ │ ├── collabora-values.yaml │ │ └── ig-collabora.yaml ├── CommonCommands │ └── readme.md ├── Composecraft │ ├── readme.md │ └── yamls │ │ └── composecraft.yaml ├── Computing │ └── Boinc │ │ ├── readme.md │ │ └── yamls │ │ └── boinc-deploy.yaml ├── Crowdsec │ ├── readme.md │ └── yamls │ │ ├── crowdsec-traefik-bouncer-values.yaml │ │ └── crowdsec-values.yaml ├── Cyberchef │ ├── readme.md │ └── yamls │ │ └── ig-cyberchef.yaml ├── Dashboard │ ├── readme.md │ └── yamls │ │ ├── ig-kubernetes-dashboard.yaml │ │ ├── k8dashcrb.yaml │ │ ├── k8dashsa.yaml │ │ ├── k8sdash.yaml │ │ └── recommended.yaml ├── Database │ ├── CloudBeaver │ │ ├── readme.md │ │ └── yamls │ │ │ └── cloudbeaver.yaml │ ├── Couchdb │ │ ├── readme.md │ │ └── yamls │ │ │ └── couchdb-traefik.yaml │ ├── Dbgate │ │ ├── readme.md │ │ └── yamls │ │ │ └── dbgate.yaml │ ├── Mariadb │ │ ├── cnf │ │ │ └── proxysql-mariadb.cnf │ │ ├── readme.md │ │ └── yamls │ │ │ ├── ig-mariadb.yaml │ │ │ ├── phpmyadmin-mariadb.yaml │ │ │ └── proxysql-mariadb.yaml │ ├── Memcached │ │ ├── readme.md │ │ └── yamls │ │ │ └── ig-memcached.yaml │ ├── Mongodb │ │ └── readme.md │ ├── Mysql │ │ ├── cnf │ │ │ └── proxysql-mysql.cnf │ │ ├── readme.md │ │ └── yamls │ │ │ ├── ig-mysql.yaml │ │ │ ├── phpmyadmin-mysql.yaml │ │ │ └── proxysql-mysql.yaml │ ├── Postgresql │ │ ├── readme.md │ │ └── yamls │ │ │ ├── cnpg-cluster.yaml │ │ │ ├── cnpg-database.yaml │ │ │ ├── ig-postgresql.yaml │ │ │ └── pgadmin.yaml │ ├── PostgresqlHA │ │ ├── readme.md │ │ └── yamls │ │ │ ├── ig-postgresql.yaml │ │ │ └── pgadmin.yaml │ ├── Redis │ │ ├── readme.md │ │ └── yamls │ │ │ └── ig-redis.yaml │ ├── Valkey │ │ └── readme.md │ └── readme.md ├── Descheduler │ ├── readme.md │ └── yamls │ │ └── descheduler-values.yaml ├── Drawio │ ├── readme.md │ └── yamls │ │ └── drawio.yaml ├── Excalidraw │ ├── readme.md │ └── yamls │ │ └── excalidraw.yaml ├── FireflyIII │ ├── readme.md │ └── yamls │ │ ├── fireflyIII.yaml │ │ └── fireflyIIIimporter.yaml ├── FreshRSS │ ├── readme.md │ └── yamls │ │ └── freshrss.yaml ├── Groundcover │ ├── readme.md │ └── yamls │ │ └── groundcover-values.yaml ├── Headlamp │ ├── readme.md │ └── yamls │ │ ├── headlamp-values.yaml │ │ └── ig-headlamp.yaml ├── Heimdall-dashboard │ └── readme.md ├── Helm │ └── readme.md ├── Homepage │ ├── images │ │ └── gethomepage.png │ ├── readme.md │ └── yamls │ │ └── homepage.yaml ├── Homer │ ├── assets │ │ ├── config.yml │ │ └── tools │ │ │ ├── datree.png │ │ │ ├── dell.png │ │ │ ├── grafana.svg │ │ │ ├── haproxy.png │ │ │ ├── kubernetesdashboard.svg │ │ │ ├── longhorn.png │ │ │ ├── portainer.svg │ │ │ ├── prometheus.png │ │ │ ├── proxmox.png │ │ │ ├── traefik.svg │ │ │ └── uptimekuma.svg │ ├── readme.md │ └── yaml │ │ └── homer.yaml ├── Hosting │ ├── readme.md │ └── yamls │ │ └── ig-hosting1.yaml ├── Intel-GPU │ └── readme.md ├── It-tools │ ├── readme.md │ └── yamls │ │ └── it-tools.yaml ├── K8sBackup │ └── Velero │ │ ├── readme.md │ │ └── yamls │ │ └── velero-values.yaml ├── Karakeep │ ├── readme.md │ └── yamls │ │ └── karakeep.yaml ├── Kubectl │ └── readme.md ├── Kubescape │ ├── readme.md │ └── yamls │ │ └── kubescape-values.yaml ├── Kubetail │ ├── readme.md │ └── yamls │ │ └── ig-kubetail.yaml ├── Kured │ └── readme.md ├── Kyverno │ ├── readme.md │ └── yamls │ │ └── kyverno-add-ndots.yaml ├── LocalAI │ ├── readme.md │ └── yamls │ │ └── ig-localai.yaml ├── Media-Server │ ├── readme.md │ └── yamls │ │ ├── media-server-deployment.yaml │ │ └── media-server-jellyfin-deployment.yaml ├── Metallb │ ├── readme.md │ └── yamls │ │ ├── 01-kubeproxy-config-map.yaml │ │ └── metallb-pool.yaml ├── Metrics-Server │ ├── readme.md │ └── yamls │ │ └── high-availability.yaml ├── Multus │ └── readme.md ├── Netbox │ ├── readme.md │ └── yamls │ │ ├── ig-netbox-external.yaml │ │ └── ig-netbox.yaml ├── Nextcloud │ ├── readme.md │ └── yamls │ │ └── nextcloud-deploy.yaml ├── Node-Feature-Discovery │ └── readme.md ├── Nvidia-GPU │ ├── readme.md │ └── yamls │ │ ├── gpu-operator-values-vgpu.yaml │ │ └── gpu-operator-values.yaml ├── Openproject │ ├── readme.md │ └── yamls │ │ ├── ig-openproject.yaml │ │ └── openproject-values.yaml ├── Paperless-ngx │ ├── readme.md │ └── yamls │ │ └── paperless-ngx.yaml ├── Portainer │ ├── readme.md │ └── yamls │ │ └── ig-portainer.yaml ├── Privatebin │ ├── cfg │ │ └── cfg.php │ ├── readme.md │ └── yamls │ │ └── privatebin.yaml ├── Prometheus-Stack │ ├── Authentik │ │ ├── Dashboards │ │ │ └── grafana-authentik.json │ │ └── readme.md │ ├── Automation │ │ ├── ArgoCD │ │ │ ├── Dashboards │ │ │ │ ├── grafana-argocd-application-overview.json │ │ │ │ ├── grafana-argocd-notifications-overview.json │ │ │ │ ├── grafana-argocd-operational-overview.json │ │ │ │ └── grafana-argocd.json │ │ │ └── readme.md │ │ ├── Gitea │ │ │ ├── Dashboards │ │ │ │ └── grafana-gitea.json │ │ │ └── readme.md │ │ └── Vault │ │ │ ├── Dashboards │ │ │ └── grafana-vault.yaml │ │ │ └── readme.md │ ├── Calico │ │ ├── Dashboard │ │ │ ├── grafana-calico.json │ │ │ ├── grafana-felix-default.json │ │ │ ├── grafana-felix.json │ │ │ ├── grafana-typha-default.json │ │ │ └── grafana-typha.json │ │ └── readme.md │ ├── Cert-manager │ │ ├── Dashboards │ │ │ └── grafana-certmanager.json │ │ ├── readme.md │ │ └── yamls │ │ │ └── podmonitor-certmanager.yaml │ ├── Crowdsec │ │ ├── Dashboards │ │ │ ├── crowdsec-details-per-machine-old.json │ │ │ ├── crowdsec-details-per-machine.json │ │ │ ├── crowdsec-insight-old.json │ │ │ ├── crowdsec-insight.json │ │ │ ├── crowdsec-lapi-old.json │ │ │ ├── crowdsec-lapi.json │ │ │ ├── crowdsec-overview-old.json │ │ │ └── crowdsec-overview.json │ │ └── readme.md │ ├── Database │ │ ├── Couchdb │ │ │ ├── Dashboards │ │ │ │ ├── grafana-couchdb.json │ │ │ │ └── grafana-couchdb2.json │ │ │ ├── readme.md │ │ │ └── yamls │ │ │ │ └── prom-couchdb.yaml │ │ ├── Mariadb │ │ │ ├── Dashboard │ │ │ │ └── grafana-mysql.json │ │ │ └── readme.md │ │ ├── Memcached │ │ │ ├── Dashboards │ │ │ │ ├── Memcached.json │ │ │ │ ├── Memcached2.json │ │ │ │ ├── Memcached3.json │ │ │ │ └── memcached_pods.json │ │ │ └── readme.md │ │ ├── Mongodb │ │ │ ├── Dashboards │ │ │ │ ├── grafana-mongodb.json │ │ │ │ └── grafana-mongodb2.json │ │ │ └── readme.md │ │ ├── Mysql │ │ │ ├── Dashboard │ │ │ │ └── grafana-mysql.json │ │ │ └── readme.md │ │ ├── Postgresql │ │ │ ├── Dashboard │ │ │ │ ├── grafana-cloudnativepg.json │ │ │ │ └── grafana-postgresql.json │ │ │ ├── readme.md │ │ │ └── yamls │ │ │ │ └── prometheusrules-cloudnativepg.yaml │ │ ├── Redis │ │ │ ├── Dashboard │ │ │ │ └── grafana-redis.json │ │ │ └── readme.md │ │ └── Valkey │ │ │ ├── Dashboard │ │ │ └── grafana-valkey.json │ │ │ └── readme.md │ ├── ExternalEtcd │ │ ├── Dashboard │ │ │ ├── etcd-cluster-overview.json │ │ │ └── etcd-cluster.json │ │ ├── readme.md │ │ └── yamls │ │ │ └── prom-etcd.yaml │ ├── Fritzbox-Eporter │ │ ├── Dashboard │ │ │ └── grafana-fritzbox.json │ │ ├── readme.md │ │ └── yamls │ │ │ └── prom-fritzbox.yaml │ ├── Grafana-dashboards │ │ └── etcd.json │ ├── Haproxy-Monitoring │ │ ├── Dashboard │ │ │ └── grafana-haproxy.json │ │ ├── readme.md │ │ └── yamls │ │ │ ├── prom-haproxy1.yaml │ │ │ ├── prom-haproxy2.yaml │ │ │ ├── prom-haproxy3.yaml │ │ │ ├── traefik-haproxy1-svc.yaml │ │ │ ├── traefik-haproxy1.yaml │ │ │ ├── traefik-haproxy2-svc.yaml │ │ │ ├── traefik-haproxy2.yaml │ │ │ ├── traefik-haproxy3-svc.yaml │ │ │ └── traefik-haproxy3.yaml │ ├── K8sBackup │ │ └── Velero │ │ │ ├── Dashboards │ │ │ └── grafana-velero.json │ │ │ └── readme.md │ ├── Kubescape │ │ ├── Dashboard │ │ │ └── grafana-kubescape.json │ │ └── readme.md │ ├── Kured │ │ ├── Dashboard │ │ │ └── grafana-kured.json │ │ ├── readme.md │ │ └── yamls │ │ │ └── servicemonitor-kured.yaml │ ├── Linux │ │ ├── Dashboards │ │ │ └── grafana-node-exporter.json │ │ ├── readme.md │ │ └── yamls │ │ │ └── sm-node-exporter.yaml │ ├── Metallb │ │ ├── Dashboard │ │ │ └── grafana-metallb.json │ │ ├── readme.md │ │ └── yamls │ │ │ └── prom-metallb.yaml │ ├── Nextcloud │ │ ├── Dashboards │ │ │ └── grafana-nextcloud.json │ │ ├── readme.md │ │ └── yamls │ │ │ └── sm-nextcloud.yaml │ ├── NvidiaGPU │ │ ├── Dashboard │ │ │ ├── grafana-nvidia-gpu.json │ │ │ └── grafana-nvidia-vgpu.json │ │ └── readme.md │ ├── PfSense │ │ ├── Dashboards │ │ │ ├── grafana-pfsense.json │ │ │ └── grafana-pfsense2.json │ │ └── readme.md │ ├── Prometheus-snmp │ │ ├── Dashboard │ │ │ ├── grafana-arista.json │ │ │ └── grafana-idrac.json │ │ ├── MIBs │ │ │ └── iDRAC-SMIv2.mib │ │ ├── readme.md │ │ └── yamls │ │ │ ├── snmp-exporter-arista-switch.yaml │ │ │ ├── snmp-exporter-idrac.yaml │ │ │ └── snmp.yml │ ├── Proxmox-Backup-Monitoring │ │ ├── Dashboard │ │ │ ├── grafana-pbs-v2.json │ │ │ └── grafana-proxmox-backup-server.json │ │ ├── readme.md │ │ └── yamls │ │ │ └── exporter-pbs.yaml │ ├── Proxmox-Monitoring │ │ ├── Dashboard │ │ │ └── grafana-proxmox.json │ │ ├── readme.md │ │ └── yamls │ │ │ └── prom-proxmox.yaml │ ├── Pushgateway │ │ ├── readme.md │ │ └── yaml │ │ │ └── ig-pushgateway.yaml │ ├── Storage │ │ ├── Ceph │ │ │ ├── Dashboards │ │ │ │ ├── ceph-cluster.json │ │ │ │ ├── cephfs-overview.json │ │ │ │ ├── osd-device-details.json │ │ │ │ ├── osds-overview.json │ │ │ │ ├── pool-detail.json │ │ │ │ ├── pools-overview.json │ │ │ │ ├── rbd-details.json │ │ │ │ └── rbd-overview.json │ │ │ ├── readme.md │ │ │ └── yamls │ │ │ │ ├── prom-ceph.yaml │ │ │ │ └── prometheus_alerts.yaml │ │ ├── Glusterfs │ │ │ ├── Dashboard │ │ │ │ └── grafana-glusterfs.json │ │ │ ├── readme.md │ │ │ └── yamls │ │ │ │ └── sm-gluster-exporter.yaml │ │ ├── Longhorn │ │ │ ├── Dashboard │ │ │ │ └── grafana-longhorn.json │ │ │ ├── readme.md │ │ │ └── yamls │ │ │ │ └── sm-longhorn.yaml │ │ ├── Minio │ │ │ ├── Dashboards │ │ │ │ ├── minio-bucket-dashboard.json │ │ │ │ ├── minio-dashboard.json │ │ │ │ ├── minio-node-dashboard.json │ │ │ │ └── minio-replication-dashboard.json │ │ │ ├── readme.md │ │ │ └── yamls │ │ │ │ └── sm-minio.yaml │ │ └── NFS-server │ │ │ ├── Dashboard │ │ │ └── grafana-nfs.json │ │ │ ├── readme.md │ │ │ └── yamls │ │ │ └── sm-nodeexporter.yaml │ ├── Teleport │ │ ├── Grafana │ │ │ └── grafana-teleport-cluster.json │ │ └── readme.md │ ├── Traefik │ │ ├── Dashboards │ │ │ ├── grafana-traefik.json │ │ │ └── grafana-traefik3.json │ │ ├── readme.md │ │ └── yamls │ │ │ └── prom-traefik.yaml │ ├── Uptime-kuma │ │ ├── Dashboard │ │ │ └── grafana-uk.json │ │ ├── readme.md │ │ └── yamls │ │ │ └── sm-ukuma.yaml │ ├── readme.md │ └── yamls │ │ ├── ig-kube-prometheus-stack.yaml │ │ └── kube-prometheus-stack-values.yaml ├── QRCodeGenerator │ ├── readme.md │ └── yamls │ │ └── qr-code-generator.yaml ├── Rancher │ └── readme.md ├── Reflector │ └── readme.md ├── Roundcube │ ├── readme.md │ └── yamls │ │ └── roundcube.yaml ├── Shlink │ ├── readme.md │ └── yamls │ │ ├── shlink-web-client.yaml │ │ └── shlink.yaml ├── Stirling-PDF │ ├── readme.md │ └── yamls │ │ └── s-pdf.yaml ├── Storage │ ├── Glusterfs │ │ ├── readme.md │ │ └── yamls │ │ │ ├── 01-endpoints.yaml │ │ │ ├── 02a-direct.yaml │ │ │ ├── 02b1-presistent-volume.yaml │ │ │ └── 02b2-persistent-volume-pod.yaml │ ├── Longhorn │ │ ├── readme.md │ │ └── yamls │ │ │ ├── ig-longhorn.yaml │ │ │ ├── longhorn-nvme-sc.yaml │ │ │ └── longhorn-values.yaml │ ├── MinIO │ │ ├── readme.md │ │ └── yamls │ │ │ ├── ig-minio-operator.yaml │ │ │ ├── ig-minio-tenant.yaml │ │ │ ├── minio-operator-values.yaml │ │ │ └── minio-tenant-values.yaml │ ├── NFS │ │ ├── readme.md │ │ └── yamls │ │ │ ├── nfs-test.yaml │ │ │ ├── sc-csi-nfs.yaml │ │ │ └── ssc-csi-nfs.yaml │ ├── OpenEBS │ │ └── readme.md │ ├── Rook │ │ ├── readme.md │ │ └── yamls │ │ │ ├── rook-mysql.yaml │ │ │ ├── rook-sc-nvme1tb.yaml │ │ │ ├── rook-sc-nvme2tb.yaml │ │ │ ├── rook-sc-ssd2t.yaml │ │ │ └── rook-wordpress.yaml │ └── readme.md ├── Teleport │ ├── readme.md │ └── yaml │ │ ├── ig-teleport.yaml │ │ ├── teleport-agent-cm.yaml │ │ ├── teleport-cluster-values.yaml │ │ ├── teleport-clusterip.yaml │ │ ├── teleport-kube-agent-15-values.yaml │ │ ├── teleport-kube-agent-values.yaml │ │ ├── teleport-loadbalancer.yaml │ │ └── teleport-ssl-cert.yaml ├── Traefik │ ├── readme.md │ └── yamls │ │ ├── ig-traefik.yaml │ │ └── traefik-values.yaml ├── Truenas │ ├── readme.md │ └── yamls │ │ └── ig-truenas.yaml ├── Uptimekuma │ ├── readme.md │ └── yamls │ │ └── ig-uptimekuma.yaml ├── Vaultwarden │ ├── readme.md │ └── yamls │ │ └── vaultwarden-deploy.yaml ├── Wazuh │ └── readme.md ├── k8tz │ └── readme.md ├── kubernetes-01.md ├── kubernetes-02.md └── readme.md ├── LICENSE ├── LinuxTips.md ├── NUT └── readme.md ├── Nethserver └── readme.md ├── Network ├── .$NetworkDiagram.drawio.bkp ├── NetworkDiagram.drawio ├── Switch │ ├── Arista.md │ ├── Cisco.md │ ├── readme.md │ └── switch.conf ├── V2 │ ├── Network2.drawio │ └── readme.md ├── network.drawio.svg └── readme.md ├── Proxmox ├── Ceph.md ├── Cloud-init.md ├── Clustering.md ├── Dell3rdPartyHardwareCheck.md ├── Installation.md ├── Network.md ├── Openmanage.md ├── Optimizations.md ├── Passtrhough.md ├── VirtualMachines.md ├── iDRACservicemodule.md ├── ipmitool.md ├── network │ └── interfaces └── readme.md ├── README.md ├── Rack ├── RackDiagram.drawio └── RackDiagram.png ├── Storage ├── Glusterfs │ └── readme.md ├── LVM │ └── readme.md ├── Microceph │ ├── readme.md │ └── yamls │ │ ├── ceph-dashboard-router.yaml │ │ └── ig-ceph-dashboard.yaml ├── NFS Cluster │ └── readme.md └── iSCSI │ └── readme.md ├── Swarm ├── readme.md └── swarm │ ├── databases │ ├── .POSTGRES_PASSWORD │ └── databases.yaml │ ├── devops │ ├── .PGADMIN_DEFAULT_PASSWORD │ └── devops.yaml │ ├── docker-swarm.yaml │ ├── docker │ └── docker.yaml │ ├── finance │ └── finance.yaml │ ├── graphics │ └── graphics.yaml │ ├── monitoring │ ├── .DATA_SOURCE_PASS │ ├── .PBS_API_TOKEN │ ├── .PBS_API_TOKEN_NAME │ ├── .PBS_USERNAME │ ├── cadvisor.yaml │ ├── grafana.yaml │ └── prometheus.yaml │ ├── network │ ├── .CF_DNS_API_TOKEN │ └── traefik.yaml │ ├── news │ └── news.yaml │ ├── office │ └── office.yaml │ └── tools │ └── homepage.yaml ├── TruenasSCALE └── readme.md ├── bashrc.md ├── homeassistant.md ├── postgres_ha.md ├── proxmox.md ├── ubuntuovpn.md └── zfs.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/.gitignore -------------------------------------------------------------------------------- /ActiveDirectory/readme.md: -------------------------------------------------------------------------------- 1 | # Active Directory 2 | 3 | IP: 10.0.50.15 4 | 5 | Domain: ad.urbaman.it 6 | -------------------------------------------------------------------------------- /Ansible/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Ansible/readme.md -------------------------------------------------------------------------------- /Asustor/Docker/configs/alertmanager/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Asustor/Docker/configs/alertmanager/config.yml -------------------------------------------------------------------------------- /Asustor/Docker/configs/grafana/provisioning/dashboards/dashboard.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Asustor/Docker/configs/grafana/provisioning/dashboards/dashboard.yml -------------------------------------------------------------------------------- /Asustor/Docker/configs/grafana/provisioning/dashboards/docker_containers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Asustor/Docker/configs/grafana/provisioning/dashboards/docker_containers.json -------------------------------------------------------------------------------- /Asustor/Docker/configs/grafana/provisioning/dashboards/docker_host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Asustor/Docker/configs/grafana/provisioning/dashboards/docker_host.json -------------------------------------------------------------------------------- /Asustor/Docker/configs/grafana/provisioning/dashboards/monitor_services.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Asustor/Docker/configs/grafana/provisioning/dashboards/monitor_services.json -------------------------------------------------------------------------------- /Asustor/Docker/configs/grafana/provisioning/dashboards/pihole.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Asustor/Docker/configs/grafana/provisioning/dashboards/pihole.json -------------------------------------------------------------------------------- /Asustor/Docker/configs/grafana/provisioning/dashboards/traefik.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Asustor/Docker/configs/grafana/provisioning/dashboards/traefik.json -------------------------------------------------------------------------------- /Asustor/Docker/configs/grafana/provisioning/datasources/datasource.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Asustor/Docker/configs/grafana/provisioning/datasources/datasource.yml -------------------------------------------------------------------------------- /Asustor/Docker/configs/homepage/config/bookmarks.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Asustor/Docker/configs/homepage/config/bookmarks.yaml -------------------------------------------------------------------------------- /Asustor/Docker/configs/homepage/config/custom.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Asustor/Docker/configs/homepage/config/custom.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Asustor/Docker/configs/homepage/config/docker.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Asustor/Docker/configs/homepage/config/docker.yaml -------------------------------------------------------------------------------- /Asustor/Docker/configs/homepage/config/kubernetes.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | # sample kubernetes config 3 | -------------------------------------------------------------------------------- /Asustor/Docker/configs/homepage/config/services.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Asustor/Docker/configs/homepage/config/services.yaml -------------------------------------------------------------------------------- /Asustor/Docker/configs/homepage/config/settings.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Asustor/Docker/configs/homepage/config/settings.yaml -------------------------------------------------------------------------------- /Asustor/Docker/configs/homepage/config/widgets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Asustor/Docker/configs/homepage/config/widgets.yaml -------------------------------------------------------------------------------- /Asustor/Docker/configs/pihole/dnsmasq.d/07-dhcp-options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Asustor/Docker/configs/pihole/dnsmasq.d/07-dhcp-options -------------------------------------------------------------------------------- /Asustor/Docker/configs/prometheus/alert.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Asustor/Docker/configs/prometheus/alert.rules -------------------------------------------------------------------------------- /Asustor/Docker/configs/prometheus/prometheus.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Asustor/Docker/configs/prometheus/prometheus.yml -------------------------------------------------------------------------------- /Asustor/Docker/configs/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Asustor/Docker/configs/readme.md -------------------------------------------------------------------------------- /Asustor/Docker/configs/traefik/acme/acme.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Asustor/Docker/configs/traefik/rules/asusstornas1-rtr.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Asustor/Docker/configs/traefik/rules/asusstornas1-rtr.yaml -------------------------------------------------------------------------------- /Asustor/Docker/configs/traefik/rules/homelab-rtr.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Asustor/Docker/configs/traefik/rules/homelab-rtr.yaml -------------------------------------------------------------------------------- /Asustor/Docker/configs/traefik/rules/middlewares-buffer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Asustor/Docker/configs/traefik/rules/middlewares-buffer.yaml -------------------------------------------------------------------------------- /Asustor/Docker/configs/traefik/rules/middlewares-chain-no-auth.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Asustor/Docker/configs/traefik/rules/middlewares-chain-no-auth.yaml -------------------------------------------------------------------------------- /Asustor/Docker/configs/traefik/rules/middlewares-rate.limit.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Asustor/Docker/configs/traefik/rules/middlewares-rate.limit.yaml -------------------------------------------------------------------------------- /Asustor/Docker/configs/traefik/rules/middlewares-security-headers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Asustor/Docker/configs/traefik/rules/middlewares-security-headers.yaml -------------------------------------------------------------------------------- /Asustor/Docker/configs/traefik/rules/nassell-rtr.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Asustor/Docker/configs/traefik/rules/nassell-rtr.yaml -------------------------------------------------------------------------------- /Asustor/Docker/configs/traefik/rules/tls-opts.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Asustor/Docker/configs/traefik/rules/tls-opts.yml -------------------------------------------------------------------------------- /Asustor/Docker/data/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Asustor/Docker/data/readme.md -------------------------------------------------------------------------------- /Asustor/Docker/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Asustor/Docker/readme.md -------------------------------------------------------------------------------- /Asustor/docker-compose/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Asustor/docker-compose/.env -------------------------------------------------------------------------------- /Asustor/docker-compose/compose/cloud/nextcloud.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Asustor/docker-compose/compose/cloud/nextcloud.yaml -------------------------------------------------------------------------------- /Asustor/docker-compose/compose/coding/code-server.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Asustor/docker-compose/compose/coding/code-server.yaml -------------------------------------------------------------------------------- /Asustor/docker-compose/compose/core/clamav.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Asustor/docker-compose/compose/core/clamav.yaml -------------------------------------------------------------------------------- /Asustor/docker-compose/compose/core/dozzle.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Asustor/docker-compose/compose/core/dozzle.yaml -------------------------------------------------------------------------------- /Asustor/docker-compose/compose/core/homepage.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Asustor/docker-compose/compose/core/homepage.yaml -------------------------------------------------------------------------------- /Asustor/docker-compose/compose/core/portainer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Asustor/docker-compose/compose/core/portainer.yaml -------------------------------------------------------------------------------- /Asustor/docker-compose/compose/database/mariadb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Asustor/docker-compose/compose/database/mariadb.yaml -------------------------------------------------------------------------------- /Asustor/docker-compose/compose/database/redis.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Asustor/docker-compose/compose/database/redis.yaml -------------------------------------------------------------------------------- /Asustor/docker-compose/compose/monitoring/alertmanager.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Asustor/docker-compose/compose/monitoring/alertmanager.yaml -------------------------------------------------------------------------------- /Asustor/docker-compose/compose/monitoring/cadvisor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Asustor/docker-compose/compose/monitoring/cadvisor.yaml -------------------------------------------------------------------------------- /Asustor/docker-compose/compose/monitoring/grafana.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Asustor/docker-compose/compose/monitoring/grafana.yaml -------------------------------------------------------------------------------- /Asustor/docker-compose/compose/monitoring/mariadbexporter.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Asustor/docker-compose/compose/monitoring/mariadbexporter.yaml -------------------------------------------------------------------------------- /Asustor/docker-compose/compose/monitoring/nextcloudexporter.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Asustor/docker-compose/compose/monitoring/nextcloudexporter.yaml -------------------------------------------------------------------------------- /Asustor/docker-compose/compose/monitoring/nodeexporter.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Asustor/docker-compose/compose/monitoring/nodeexporter.yaml -------------------------------------------------------------------------------- /Asustor/docker-compose/compose/monitoring/piholeexporter.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Asustor/docker-compose/compose/monitoring/piholeexporter.yaml -------------------------------------------------------------------------------- /Asustor/docker-compose/compose/monitoring/prometheus.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Asustor/docker-compose/compose/monitoring/prometheus.yaml -------------------------------------------------------------------------------- /Asustor/docker-compose/compose/monitoring/pushgateway.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Asustor/docker-compose/compose/monitoring/pushgateway.yaml -------------------------------------------------------------------------------- /Asustor/docker-compose/compose/monitoring/redisexporter.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Asustor/docker-compose/compose/monitoring/redisexporter.yaml -------------------------------------------------------------------------------- /Asustor/docker-compose/compose/network/cloudflared.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Asustor/docker-compose/compose/network/cloudflared.yaml -------------------------------------------------------------------------------- /Asustor/docker-compose/compose/network/dhcphelper.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Asustor/docker-compose/compose/network/dhcphelper.yaml -------------------------------------------------------------------------------- /Asustor/docker-compose/compose/network/dockovpn.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Asustor/docker-compose/compose/network/dockovpn.yaml -------------------------------------------------------------------------------- /Asustor/docker-compose/compose/network/nginxproxymanager.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Asustor/docker-compose/compose/network/nginxproxymanager.yaml -------------------------------------------------------------------------------- /Asustor/docker-compose/compose/network/pihole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Asustor/docker-compose/compose/network/pihole.yaml -------------------------------------------------------------------------------- /Asustor/docker-compose/compose/network/traefik.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Asustor/docker-compose/compose/network/traefik.yaml -------------------------------------------------------------------------------- /Asustor/docker-compose/compose/tools/boinc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Asustor/docker-compose/compose/tools/boinc.yaml -------------------------------------------------------------------------------- /Asustor/docker-compose/compose/tools/collabora.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Asustor/docker-compose/compose/tools/collabora.yaml -------------------------------------------------------------------------------- /Asustor/docker-compose/compose/tools/drawio.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Asustor/docker-compose/compose/tools/drawio.yaml -------------------------------------------------------------------------------- /Asustor/docker-compose/compose/tools/it-tools.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Asustor/docker-compose/compose/tools/it-tools.yaml -------------------------------------------------------------------------------- /Asustor/docker-compose/compose/tools/stirling-pdf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Asustor/docker-compose/compose/tools/stirling-pdf.yaml -------------------------------------------------------------------------------- /Asustor/docker-compose/dhcp-helper/dhcp-helper.dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Asustor/docker-compose/dhcp-helper/dhcp-helper.dockerfile -------------------------------------------------------------------------------- /Asustor/docker-compose/docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Asustor/docker-compose/docker-compose.yaml -------------------------------------------------------------------------------- /Asustor/docker-compose/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Asustor/docker-compose/readme.md -------------------------------------------------------------------------------- /Asustor/docker-compose/secrets/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Asustor/docker-compose/secrets/readme.md -------------------------------------------------------------------------------- /Asustor/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Asustor/readme.md -------------------------------------------------------------------------------- /CertbotCloudflare/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/CertbotCloudflare/readme.md -------------------------------------------------------------------------------- /Docker/NvidiaGPU/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Docker/NvidiaGPU/readme.md -------------------------------------------------------------------------------- /Docker/docker/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Docker/docker/.env -------------------------------------------------------------------------------- /Docker/docker/compose/databases/cloudbeaver.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Docker/docker/compose/databases/cloudbeaver.yaml -------------------------------------------------------------------------------- /Docker/docker/compose/databases/dbgate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Docker/docker/compose/databases/dbgate.yaml -------------------------------------------------------------------------------- /Docker/docker/compose/databases/mariadb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Docker/docker/compose/databases/mariadb.yaml -------------------------------------------------------------------------------- /Docker/docker/compose/databases/memcached.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Docker/docker/compose/databases/memcached.yaml -------------------------------------------------------------------------------- /Docker/docker/compose/databases/mongodb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Docker/docker/compose/databases/mongodb.yaml -------------------------------------------------------------------------------- /Docker/docker/compose/databases/postgresql.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Docker/docker/compose/databases/postgresql.yaml -------------------------------------------------------------------------------- /Docker/docker/compose/databases/valkey.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Docker/docker/compose/databases/valkey.yaml -------------------------------------------------------------------------------- /Docker/docker/compose/management/authentik.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Docker/docker/compose/management/authentik.yaml -------------------------------------------------------------------------------- /Docker/docker/compose/management/portainer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Docker/docker/compose/management/portainer.yaml -------------------------------------------------------------------------------- /Docker/docker/compose/mediaserver/bazarr.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Docker/docker/compose/mediaserver/bazarr.yaml -------------------------------------------------------------------------------- /Docker/docker/compose/mediaserver/calibre.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Docker/docker/compose/mediaserver/calibre.yaml -------------------------------------------------------------------------------- /Docker/docker/compose/mediaserver/flaresolverr.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Docker/docker/compose/mediaserver/flaresolverr.yaml -------------------------------------------------------------------------------- /Docker/docker/compose/mediaserver/gluetun.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Docker/docker/compose/mediaserver/gluetun.yaml -------------------------------------------------------------------------------- /Docker/docker/compose/mediaserver/jellyfin.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Docker/docker/compose/mediaserver/jellyfin.yaml -------------------------------------------------------------------------------- /Docker/docker/compose/mediaserver/jellyseerr.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Docker/docker/compose/mediaserver/jellyseerr.yaml -------------------------------------------------------------------------------- /Docker/docker/compose/mediaserver/lidarr.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Docker/docker/compose/mediaserver/lidarr.yaml -------------------------------------------------------------------------------- /Docker/docker/compose/mediaserver/prowlarr.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Docker/docker/compose/mediaserver/prowlarr.yaml -------------------------------------------------------------------------------- /Docker/docker/compose/mediaserver/radarr.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Docker/docker/compose/mediaserver/radarr.yaml -------------------------------------------------------------------------------- /Docker/docker/compose/mediaserver/readarr.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Docker/docker/compose/mediaserver/readarr.yaml -------------------------------------------------------------------------------- /Docker/docker/compose/mediaserver/sabnzbd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Docker/docker/compose/mediaserver/sabnzbd.yaml -------------------------------------------------------------------------------- /Docker/docker/compose/mediaserver/sonarr.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Docker/docker/compose/mediaserver/sonarr.yaml -------------------------------------------------------------------------------- /Docker/docker/compose/mediaserver/transmission.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Docker/docker/compose/mediaserver/transmission.yaml -------------------------------------------------------------------------------- /Docker/docker/compose/mediaserver/unpackerr.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Docker/docker/compose/mediaserver/unpackerr.yaml -------------------------------------------------------------------------------- /Docker/docker/compose/monitoring/alertmanager.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Docker/docker/compose/monitoring/alertmanager.yaml -------------------------------------------------------------------------------- /Docker/docker/compose/monitoring/cadvisor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Docker/docker/compose/monitoring/cadvisor.yaml -------------------------------------------------------------------------------- /Docker/docker/compose/monitoring/dozzle.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Docker/docker/compose/monitoring/dozzle.yaml -------------------------------------------------------------------------------- /Docker/docker/compose/monitoring/grafana.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Docker/docker/compose/monitoring/grafana.yaml -------------------------------------------------------------------------------- /Docker/docker/compose/monitoring/mariadb-exporter.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Docker/docker/compose/monitoring/mariadb-exporter.yaml -------------------------------------------------------------------------------- /Docker/docker/compose/monitoring/memcached-exporter.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Docker/docker/compose/monitoring/memcached-exporter.yaml -------------------------------------------------------------------------------- /Docker/docker/compose/monitoring/mongodb-exporter.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Docker/docker/compose/monitoring/mongodb-exporter.yaml -------------------------------------------------------------------------------- /Docker/docker/compose/monitoring/node-exporter.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Docker/docker/compose/monitoring/node-exporter.yaml -------------------------------------------------------------------------------- /Docker/docker/compose/monitoring/pbs1-exporter.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Docker/docker/compose/monitoring/pbs1-exporter.yaml -------------------------------------------------------------------------------- /Docker/docker/compose/monitoring/postgres-exporter.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Docker/docker/compose/monitoring/postgres-exporter.yaml -------------------------------------------------------------------------------- /Docker/docker/compose/monitoring/prometheus.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Docker/docker/compose/monitoring/prometheus.yaml -------------------------------------------------------------------------------- /Docker/docker/compose/monitoring/redis-exporter.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Docker/docker/compose/monitoring/redis-exporter.yaml -------------------------------------------------------------------------------- /Docker/docker/compose/monitoring/watchtower.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Docker/docker/compose/monitoring/watchtower.yaml -------------------------------------------------------------------------------- /Docker/docker/compose/network/traefik.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Docker/docker/compose/network/traefik.yaml -------------------------------------------------------------------------------- /Docker/docker/compose/security/clamav.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Docker/docker/compose/security/clamav.yaml -------------------------------------------------------------------------------- /Docker/docker/compose/security/crowdsec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Docker/docker/compose/security/crowdsec.yaml -------------------------------------------------------------------------------- /Docker/docker/compose/security/generate-indexer-certs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Docker/docker/compose/security/generate-indexer-certs.yml -------------------------------------------------------------------------------- /Docker/docker/compose/security/wazuh.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Docker/docker/compose/security/wazuh.yaml -------------------------------------------------------------------------------- /Docker/docker/compose/storage/minio.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Docker/docker/compose/storage/minio.yaml -------------------------------------------------------------------------------- /Docker/docker/compose/tools/actual-budget.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Docker/docker/compose/tools/actual-budget.yaml -------------------------------------------------------------------------------- /Docker/docker/compose/tools/bookstack.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Docker/docker/compose/tools/bookstack.yaml -------------------------------------------------------------------------------- /Docker/docker/compose/tools/collabora.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Docker/docker/compose/tools/collabora.yaml -------------------------------------------------------------------------------- /Docker/docker/compose/tools/composecraft.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Docker/docker/compose/tools/composecraft.yaml -------------------------------------------------------------------------------- /Docker/docker/compose/tools/cyberchef.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Docker/docker/compose/tools/cyberchef.yaml -------------------------------------------------------------------------------- /Docker/docker/compose/tools/drawio.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Docker/docker/compose/tools/drawio.yaml -------------------------------------------------------------------------------- /Docker/docker/compose/tools/excalidraw.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Docker/docker/compose/tools/excalidraw.yaml -------------------------------------------------------------------------------- /Docker/docker/compose/tools/fireflyIII.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Docker/docker/compose/tools/fireflyIII.yaml -------------------------------------------------------------------------------- /Docker/docker/compose/tools/freshrss.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Docker/docker/compose/tools/freshrss.yaml -------------------------------------------------------------------------------- /Docker/docker/compose/tools/gitlab.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Docker/docker/compose/tools/gitlab.yaml -------------------------------------------------------------------------------- /Docker/docker/compose/tools/homepage.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Docker/docker/compose/tools/homepage.yaml -------------------------------------------------------------------------------- /Docker/docker/compose/tools/immich-ml.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Docker/docker/compose/tools/immich-ml.yaml -------------------------------------------------------------------------------- /Docker/docker/compose/tools/immich.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Docker/docker/compose/tools/immich.yaml -------------------------------------------------------------------------------- /Docker/docker/compose/tools/it-tools.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Docker/docker/compose/tools/it-tools.yaml -------------------------------------------------------------------------------- /Docker/docker/compose/tools/karakeep.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Docker/docker/compose/tools/karakeep.yaml -------------------------------------------------------------------------------- /Docker/docker/compose/tools/local-ai.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Docker/docker/compose/tools/local-ai.yaml -------------------------------------------------------------------------------- /Docker/docker/compose/tools/n8n.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Docker/docker/compose/tools/n8n.yaml -------------------------------------------------------------------------------- /Docker/docker/compose/tools/netbox.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Docker/docker/compose/tools/netbox.yaml -------------------------------------------------------------------------------- /Docker/docker/compose/tools/nextcloud.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Docker/docker/compose/tools/nextcloud.yaml -------------------------------------------------------------------------------- /Docker/docker/compose/tools/openproject.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Docker/docker/compose/tools/openproject.yaml -------------------------------------------------------------------------------- /Docker/docker/compose/tools/paperless-ngx.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Docker/docker/compose/tools/paperless-ngx.yaml -------------------------------------------------------------------------------- /Docker/docker/compose/tools/privatebin.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Docker/docker/compose/tools/privatebin.yaml -------------------------------------------------------------------------------- /Docker/docker/compose/tools/qrcodegenerator.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Docker/docker/compose/tools/qrcodegenerator.yaml -------------------------------------------------------------------------------- /Docker/docker/compose/tools/roundcube.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Docker/docker/compose/tools/roundcube.yaml -------------------------------------------------------------------------------- /Docker/docker/compose/tools/semaphoreui.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Docker/docker/compose/tools/semaphoreui.yaml -------------------------------------------------------------------------------- /Docker/docker/compose/tools/shlink.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Docker/docker/compose/tools/shlink.yaml -------------------------------------------------------------------------------- /Docker/docker/compose/tools/stirling-pdf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Docker/docker/compose/tools/stirling-pdf.yaml -------------------------------------------------------------------------------- /Docker/docker/compose/tools/talk.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Docker/docker/compose/tools/talk.yaml -------------------------------------------------------------------------------- /Docker/docker/compose/tools/teleport.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Docker/docker/compose/tools/teleport.yaml -------------------------------------------------------------------------------- /Docker/docker/compose/tools/vaultwarden.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Docker/docker/compose/tools/vaultwarden.yaml -------------------------------------------------------------------------------- /Docker/docker/docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Docker/docker/docker-compose.yaml -------------------------------------------------------------------------------- /Docker/docker/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Docker/docker/readme.md -------------------------------------------------------------------------------- /Docker/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Docker/readme.md -------------------------------------------------------------------------------- /Docker/volumes/DockerProd1/configs/alertmanager/alertmanager.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Docker/volumes/DockerProd1/configs/alertmanager/alertmanager.yml -------------------------------------------------------------------------------- /Docker/volumes/DockerProd1/configs/alertmanager/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Docker/volumes/DockerProd1/configs/alertmanager/config.yml -------------------------------------------------------------------------------- /Docker/volumes/DockerProd1/configs/homepage/config/bookmarks.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Docker/volumes/DockerProd1/configs/homepage/config/bookmarks.yaml -------------------------------------------------------------------------------- /Docker/volumes/DockerProd1/configs/homepage/config/custom.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Docker/volumes/DockerProd1/configs/homepage/config/custom.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Docker/volumes/DockerProd1/configs/homepage/config/docker.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Docker/volumes/DockerProd1/configs/homepage/config/docker.yaml -------------------------------------------------------------------------------- /Docker/volumes/DockerProd1/configs/homepage/config/kubernetes.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | # sample kubernetes config 3 | -------------------------------------------------------------------------------- /Docker/volumes/DockerProd1/configs/homepage/config/services.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Docker/volumes/DockerProd1/configs/homepage/config/services.yaml -------------------------------------------------------------------------------- /Docker/volumes/DockerProd1/configs/homepage/config/settings.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Docker/volumes/DockerProd1/configs/homepage/config/settings.yaml -------------------------------------------------------------------------------- /Docker/volumes/DockerProd1/configs/homepage/config/widgets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Docker/volumes/DockerProd1/configs/homepage/config/widgets.yaml -------------------------------------------------------------------------------- /Docker/volumes/DockerProd1/configs/prometheus/alert-rules.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Docker/volumes/DockerProd1/configs/prometheus/alert-rules.yml -------------------------------------------------------------------------------- /Docker/volumes/DockerProd1/configs/prometheus/prometheus.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Docker/volumes/DockerProd1/configs/prometheus/prometheus.yml -------------------------------------------------------------------------------- /Docker/volumes/DockerProd1/configs/teleport/teleport.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Docker/volumes/DockerProd1/configs/teleport/teleport.yaml -------------------------------------------------------------------------------- /Docker/volumes/DockerProd1/configs/traefik/acme/acme.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Docker/volumes/DockerProd1/configs/traefik/rules/middlewares.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Docker/volumes/DockerProd1/configs/traefik/rules/middlewares.yaml -------------------------------------------------------------------------------- /Docker/volumes/DockerProd1/configs/traefik/rules/routers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Docker/volumes/DockerProd1/configs/traefik/rules/routers.yaml -------------------------------------------------------------------------------- /Docker/volumes/DockerProd1/configs/traefik/rules/serversTransports.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Docker/volumes/DockerProd1/configs/traefik/rules/serversTransports.yaml -------------------------------------------------------------------------------- /Docker/volumes/DockerProd1/configs/traefik/rules/services.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Docker/volumes/DockerProd1/configs/traefik/rules/services.yaml -------------------------------------------------------------------------------- /Docker/volumes/DockerProd1/configs/traefik/rules/tls-opts.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Docker/volumes/DockerProd1/configs/traefik/rules/tls-opts.yaml -------------------------------------------------------------------------------- /Docker/volumes/DockerProd1/configs/wazuh/certs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Docker/volumes/DockerProd1/configs/wazuh/certs.yml -------------------------------------------------------------------------------- /Docker/volumes/DockerProd1/configs/wazuh/wazuh_cluster/wazuh_manager.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Docker/volumes/DockerProd1/configs/wazuh/wazuh_cluster/wazuh_manager.conf -------------------------------------------------------------------------------- /Docker/volumes/DockerProd1/configs/wazuh/wazuh_dashboard/opensearch_dashboards.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Docker/volumes/DockerProd1/configs/wazuh/wazuh_dashboard/opensearch_dashboards.yml -------------------------------------------------------------------------------- /Docker/volumes/DockerProd1/configs/wazuh/wazuh_dashboard/wazuh.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Docker/volumes/DockerProd1/configs/wazuh/wazuh_dashboard/wazuh.yml -------------------------------------------------------------------------------- /Docker/volumes/DockerProd1/configs/wazuh/wazuh_indexer/internal_users.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Docker/volumes/DockerProd1/configs/wazuh/wazuh_indexer/internal_users.yml -------------------------------------------------------------------------------- /Docker/volumes/DockerProd1/configs/wazuh/wazuh_indexer/wazuh.indexer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Docker/volumes/DockerProd1/configs/wazuh/wazuh_indexer/wazuh.indexer.yml -------------------------------------------------------------------------------- /Docker/volumes/DockerProd1/configs/wazuh/wazuh_indexer_ssl_certs/admin-key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Docker/volumes/DockerProd1/configs/wazuh/wazuh_indexer_ssl_certs/admin-key.pem -------------------------------------------------------------------------------- /Docker/volumes/DockerProd1/configs/wazuh/wazuh_indexer_ssl_certs/admin.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Docker/volumes/DockerProd1/configs/wazuh/wazuh_indexer_ssl_certs/admin.pem -------------------------------------------------------------------------------- /Docker/volumes/DockerProd1/configs/wazuh/wazuh_indexer_ssl_certs/root-ca.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Docker/volumes/DockerProd1/configs/wazuh/wazuh_indexer_ssl_certs/root-ca.key -------------------------------------------------------------------------------- /Docker/volumes/DockerProd1/configs/wazuh/wazuh_indexer_ssl_certs/root-ca.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Docker/volumes/DockerProd1/configs/wazuh/wazuh_indexer_ssl_certs/root-ca.pem -------------------------------------------------------------------------------- /Docker/volumes/DockerProd1/configs/wazuh/wazuh_indexer_ssl_certs/wazuh.dashboard-key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Docker/volumes/DockerProd1/configs/wazuh/wazuh_indexer_ssl_certs/wazuh.dashboard-key.pem -------------------------------------------------------------------------------- /Docker/volumes/DockerProd1/configs/wazuh/wazuh_indexer_ssl_certs/wazuh.dashboard.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Docker/volumes/DockerProd1/configs/wazuh/wazuh_indexer_ssl_certs/wazuh.dashboard.pem -------------------------------------------------------------------------------- /Docker/volumes/DockerProd1/configs/wazuh/wazuh_indexer_ssl_certs/wazuh.indexer-key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Docker/volumes/DockerProd1/configs/wazuh/wazuh_indexer_ssl_certs/wazuh.indexer-key.pem -------------------------------------------------------------------------------- /Docker/volumes/DockerProd1/configs/wazuh/wazuh_indexer_ssl_certs/wazuh.indexer.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Docker/volumes/DockerProd1/configs/wazuh/wazuh_indexer_ssl_certs/wazuh.indexer.pem -------------------------------------------------------------------------------- /Images/.gitkeep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Images/Proxmox Network diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Images/Proxmox Network diagram.png -------------------------------------------------------------------------------- /Images/Proxmox Storage diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Images/Proxmox Storage diagram.png -------------------------------------------------------------------------------- /Kubernetes/ActualBudget/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/ActualBudget/readme.md -------------------------------------------------------------------------------- /Kubernetes/ActualBudget/yamls/actual-budget.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/ActualBudget/yamls/actual-budget.yaml -------------------------------------------------------------------------------- /Kubernetes/Asustornas1/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Asustornas1/readme.md -------------------------------------------------------------------------------- /Kubernetes/Asustornas1/yamls/ig-asustornas1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Asustornas1/yamls/ig-asustornas1.yaml -------------------------------------------------------------------------------- /Kubernetes/Authentik/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Authentik/readme.md -------------------------------------------------------------------------------- /Kubernetes/Authentik/yamls/ig-authentik-forwardauth.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Authentik/yamls/ig-authentik-forwardauth.yaml -------------------------------------------------------------------------------- /Kubernetes/Authentik/yamls/ig-authentik.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Authentik/yamls/ig-authentik.yaml -------------------------------------------------------------------------------- /Kubernetes/Authentik/yamls/middleware-authentik.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Authentik/yamls/middleware-authentik.yaml -------------------------------------------------------------------------------- /Kubernetes/Automation/ArgoCD/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Automation/ArgoCD/readme.md -------------------------------------------------------------------------------- /Kubernetes/Automation/ArgoCD/yamls/argocd-redis-auth.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Automation/ArgoCD/yamls/argocd-redis-auth.yaml -------------------------------------------------------------------------------- /Kubernetes/Automation/ArgoCD/yamls/argocd-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Automation/ArgoCD/yamls/argocd-values.yaml -------------------------------------------------------------------------------- /Kubernetes/Automation/ArgoCD/yamls/ig-argocd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Automation/ArgoCD/yamls/ig-argocd.yaml -------------------------------------------------------------------------------- /Kubernetes/Automation/ExternalSecrets/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Automation/ExternalSecrets/readme.md -------------------------------------------------------------------------------- /Kubernetes/Automation/ExternalSecrets/yamls/cluster-external-secret-example.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Automation/ExternalSecrets/yamls/cluster-external-secret-example.yaml -------------------------------------------------------------------------------- /Kubernetes/Automation/ExternalSecrets/yamls/cluster-push-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Automation/ExternalSecrets/yamls/cluster-push-secret.yaml -------------------------------------------------------------------------------- /Kubernetes/Automation/ExternalSecrets/yamls/cluster-secret-store.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Automation/ExternalSecrets/yamls/cluster-secret-store.yaml -------------------------------------------------------------------------------- /Kubernetes/Automation/ExternalSecrets/yamls/external-secret-example.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Automation/ExternalSecrets/yamls/external-secret-example.yaml -------------------------------------------------------------------------------- /Kubernetes/Automation/Gitea/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Automation/Gitea/readme.md -------------------------------------------------------------------------------- /Kubernetes/Automation/Gitea/yamls/ig-gitea.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Automation/Gitea/yamls/ig-gitea.yaml -------------------------------------------------------------------------------- /Kubernetes/Automation/Gitlab/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Automation/Gitlab/readme.md -------------------------------------------------------------------------------- /Kubernetes/Automation/Gitlab/yamls/gitlab-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Automation/Gitlab/yamls/gitlab-values.yaml -------------------------------------------------------------------------------- /Kubernetes/Automation/Gitlab/yamls/ig-gitlab.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Automation/Gitlab/yamls/ig-gitlab.yaml -------------------------------------------------------------------------------- /Kubernetes/Automation/HashicorpVault/confs/cert.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Automation/HashicorpVault/confs/cert.config -------------------------------------------------------------------------------- /Kubernetes/Automation/HashicorpVault/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Automation/HashicorpVault/readme.md -------------------------------------------------------------------------------- /Kubernetes/Automation/HashicorpVault/yamls/hashicorp-vault-ha-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Automation/HashicorpVault/yamls/hashicorp-vault-ha-values.yaml -------------------------------------------------------------------------------- /Kubernetes/Automation/HashicorpVault/yamls/hashicorp-vault-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Automation/HashicorpVault/yamls/hashicorp-vault-values.yaml -------------------------------------------------------------------------------- /Kubernetes/Automation/HashicorpVault/yamls/ig-hashicorp-vault-ha.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Automation/HashicorpVault/yamls/ig-hashicorp-vault-ha.yaml -------------------------------------------------------------------------------- /Kubernetes/Automation/HashicorpVault/yamls/ig-hashicorp-vault.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Automation/HashicorpVault/yamls/ig-hashicorp-vault.yaml -------------------------------------------------------------------------------- /Kubernetes/Automation/Semaphore/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Automation/Semaphore/readme.md -------------------------------------------------------------------------------- /Kubernetes/Automation/Semaphore/yamls/ig-semaphore.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Automation/Semaphore/yamls/ig-semaphore.yaml -------------------------------------------------------------------------------- /Kubernetes/Automation/Semaphore/yamls/semaphore-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Automation/Semaphore/yamls/semaphore-values.yaml -------------------------------------------------------------------------------- /Kubernetes/Automation/Semaphore/yamls/semaphoreui.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Automation/Semaphore/yamls/semaphoreui.yaml -------------------------------------------------------------------------------- /Kubernetes/Bookstack/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Bookstack/readme.md -------------------------------------------------------------------------------- /Kubernetes/Bookstack/yamls/bookstack-deploy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Bookstack/yamls/bookstack-deploy.yaml -------------------------------------------------------------------------------- /Kubernetes/Cert-manager/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Cert-manager/readme.md -------------------------------------------------------------------------------- /Kubernetes/Cert-manager/yamls/cert-manager-issuer-cfdns01.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Cert-manager/yamls/cert-manager-issuer-cfdns01.yaml -------------------------------------------------------------------------------- /Kubernetes/Cert-manager/yamls/cert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Cert-manager/yamls/cert.yaml -------------------------------------------------------------------------------- /Kubernetes/ClamAV/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/ClamAV/readme.md -------------------------------------------------------------------------------- /Kubernetes/Cloudflare-Operator/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Cloudflare-Operator/readme.md -------------------------------------------------------------------------------- /Kubernetes/Cloudflare-Operator/yamls/01-cloudflare-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Cloudflare-Operator/yamls/01-cloudflare-secret.yaml -------------------------------------------------------------------------------- /Kubernetes/Cloudflare-Operator/yamls/02-cloudflareaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Cloudflare-Operator/yamls/02-cloudflareaccount.yaml -------------------------------------------------------------------------------- /Kubernetes/Cloudflare-Operator/yamls/03-dynamic-IP.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Cloudflare-Operator/yamls/03-dynamic-IP.yaml -------------------------------------------------------------------------------- /Kubernetes/Cloudflare-Operator/yamls/04a-dns-a-dynamic-ip.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Cloudflare-Operator/yamls/04a-dns-a-dynamic-ip.yaml -------------------------------------------------------------------------------- /Kubernetes/Cloudflare-Operator/yamls/04b-dns-a-fixed-ip.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Cloudflare-Operator/yamls/04b-dns-a-fixed-ip.yaml -------------------------------------------------------------------------------- /Kubernetes/Cloudflare-Operator/yamls/04c-dns-cname.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Cloudflare-Operator/yamls/04c-dns-cname.yaml -------------------------------------------------------------------------------- /Kubernetes/Cloudflare-Operator/yamls/05-prometheus-pod-monitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Cloudflare-Operator/yamls/05-prometheus-pod-monitor.yaml -------------------------------------------------------------------------------- /Kubernetes/Cloudflare-Operator/yamls/06-grafana-dashboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Cloudflare-Operator/yamls/06-grafana-dashboard.json -------------------------------------------------------------------------------- /Kubernetes/Cluster/01-Prepare-Machines/configs/20auto-upgrades: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Cluster/01-Prepare-Machines/configs/20auto-upgrades -------------------------------------------------------------------------------- /Kubernetes/Cluster/01-Prepare-Machines/configs/50-default.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Cluster/01-Prepare-Machines/configs/50-default.conf -------------------------------------------------------------------------------- /Kubernetes/Cluster/01-Prepare-Machines/configs/50unattended-upgrades: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Cluster/01-Prepare-Machines/configs/50unattended-upgrades -------------------------------------------------------------------------------- /Kubernetes/Cluster/01-Prepare-Machines/configs/main.cf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Cluster/01-Prepare-Machines/configs/main.cf -------------------------------------------------------------------------------- /Kubernetes/Cluster/01-Prepare-Machines/configs/sasl_passwd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Cluster/01-Prepare-Machines/configs/sasl_passwd -------------------------------------------------------------------------------- /Kubernetes/Cluster/01-Prepare-Machines/configs/smtp_header_checks file: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Cluster/01-Prepare-Machines/configs/smtp_header_checks file -------------------------------------------------------------------------------- /Kubernetes/Cluster/01-Prepare-Machines/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Cluster/01-Prepare-Machines/readme.md -------------------------------------------------------------------------------- /Kubernetes/Cluster/02-External-Etcd/configs/etcd.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Cluster/02-External-Etcd/configs/etcd.service -------------------------------------------------------------------------------- /Kubernetes/Cluster/02-External-Etcd/configs/etcd1.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Cluster/02-External-Etcd/configs/etcd1.conf -------------------------------------------------------------------------------- /Kubernetes/Cluster/02-External-Etcd/configs/etcd2.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Cluster/02-External-Etcd/configs/etcd2.conf -------------------------------------------------------------------------------- /Kubernetes/Cluster/02-External-Etcd/configs/etcd3.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Cluster/02-External-Etcd/configs/etcd3.conf -------------------------------------------------------------------------------- /Kubernetes/Cluster/02-External-Etcd/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Cluster/02-External-Etcd/readme.md -------------------------------------------------------------------------------- /Kubernetes/Cluster/03-High-Availability/configs/check_apiserver.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Cluster/03-High-Availability/configs/check_apiserver.sh -------------------------------------------------------------------------------- /Kubernetes/Cluster/03-High-Availability/configs/haproxy.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Cluster/03-High-Availability/configs/haproxy.cfg -------------------------------------------------------------------------------- /Kubernetes/Cluster/03-High-Availability/configs/keepalived_backup.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Cluster/03-High-Availability/configs/keepalived_backup.conf -------------------------------------------------------------------------------- /Kubernetes/Cluster/03-High-Availability/configs/keepalived_master.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Cluster/03-High-Availability/configs/keepalived_master.conf -------------------------------------------------------------------------------- /Kubernetes/Cluster/03-High-Availability/configs/sysctl.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Cluster/03-High-Availability/configs/sysctl.conf -------------------------------------------------------------------------------- /Kubernetes/Cluster/03-High-Availability/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Cluster/03-High-Availability/readme.md -------------------------------------------------------------------------------- /Kubernetes/Cluster/04-Kubernetes/configs/99-kubernetes-cri.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Cluster/04-Kubernetes/configs/99-kubernetes-cri.conf -------------------------------------------------------------------------------- /Kubernetes/Cluster/04-Kubernetes/configs/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Cluster/04-Kubernetes/configs/config.toml -------------------------------------------------------------------------------- /Kubernetes/Cluster/04-Kubernetes/configs/containerd.conf: -------------------------------------------------------------------------------- 1 | overlay 2 | br_netfilter 3 | -------------------------------------------------------------------------------- /Kubernetes/Cluster/04-Kubernetes/configs/custom-resources.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Cluster/04-Kubernetes/configs/custom-resources.yaml -------------------------------------------------------------------------------- /Kubernetes/Cluster/04-Kubernetes/configs/kubeadm-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Cluster/04-Kubernetes/configs/kubeadm-config.yaml -------------------------------------------------------------------------------- /Kubernetes/Cluster/04-Kubernetes/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Cluster/04-Kubernetes/readme.md -------------------------------------------------------------------------------- /Kubernetes/Cluster/04-Microk8s/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Cluster/04-Microk8s/readme.md -------------------------------------------------------------------------------- /Kubernetes/Cluster/04-Microk8s/yamls/microk8s.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Cluster/04-Microk8s/yamls/microk8s.yaml -------------------------------------------------------------------------------- /Kubernetes/Cluster/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Cluster/readme.md -------------------------------------------------------------------------------- /Kubernetes/Coding/CodeServer/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Coding/CodeServer/readme.md -------------------------------------------------------------------------------- /Kubernetes/Coding/CodeServer/yamls/code-server-deploy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Coding/CodeServer/yamls/code-server-deploy.yaml -------------------------------------------------------------------------------- /Kubernetes/Collabora/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Collabora/readme.md -------------------------------------------------------------------------------- /Kubernetes/Collabora/yamls/collabora-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Collabora/yamls/collabora-values.yaml -------------------------------------------------------------------------------- /Kubernetes/Collabora/yamls/ig-collabora.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Collabora/yamls/ig-collabora.yaml -------------------------------------------------------------------------------- /Kubernetes/CommonCommands/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/CommonCommands/readme.md -------------------------------------------------------------------------------- /Kubernetes/Composecraft/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Composecraft/readme.md -------------------------------------------------------------------------------- /Kubernetes/Composecraft/yamls/composecraft.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Composecraft/yamls/composecraft.yaml -------------------------------------------------------------------------------- /Kubernetes/Computing/Boinc/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Computing/Boinc/readme.md -------------------------------------------------------------------------------- /Kubernetes/Computing/Boinc/yamls/boinc-deploy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Computing/Boinc/yamls/boinc-deploy.yaml -------------------------------------------------------------------------------- /Kubernetes/Crowdsec/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Crowdsec/readme.md -------------------------------------------------------------------------------- /Kubernetes/Crowdsec/yamls/crowdsec-traefik-bouncer-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Crowdsec/yamls/crowdsec-traefik-bouncer-values.yaml -------------------------------------------------------------------------------- /Kubernetes/Crowdsec/yamls/crowdsec-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Crowdsec/yamls/crowdsec-values.yaml -------------------------------------------------------------------------------- /Kubernetes/Cyberchef/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Cyberchef/readme.md -------------------------------------------------------------------------------- /Kubernetes/Cyberchef/yamls/ig-cyberchef.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Cyberchef/yamls/ig-cyberchef.yaml -------------------------------------------------------------------------------- /Kubernetes/Dashboard/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Dashboard/readme.md -------------------------------------------------------------------------------- /Kubernetes/Dashboard/yamls/ig-kubernetes-dashboard.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Dashboard/yamls/ig-kubernetes-dashboard.yaml -------------------------------------------------------------------------------- /Kubernetes/Dashboard/yamls/k8dashcrb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Dashboard/yamls/k8dashcrb.yaml -------------------------------------------------------------------------------- /Kubernetes/Dashboard/yamls/k8dashsa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Dashboard/yamls/k8dashsa.yaml -------------------------------------------------------------------------------- /Kubernetes/Dashboard/yamls/k8sdash.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Dashboard/yamls/k8sdash.yaml -------------------------------------------------------------------------------- /Kubernetes/Dashboard/yamls/recommended.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Dashboard/yamls/recommended.yaml -------------------------------------------------------------------------------- /Kubernetes/Database/CloudBeaver/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Database/CloudBeaver/readme.md -------------------------------------------------------------------------------- /Kubernetes/Database/CloudBeaver/yamls/cloudbeaver.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Database/CloudBeaver/yamls/cloudbeaver.yaml -------------------------------------------------------------------------------- /Kubernetes/Database/Couchdb/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Database/Couchdb/readme.md -------------------------------------------------------------------------------- /Kubernetes/Database/Couchdb/yamls/couchdb-traefik.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Database/Couchdb/yamls/couchdb-traefik.yaml -------------------------------------------------------------------------------- /Kubernetes/Database/Dbgate/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Database/Dbgate/readme.md -------------------------------------------------------------------------------- /Kubernetes/Database/Dbgate/yamls/dbgate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Database/Dbgate/yamls/dbgate.yaml -------------------------------------------------------------------------------- /Kubernetes/Database/Mariadb/cnf/proxysql-mariadb.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Database/Mariadb/cnf/proxysql-mariadb.cnf -------------------------------------------------------------------------------- /Kubernetes/Database/Mariadb/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Database/Mariadb/readme.md -------------------------------------------------------------------------------- /Kubernetes/Database/Mariadb/yamls/ig-mariadb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Database/Mariadb/yamls/ig-mariadb.yaml -------------------------------------------------------------------------------- /Kubernetes/Database/Mariadb/yamls/phpmyadmin-mariadb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Database/Mariadb/yamls/phpmyadmin-mariadb.yaml -------------------------------------------------------------------------------- /Kubernetes/Database/Mariadb/yamls/proxysql-mariadb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Database/Mariadb/yamls/proxysql-mariadb.yaml -------------------------------------------------------------------------------- /Kubernetes/Database/Memcached/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Database/Memcached/readme.md -------------------------------------------------------------------------------- /Kubernetes/Database/Memcached/yamls/ig-memcached.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Database/Memcached/yamls/ig-memcached.yaml -------------------------------------------------------------------------------- /Kubernetes/Database/Mongodb/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Database/Mongodb/readme.md -------------------------------------------------------------------------------- /Kubernetes/Database/Mysql/cnf/proxysql-mysql.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Database/Mysql/cnf/proxysql-mysql.cnf -------------------------------------------------------------------------------- /Kubernetes/Database/Mysql/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Database/Mysql/readme.md -------------------------------------------------------------------------------- /Kubernetes/Database/Mysql/yamls/ig-mysql.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Database/Mysql/yamls/ig-mysql.yaml -------------------------------------------------------------------------------- /Kubernetes/Database/Mysql/yamls/phpmyadmin-mysql.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Database/Mysql/yamls/phpmyadmin-mysql.yaml -------------------------------------------------------------------------------- /Kubernetes/Database/Mysql/yamls/proxysql-mysql.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Database/Mysql/yamls/proxysql-mysql.yaml -------------------------------------------------------------------------------- /Kubernetes/Database/Postgresql/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Database/Postgresql/readme.md -------------------------------------------------------------------------------- /Kubernetes/Database/Postgresql/yamls/cnpg-cluster.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Database/Postgresql/yamls/cnpg-cluster.yaml -------------------------------------------------------------------------------- /Kubernetes/Database/Postgresql/yamls/cnpg-database.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Database/Postgresql/yamls/cnpg-database.yaml -------------------------------------------------------------------------------- /Kubernetes/Database/Postgresql/yamls/ig-postgresql.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Database/Postgresql/yamls/ig-postgresql.yaml -------------------------------------------------------------------------------- /Kubernetes/Database/Postgresql/yamls/pgadmin.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Database/Postgresql/yamls/pgadmin.yaml -------------------------------------------------------------------------------- /Kubernetes/Database/PostgresqlHA/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Database/PostgresqlHA/readme.md -------------------------------------------------------------------------------- /Kubernetes/Database/PostgresqlHA/yamls/ig-postgresql.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Database/PostgresqlHA/yamls/ig-postgresql.yaml -------------------------------------------------------------------------------- /Kubernetes/Database/PostgresqlHA/yamls/pgadmin.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Database/PostgresqlHA/yamls/pgadmin.yaml -------------------------------------------------------------------------------- /Kubernetes/Database/Redis/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Database/Redis/readme.md -------------------------------------------------------------------------------- /Kubernetes/Database/Redis/yamls/ig-redis.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Database/Redis/yamls/ig-redis.yaml -------------------------------------------------------------------------------- /Kubernetes/Database/Valkey/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Database/Valkey/readme.md -------------------------------------------------------------------------------- /Kubernetes/Database/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Database/readme.md -------------------------------------------------------------------------------- /Kubernetes/Descheduler/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Descheduler/readme.md -------------------------------------------------------------------------------- /Kubernetes/Descheduler/yamls/descheduler-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Descheduler/yamls/descheduler-values.yaml -------------------------------------------------------------------------------- /Kubernetes/Drawio/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Drawio/readme.md -------------------------------------------------------------------------------- /Kubernetes/Drawio/yamls/drawio.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Drawio/yamls/drawio.yaml -------------------------------------------------------------------------------- /Kubernetes/Excalidraw/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Excalidraw/readme.md -------------------------------------------------------------------------------- /Kubernetes/Excalidraw/yamls/excalidraw.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Excalidraw/yamls/excalidraw.yaml -------------------------------------------------------------------------------- /Kubernetes/FireflyIII/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/FireflyIII/readme.md -------------------------------------------------------------------------------- /Kubernetes/FireflyIII/yamls/fireflyIII.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/FireflyIII/yamls/fireflyIII.yaml -------------------------------------------------------------------------------- /Kubernetes/FireflyIII/yamls/fireflyIIIimporter.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/FireflyIII/yamls/fireflyIIIimporter.yaml -------------------------------------------------------------------------------- /Kubernetes/FreshRSS/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/FreshRSS/readme.md -------------------------------------------------------------------------------- /Kubernetes/FreshRSS/yamls/freshrss.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/FreshRSS/yamls/freshrss.yaml -------------------------------------------------------------------------------- /Kubernetes/Groundcover/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Groundcover/readme.md -------------------------------------------------------------------------------- /Kubernetes/Groundcover/yamls/groundcover-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Groundcover/yamls/groundcover-values.yaml -------------------------------------------------------------------------------- /Kubernetes/Headlamp/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Headlamp/readme.md -------------------------------------------------------------------------------- /Kubernetes/Headlamp/yamls/headlamp-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Headlamp/yamls/headlamp-values.yaml -------------------------------------------------------------------------------- /Kubernetes/Headlamp/yamls/ig-headlamp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Headlamp/yamls/ig-headlamp.yaml -------------------------------------------------------------------------------- /Kubernetes/Heimdall-dashboard/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Heimdall-dashboard/readme.md -------------------------------------------------------------------------------- /Kubernetes/Helm/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Helm/readme.md -------------------------------------------------------------------------------- /Kubernetes/Homepage/images/gethomepage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Homepage/images/gethomepage.png -------------------------------------------------------------------------------- /Kubernetes/Homepage/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Homepage/readme.md -------------------------------------------------------------------------------- /Kubernetes/Homepage/yamls/homepage.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Homepage/yamls/homepage.yaml -------------------------------------------------------------------------------- /Kubernetes/Homer/assets/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Homer/assets/config.yml -------------------------------------------------------------------------------- /Kubernetes/Homer/assets/tools/datree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Homer/assets/tools/datree.png -------------------------------------------------------------------------------- /Kubernetes/Homer/assets/tools/dell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Homer/assets/tools/dell.png -------------------------------------------------------------------------------- /Kubernetes/Homer/assets/tools/grafana.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Homer/assets/tools/grafana.svg -------------------------------------------------------------------------------- /Kubernetes/Homer/assets/tools/haproxy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Homer/assets/tools/haproxy.png -------------------------------------------------------------------------------- /Kubernetes/Homer/assets/tools/kubernetesdashboard.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Homer/assets/tools/kubernetesdashboard.svg -------------------------------------------------------------------------------- /Kubernetes/Homer/assets/tools/longhorn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Homer/assets/tools/longhorn.png -------------------------------------------------------------------------------- /Kubernetes/Homer/assets/tools/portainer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Homer/assets/tools/portainer.svg -------------------------------------------------------------------------------- /Kubernetes/Homer/assets/tools/prometheus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Homer/assets/tools/prometheus.png -------------------------------------------------------------------------------- /Kubernetes/Homer/assets/tools/proxmox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Homer/assets/tools/proxmox.png -------------------------------------------------------------------------------- /Kubernetes/Homer/assets/tools/traefik.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Homer/assets/tools/traefik.svg -------------------------------------------------------------------------------- /Kubernetes/Homer/assets/tools/uptimekuma.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Homer/assets/tools/uptimekuma.svg -------------------------------------------------------------------------------- /Kubernetes/Homer/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Homer/readme.md -------------------------------------------------------------------------------- /Kubernetes/Homer/yaml/homer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Homer/yaml/homer.yaml -------------------------------------------------------------------------------- /Kubernetes/Hosting/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Hosting/readme.md -------------------------------------------------------------------------------- /Kubernetes/Hosting/yamls/ig-hosting1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Hosting/yamls/ig-hosting1.yaml -------------------------------------------------------------------------------- /Kubernetes/Intel-GPU/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Intel-GPU/readme.md -------------------------------------------------------------------------------- /Kubernetes/It-tools/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/It-tools/readme.md -------------------------------------------------------------------------------- /Kubernetes/It-tools/yamls/it-tools.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/It-tools/yamls/it-tools.yaml -------------------------------------------------------------------------------- /Kubernetes/K8sBackup/Velero/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/K8sBackup/Velero/readme.md -------------------------------------------------------------------------------- /Kubernetes/K8sBackup/Velero/yamls/velero-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/K8sBackup/Velero/yamls/velero-values.yaml -------------------------------------------------------------------------------- /Kubernetes/Karakeep/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Karakeep/readme.md -------------------------------------------------------------------------------- /Kubernetes/Karakeep/yamls/karakeep.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Karakeep/yamls/karakeep.yaml -------------------------------------------------------------------------------- /Kubernetes/Kubectl/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Kubectl/readme.md -------------------------------------------------------------------------------- /Kubernetes/Kubescape/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Kubescape/readme.md -------------------------------------------------------------------------------- /Kubernetes/Kubescape/yamls/kubescape-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Kubescape/yamls/kubescape-values.yaml -------------------------------------------------------------------------------- /Kubernetes/Kubetail/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Kubetail/readme.md -------------------------------------------------------------------------------- /Kubernetes/Kubetail/yamls/ig-kubetail.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Kubetail/yamls/ig-kubetail.yaml -------------------------------------------------------------------------------- /Kubernetes/Kured/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Kured/readme.md -------------------------------------------------------------------------------- /Kubernetes/Kyverno/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Kyverno/readme.md -------------------------------------------------------------------------------- /Kubernetes/Kyverno/yamls/kyverno-add-ndots.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Kyverno/yamls/kyverno-add-ndots.yaml -------------------------------------------------------------------------------- /Kubernetes/LocalAI/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/LocalAI/readme.md -------------------------------------------------------------------------------- /Kubernetes/LocalAI/yamls/ig-localai.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/LocalAI/yamls/ig-localai.yaml -------------------------------------------------------------------------------- /Kubernetes/Media-Server/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Media-Server/readme.md -------------------------------------------------------------------------------- /Kubernetes/Media-Server/yamls/media-server-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Media-Server/yamls/media-server-deployment.yaml -------------------------------------------------------------------------------- /Kubernetes/Media-Server/yamls/media-server-jellyfin-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Media-Server/yamls/media-server-jellyfin-deployment.yaml -------------------------------------------------------------------------------- /Kubernetes/Metallb/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Metallb/readme.md -------------------------------------------------------------------------------- /Kubernetes/Metallb/yamls/01-kubeproxy-config-map.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Metallb/yamls/01-kubeproxy-config-map.yaml -------------------------------------------------------------------------------- /Kubernetes/Metallb/yamls/metallb-pool.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Metallb/yamls/metallb-pool.yaml -------------------------------------------------------------------------------- /Kubernetes/Metrics-Server/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Metrics-Server/readme.md -------------------------------------------------------------------------------- /Kubernetes/Metrics-Server/yamls/high-availability.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Metrics-Server/yamls/high-availability.yaml -------------------------------------------------------------------------------- /Kubernetes/Multus/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Multus/readme.md -------------------------------------------------------------------------------- /Kubernetes/Netbox/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Netbox/readme.md -------------------------------------------------------------------------------- /Kubernetes/Netbox/yamls/ig-netbox-external.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Netbox/yamls/ig-netbox-external.yaml -------------------------------------------------------------------------------- /Kubernetes/Netbox/yamls/ig-netbox.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Netbox/yamls/ig-netbox.yaml -------------------------------------------------------------------------------- /Kubernetes/Nextcloud/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Nextcloud/readme.md -------------------------------------------------------------------------------- /Kubernetes/Nextcloud/yamls/nextcloud-deploy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Nextcloud/yamls/nextcloud-deploy.yaml -------------------------------------------------------------------------------- /Kubernetes/Node-Feature-Discovery/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Node-Feature-Discovery/readme.md -------------------------------------------------------------------------------- /Kubernetes/Nvidia-GPU/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Nvidia-GPU/readme.md -------------------------------------------------------------------------------- /Kubernetes/Nvidia-GPU/yamls/gpu-operator-values-vgpu.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Nvidia-GPU/yamls/gpu-operator-values-vgpu.yaml -------------------------------------------------------------------------------- /Kubernetes/Nvidia-GPU/yamls/gpu-operator-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Nvidia-GPU/yamls/gpu-operator-values.yaml -------------------------------------------------------------------------------- /Kubernetes/Openproject/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Openproject/readme.md -------------------------------------------------------------------------------- /Kubernetes/Openproject/yamls/ig-openproject.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Openproject/yamls/ig-openproject.yaml -------------------------------------------------------------------------------- /Kubernetes/Openproject/yamls/openproject-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Openproject/yamls/openproject-values.yaml -------------------------------------------------------------------------------- /Kubernetes/Paperless-ngx/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Paperless-ngx/readme.md -------------------------------------------------------------------------------- /Kubernetes/Paperless-ngx/yamls/paperless-ngx.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Paperless-ngx/yamls/paperless-ngx.yaml -------------------------------------------------------------------------------- /Kubernetes/Portainer/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Portainer/readme.md -------------------------------------------------------------------------------- /Kubernetes/Portainer/yamls/ig-portainer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Portainer/yamls/ig-portainer.yaml -------------------------------------------------------------------------------- /Kubernetes/Privatebin/cfg/cfg.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Privatebin/cfg/cfg.php -------------------------------------------------------------------------------- /Kubernetes/Privatebin/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Privatebin/readme.md -------------------------------------------------------------------------------- /Kubernetes/Privatebin/yamls/privatebin.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Privatebin/yamls/privatebin.yaml -------------------------------------------------------------------------------- /Kubernetes/Prometheus-Stack/Authentik/Dashboards/grafana-authentik.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Prometheus-Stack/Authentik/Dashboards/grafana-authentik.json -------------------------------------------------------------------------------- /Kubernetes/Prometheus-Stack/Authentik/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Prometheus-Stack/Authentik/readme.md -------------------------------------------------------------------------------- /Kubernetes/Prometheus-Stack/Automation/ArgoCD/Dashboards/grafana-argocd-application-overview.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Prometheus-Stack/Automation/ArgoCD/Dashboards/grafana-argocd-application-overview.json -------------------------------------------------------------------------------- /Kubernetes/Prometheus-Stack/Automation/ArgoCD/Dashboards/grafana-argocd-notifications-overview.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Prometheus-Stack/Automation/ArgoCD/Dashboards/grafana-argocd-notifications-overview.json -------------------------------------------------------------------------------- /Kubernetes/Prometheus-Stack/Automation/ArgoCD/Dashboards/grafana-argocd-operational-overview.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Prometheus-Stack/Automation/ArgoCD/Dashboards/grafana-argocd-operational-overview.json -------------------------------------------------------------------------------- /Kubernetes/Prometheus-Stack/Automation/ArgoCD/Dashboards/grafana-argocd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Prometheus-Stack/Automation/ArgoCD/Dashboards/grafana-argocd.json -------------------------------------------------------------------------------- /Kubernetes/Prometheus-Stack/Automation/ArgoCD/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Prometheus-Stack/Automation/ArgoCD/readme.md -------------------------------------------------------------------------------- /Kubernetes/Prometheus-Stack/Automation/Gitea/Dashboards/grafana-gitea.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Prometheus-Stack/Automation/Gitea/Dashboards/grafana-gitea.json -------------------------------------------------------------------------------- /Kubernetes/Prometheus-Stack/Automation/Gitea/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Prometheus-Stack/Automation/Gitea/readme.md -------------------------------------------------------------------------------- /Kubernetes/Prometheus-Stack/Automation/Vault/Dashboards/grafana-vault.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Prometheus-Stack/Automation/Vault/Dashboards/grafana-vault.yaml -------------------------------------------------------------------------------- /Kubernetes/Prometheus-Stack/Automation/Vault/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Prometheus-Stack/Automation/Vault/readme.md -------------------------------------------------------------------------------- /Kubernetes/Prometheus-Stack/Calico/Dashboard/grafana-calico.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Prometheus-Stack/Calico/Dashboard/grafana-calico.json -------------------------------------------------------------------------------- /Kubernetes/Prometheus-Stack/Calico/Dashboard/grafana-felix-default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Prometheus-Stack/Calico/Dashboard/grafana-felix-default.json -------------------------------------------------------------------------------- /Kubernetes/Prometheus-Stack/Calico/Dashboard/grafana-felix.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Prometheus-Stack/Calico/Dashboard/grafana-felix.json -------------------------------------------------------------------------------- /Kubernetes/Prometheus-Stack/Calico/Dashboard/grafana-typha-default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Prometheus-Stack/Calico/Dashboard/grafana-typha-default.json -------------------------------------------------------------------------------- /Kubernetes/Prometheus-Stack/Calico/Dashboard/grafana-typha.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Prometheus-Stack/Calico/Dashboard/grafana-typha.json -------------------------------------------------------------------------------- /Kubernetes/Prometheus-Stack/Calico/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Prometheus-Stack/Calico/readme.md -------------------------------------------------------------------------------- /Kubernetes/Prometheus-Stack/Cert-manager/Dashboards/grafana-certmanager.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Prometheus-Stack/Cert-manager/Dashboards/grafana-certmanager.json -------------------------------------------------------------------------------- /Kubernetes/Prometheus-Stack/Cert-manager/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Prometheus-Stack/Cert-manager/readme.md -------------------------------------------------------------------------------- /Kubernetes/Prometheus-Stack/Cert-manager/yamls/podmonitor-certmanager.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Prometheus-Stack/Cert-manager/yamls/podmonitor-certmanager.yaml -------------------------------------------------------------------------------- /Kubernetes/Prometheus-Stack/Crowdsec/Dashboards/crowdsec-details-per-machine-old.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Prometheus-Stack/Crowdsec/Dashboards/crowdsec-details-per-machine-old.json -------------------------------------------------------------------------------- /Kubernetes/Prometheus-Stack/Crowdsec/Dashboards/crowdsec-details-per-machine.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Prometheus-Stack/Crowdsec/Dashboards/crowdsec-details-per-machine.json -------------------------------------------------------------------------------- /Kubernetes/Prometheus-Stack/Crowdsec/Dashboards/crowdsec-insight-old.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Prometheus-Stack/Crowdsec/Dashboards/crowdsec-insight-old.json -------------------------------------------------------------------------------- /Kubernetes/Prometheus-Stack/Crowdsec/Dashboards/crowdsec-insight.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Prometheus-Stack/Crowdsec/Dashboards/crowdsec-insight.json -------------------------------------------------------------------------------- /Kubernetes/Prometheus-Stack/Crowdsec/Dashboards/crowdsec-lapi-old.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Prometheus-Stack/Crowdsec/Dashboards/crowdsec-lapi-old.json -------------------------------------------------------------------------------- /Kubernetes/Prometheus-Stack/Crowdsec/Dashboards/crowdsec-lapi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Prometheus-Stack/Crowdsec/Dashboards/crowdsec-lapi.json -------------------------------------------------------------------------------- /Kubernetes/Prometheus-Stack/Crowdsec/Dashboards/crowdsec-overview-old.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Prometheus-Stack/Crowdsec/Dashboards/crowdsec-overview-old.json -------------------------------------------------------------------------------- /Kubernetes/Prometheus-Stack/Crowdsec/Dashboards/crowdsec-overview.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Prometheus-Stack/Crowdsec/Dashboards/crowdsec-overview.json -------------------------------------------------------------------------------- /Kubernetes/Prometheus-Stack/Crowdsec/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Prometheus-Stack/Crowdsec/readme.md -------------------------------------------------------------------------------- /Kubernetes/Prometheus-Stack/Database/Couchdb/Dashboards/grafana-couchdb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Prometheus-Stack/Database/Couchdb/Dashboards/grafana-couchdb.json -------------------------------------------------------------------------------- /Kubernetes/Prometheus-Stack/Database/Couchdb/Dashboards/grafana-couchdb2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Prometheus-Stack/Database/Couchdb/Dashboards/grafana-couchdb2.json -------------------------------------------------------------------------------- /Kubernetes/Prometheus-Stack/Database/Couchdb/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Prometheus-Stack/Database/Couchdb/readme.md -------------------------------------------------------------------------------- /Kubernetes/Prometheus-Stack/Database/Couchdb/yamls/prom-couchdb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Prometheus-Stack/Database/Couchdb/yamls/prom-couchdb.yaml -------------------------------------------------------------------------------- /Kubernetes/Prometheus-Stack/Database/Mariadb/Dashboard/grafana-mysql.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Prometheus-Stack/Database/Mariadb/Dashboard/grafana-mysql.json -------------------------------------------------------------------------------- /Kubernetes/Prometheus-Stack/Database/Mariadb/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Prometheus-Stack/Database/Mariadb/readme.md -------------------------------------------------------------------------------- /Kubernetes/Prometheus-Stack/Database/Memcached/Dashboards/Memcached.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Prometheus-Stack/Database/Memcached/Dashboards/Memcached.json -------------------------------------------------------------------------------- /Kubernetes/Prometheus-Stack/Database/Memcached/Dashboards/Memcached2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Prometheus-Stack/Database/Memcached/Dashboards/Memcached2.json -------------------------------------------------------------------------------- /Kubernetes/Prometheus-Stack/Database/Memcached/Dashboards/Memcached3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Prometheus-Stack/Database/Memcached/Dashboards/Memcached3.json -------------------------------------------------------------------------------- /Kubernetes/Prometheus-Stack/Database/Memcached/Dashboards/memcached_pods.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Prometheus-Stack/Database/Memcached/Dashboards/memcached_pods.json -------------------------------------------------------------------------------- /Kubernetes/Prometheus-Stack/Database/Memcached/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Prometheus-Stack/Database/Memcached/readme.md -------------------------------------------------------------------------------- /Kubernetes/Prometheus-Stack/Database/Mongodb/Dashboards/grafana-mongodb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Prometheus-Stack/Database/Mongodb/Dashboards/grafana-mongodb.json -------------------------------------------------------------------------------- /Kubernetes/Prometheus-Stack/Database/Mongodb/Dashboards/grafana-mongodb2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Prometheus-Stack/Database/Mongodb/Dashboards/grafana-mongodb2.json -------------------------------------------------------------------------------- /Kubernetes/Prometheus-Stack/Database/Mongodb/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Prometheus-Stack/Database/Mongodb/readme.md -------------------------------------------------------------------------------- /Kubernetes/Prometheus-Stack/Database/Mysql/Dashboard/grafana-mysql.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Prometheus-Stack/Database/Mysql/Dashboard/grafana-mysql.json -------------------------------------------------------------------------------- /Kubernetes/Prometheus-Stack/Database/Mysql/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Prometheus-Stack/Database/Mysql/readme.md -------------------------------------------------------------------------------- /Kubernetes/Prometheus-Stack/Database/Postgresql/Dashboard/grafana-cloudnativepg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Prometheus-Stack/Database/Postgresql/Dashboard/grafana-cloudnativepg.json -------------------------------------------------------------------------------- /Kubernetes/Prometheus-Stack/Database/Postgresql/Dashboard/grafana-postgresql.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Prometheus-Stack/Database/Postgresql/Dashboard/grafana-postgresql.json -------------------------------------------------------------------------------- /Kubernetes/Prometheus-Stack/Database/Postgresql/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Prometheus-Stack/Database/Postgresql/readme.md -------------------------------------------------------------------------------- /Kubernetes/Prometheus-Stack/Database/Postgresql/yamls/prometheusrules-cloudnativepg.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Prometheus-Stack/Database/Postgresql/yamls/prometheusrules-cloudnativepg.yaml -------------------------------------------------------------------------------- /Kubernetes/Prometheus-Stack/Database/Redis/Dashboard/grafana-redis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Prometheus-Stack/Database/Redis/Dashboard/grafana-redis.json -------------------------------------------------------------------------------- /Kubernetes/Prometheus-Stack/Database/Redis/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Prometheus-Stack/Database/Redis/readme.md -------------------------------------------------------------------------------- /Kubernetes/Prometheus-Stack/Database/Valkey/Dashboard/grafana-valkey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Prometheus-Stack/Database/Valkey/Dashboard/grafana-valkey.json -------------------------------------------------------------------------------- /Kubernetes/Prometheus-Stack/Database/Valkey/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Prometheus-Stack/Database/Valkey/readme.md -------------------------------------------------------------------------------- /Kubernetes/Prometheus-Stack/ExternalEtcd/Dashboard/etcd-cluster-overview.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Prometheus-Stack/ExternalEtcd/Dashboard/etcd-cluster-overview.json -------------------------------------------------------------------------------- /Kubernetes/Prometheus-Stack/ExternalEtcd/Dashboard/etcd-cluster.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Prometheus-Stack/ExternalEtcd/Dashboard/etcd-cluster.json -------------------------------------------------------------------------------- /Kubernetes/Prometheus-Stack/ExternalEtcd/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Prometheus-Stack/ExternalEtcd/readme.md -------------------------------------------------------------------------------- /Kubernetes/Prometheus-Stack/ExternalEtcd/yamls/prom-etcd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Prometheus-Stack/ExternalEtcd/yamls/prom-etcd.yaml -------------------------------------------------------------------------------- /Kubernetes/Prometheus-Stack/Fritzbox-Eporter/Dashboard/grafana-fritzbox.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Prometheus-Stack/Fritzbox-Eporter/Dashboard/grafana-fritzbox.json -------------------------------------------------------------------------------- /Kubernetes/Prometheus-Stack/Fritzbox-Eporter/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Prometheus-Stack/Fritzbox-Eporter/readme.md -------------------------------------------------------------------------------- /Kubernetes/Prometheus-Stack/Fritzbox-Eporter/yamls/prom-fritzbox.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Prometheus-Stack/Fritzbox-Eporter/yamls/prom-fritzbox.yaml -------------------------------------------------------------------------------- /Kubernetes/Prometheus-Stack/Grafana-dashboards/etcd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Prometheus-Stack/Grafana-dashboards/etcd.json -------------------------------------------------------------------------------- /Kubernetes/Prometheus-Stack/Haproxy-Monitoring/Dashboard/grafana-haproxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Prometheus-Stack/Haproxy-Monitoring/Dashboard/grafana-haproxy.json -------------------------------------------------------------------------------- /Kubernetes/Prometheus-Stack/Haproxy-Monitoring/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Prometheus-Stack/Haproxy-Monitoring/readme.md -------------------------------------------------------------------------------- /Kubernetes/Prometheus-Stack/Haproxy-Monitoring/yamls/prom-haproxy1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Prometheus-Stack/Haproxy-Monitoring/yamls/prom-haproxy1.yaml -------------------------------------------------------------------------------- /Kubernetes/Prometheus-Stack/Haproxy-Monitoring/yamls/prom-haproxy2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Prometheus-Stack/Haproxy-Monitoring/yamls/prom-haproxy2.yaml -------------------------------------------------------------------------------- /Kubernetes/Prometheus-Stack/Haproxy-Monitoring/yamls/prom-haproxy3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Prometheus-Stack/Haproxy-Monitoring/yamls/prom-haproxy3.yaml -------------------------------------------------------------------------------- /Kubernetes/Prometheus-Stack/Haproxy-Monitoring/yamls/traefik-haproxy1-svc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Prometheus-Stack/Haproxy-Monitoring/yamls/traefik-haproxy1-svc.yaml -------------------------------------------------------------------------------- /Kubernetes/Prometheus-Stack/Haproxy-Monitoring/yamls/traefik-haproxy1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Prometheus-Stack/Haproxy-Monitoring/yamls/traefik-haproxy1.yaml -------------------------------------------------------------------------------- /Kubernetes/Prometheus-Stack/Haproxy-Monitoring/yamls/traefik-haproxy2-svc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Prometheus-Stack/Haproxy-Monitoring/yamls/traefik-haproxy2-svc.yaml -------------------------------------------------------------------------------- /Kubernetes/Prometheus-Stack/Haproxy-Monitoring/yamls/traefik-haproxy2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Prometheus-Stack/Haproxy-Monitoring/yamls/traefik-haproxy2.yaml -------------------------------------------------------------------------------- /Kubernetes/Prometheus-Stack/Haproxy-Monitoring/yamls/traefik-haproxy3-svc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Prometheus-Stack/Haproxy-Monitoring/yamls/traefik-haproxy3-svc.yaml -------------------------------------------------------------------------------- /Kubernetes/Prometheus-Stack/Haproxy-Monitoring/yamls/traefik-haproxy3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Prometheus-Stack/Haproxy-Monitoring/yamls/traefik-haproxy3.yaml -------------------------------------------------------------------------------- /Kubernetes/Prometheus-Stack/K8sBackup/Velero/Dashboards/grafana-velero.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Prometheus-Stack/K8sBackup/Velero/Dashboards/grafana-velero.json -------------------------------------------------------------------------------- /Kubernetes/Prometheus-Stack/K8sBackup/Velero/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Prometheus-Stack/K8sBackup/Velero/readme.md -------------------------------------------------------------------------------- /Kubernetes/Prometheus-Stack/Kubescape/Dashboard/grafana-kubescape.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Prometheus-Stack/Kubescape/Dashboard/grafana-kubescape.json -------------------------------------------------------------------------------- /Kubernetes/Prometheus-Stack/Kubescape/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Prometheus-Stack/Kubescape/readme.md -------------------------------------------------------------------------------- /Kubernetes/Prometheus-Stack/Kured/Dashboard/grafana-kured.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Prometheus-Stack/Kured/Dashboard/grafana-kured.json -------------------------------------------------------------------------------- /Kubernetes/Prometheus-Stack/Kured/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Prometheus-Stack/Kured/readme.md -------------------------------------------------------------------------------- /Kubernetes/Prometheus-Stack/Kured/yamls/servicemonitor-kured.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Prometheus-Stack/Kured/yamls/servicemonitor-kured.yaml -------------------------------------------------------------------------------- /Kubernetes/Prometheus-Stack/Linux/Dashboards/grafana-node-exporter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Prometheus-Stack/Linux/Dashboards/grafana-node-exporter.json -------------------------------------------------------------------------------- /Kubernetes/Prometheus-Stack/Linux/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Prometheus-Stack/Linux/readme.md -------------------------------------------------------------------------------- /Kubernetes/Prometheus-Stack/Linux/yamls/sm-node-exporter.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Prometheus-Stack/Linux/yamls/sm-node-exporter.yaml -------------------------------------------------------------------------------- /Kubernetes/Prometheus-Stack/Metallb/Dashboard/grafana-metallb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Prometheus-Stack/Metallb/Dashboard/grafana-metallb.json -------------------------------------------------------------------------------- /Kubernetes/Prometheus-Stack/Metallb/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Prometheus-Stack/Metallb/readme.md -------------------------------------------------------------------------------- /Kubernetes/Prometheus-Stack/Metallb/yamls/prom-metallb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Prometheus-Stack/Metallb/yamls/prom-metallb.yaml -------------------------------------------------------------------------------- /Kubernetes/Prometheus-Stack/Nextcloud/Dashboards/grafana-nextcloud.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Prometheus-Stack/Nextcloud/Dashboards/grafana-nextcloud.json -------------------------------------------------------------------------------- /Kubernetes/Prometheus-Stack/Nextcloud/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Prometheus-Stack/Nextcloud/readme.md -------------------------------------------------------------------------------- /Kubernetes/Prometheus-Stack/Nextcloud/yamls/sm-nextcloud.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Prometheus-Stack/Nextcloud/yamls/sm-nextcloud.yaml -------------------------------------------------------------------------------- /Kubernetes/Prometheus-Stack/NvidiaGPU/Dashboard/grafana-nvidia-gpu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Prometheus-Stack/NvidiaGPU/Dashboard/grafana-nvidia-gpu.json -------------------------------------------------------------------------------- /Kubernetes/Prometheus-Stack/NvidiaGPU/Dashboard/grafana-nvidia-vgpu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Prometheus-Stack/NvidiaGPU/Dashboard/grafana-nvidia-vgpu.json -------------------------------------------------------------------------------- /Kubernetes/Prometheus-Stack/NvidiaGPU/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Prometheus-Stack/NvidiaGPU/readme.md -------------------------------------------------------------------------------- /Kubernetes/Prometheus-Stack/PfSense/Dashboards/grafana-pfsense.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Prometheus-Stack/PfSense/Dashboards/grafana-pfsense.json -------------------------------------------------------------------------------- /Kubernetes/Prometheus-Stack/PfSense/Dashboards/grafana-pfsense2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Prometheus-Stack/PfSense/Dashboards/grafana-pfsense2.json -------------------------------------------------------------------------------- /Kubernetes/Prometheus-Stack/PfSense/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Prometheus-Stack/PfSense/readme.md -------------------------------------------------------------------------------- /Kubernetes/Prometheus-Stack/Prometheus-snmp/Dashboard/grafana-arista.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Prometheus-Stack/Prometheus-snmp/Dashboard/grafana-arista.json -------------------------------------------------------------------------------- /Kubernetes/Prometheus-Stack/Prometheus-snmp/Dashboard/grafana-idrac.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Prometheus-Stack/Prometheus-snmp/Dashboard/grafana-idrac.json -------------------------------------------------------------------------------- /Kubernetes/Prometheus-Stack/Prometheus-snmp/MIBs/iDRAC-SMIv2.mib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Prometheus-Stack/Prometheus-snmp/MIBs/iDRAC-SMIv2.mib -------------------------------------------------------------------------------- /Kubernetes/Prometheus-Stack/Prometheus-snmp/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Prometheus-Stack/Prometheus-snmp/readme.md -------------------------------------------------------------------------------- /Kubernetes/Prometheus-Stack/Prometheus-snmp/yamls/snmp-exporter-arista-switch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Prometheus-Stack/Prometheus-snmp/yamls/snmp-exporter-arista-switch.yaml -------------------------------------------------------------------------------- /Kubernetes/Prometheus-Stack/Prometheus-snmp/yamls/snmp-exporter-idrac.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Prometheus-Stack/Prometheus-snmp/yamls/snmp-exporter-idrac.yaml -------------------------------------------------------------------------------- /Kubernetes/Prometheus-Stack/Prometheus-snmp/yamls/snmp.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Prometheus-Stack/Prometheus-snmp/yamls/snmp.yml -------------------------------------------------------------------------------- /Kubernetes/Prometheus-Stack/Proxmox-Backup-Monitoring/Dashboard/grafana-pbs-v2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Prometheus-Stack/Proxmox-Backup-Monitoring/Dashboard/grafana-pbs-v2.json -------------------------------------------------------------------------------- /Kubernetes/Prometheus-Stack/Proxmox-Backup-Monitoring/Dashboard/grafana-proxmox-backup-server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Prometheus-Stack/Proxmox-Backup-Monitoring/Dashboard/grafana-proxmox-backup-server.json -------------------------------------------------------------------------------- /Kubernetes/Prometheus-Stack/Proxmox-Backup-Monitoring/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Prometheus-Stack/Proxmox-Backup-Monitoring/readme.md -------------------------------------------------------------------------------- /Kubernetes/Prometheus-Stack/Proxmox-Backup-Monitoring/yamls/exporter-pbs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Prometheus-Stack/Proxmox-Backup-Monitoring/yamls/exporter-pbs.yaml -------------------------------------------------------------------------------- /Kubernetes/Prometheus-Stack/Proxmox-Monitoring/Dashboard/grafana-proxmox.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Prometheus-Stack/Proxmox-Monitoring/Dashboard/grafana-proxmox.json -------------------------------------------------------------------------------- /Kubernetes/Prometheus-Stack/Proxmox-Monitoring/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Prometheus-Stack/Proxmox-Monitoring/readme.md -------------------------------------------------------------------------------- /Kubernetes/Prometheus-Stack/Proxmox-Monitoring/yamls/prom-proxmox.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Prometheus-Stack/Proxmox-Monitoring/yamls/prom-proxmox.yaml -------------------------------------------------------------------------------- /Kubernetes/Prometheus-Stack/Pushgateway/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Prometheus-Stack/Pushgateway/readme.md -------------------------------------------------------------------------------- /Kubernetes/Prometheus-Stack/Pushgateway/yaml/ig-pushgateway.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Prometheus-Stack/Pushgateway/yaml/ig-pushgateway.yaml -------------------------------------------------------------------------------- /Kubernetes/Prometheus-Stack/Storage/Ceph/Dashboards/ceph-cluster.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Prometheus-Stack/Storage/Ceph/Dashboards/ceph-cluster.json -------------------------------------------------------------------------------- /Kubernetes/Prometheus-Stack/Storage/Ceph/Dashboards/cephfs-overview.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Prometheus-Stack/Storage/Ceph/Dashboards/cephfs-overview.json -------------------------------------------------------------------------------- /Kubernetes/Prometheus-Stack/Storage/Ceph/Dashboards/osd-device-details.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Prometheus-Stack/Storage/Ceph/Dashboards/osd-device-details.json -------------------------------------------------------------------------------- /Kubernetes/Prometheus-Stack/Storage/Ceph/Dashboards/osds-overview.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Prometheus-Stack/Storage/Ceph/Dashboards/osds-overview.json -------------------------------------------------------------------------------- /Kubernetes/Prometheus-Stack/Storage/Ceph/Dashboards/pool-detail.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Prometheus-Stack/Storage/Ceph/Dashboards/pool-detail.json -------------------------------------------------------------------------------- /Kubernetes/Prometheus-Stack/Storage/Ceph/Dashboards/pools-overview.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Prometheus-Stack/Storage/Ceph/Dashboards/pools-overview.json -------------------------------------------------------------------------------- /Kubernetes/Prometheus-Stack/Storage/Ceph/Dashboards/rbd-details.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Prometheus-Stack/Storage/Ceph/Dashboards/rbd-details.json -------------------------------------------------------------------------------- /Kubernetes/Prometheus-Stack/Storage/Ceph/Dashboards/rbd-overview.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Prometheus-Stack/Storage/Ceph/Dashboards/rbd-overview.json -------------------------------------------------------------------------------- /Kubernetes/Prometheus-Stack/Storage/Ceph/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Prometheus-Stack/Storage/Ceph/readme.md -------------------------------------------------------------------------------- /Kubernetes/Prometheus-Stack/Storage/Ceph/yamls/prom-ceph.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Prometheus-Stack/Storage/Ceph/yamls/prom-ceph.yaml -------------------------------------------------------------------------------- /Kubernetes/Prometheus-Stack/Storage/Ceph/yamls/prometheus_alerts.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Prometheus-Stack/Storage/Ceph/yamls/prometheus_alerts.yaml -------------------------------------------------------------------------------- /Kubernetes/Prometheus-Stack/Storage/Glusterfs/Dashboard/grafana-glusterfs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Prometheus-Stack/Storage/Glusterfs/Dashboard/grafana-glusterfs.json -------------------------------------------------------------------------------- /Kubernetes/Prometheus-Stack/Storage/Glusterfs/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Prometheus-Stack/Storage/Glusterfs/readme.md -------------------------------------------------------------------------------- /Kubernetes/Prometheus-Stack/Storage/Glusterfs/yamls/sm-gluster-exporter.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Prometheus-Stack/Storage/Glusterfs/yamls/sm-gluster-exporter.yaml -------------------------------------------------------------------------------- /Kubernetes/Prometheus-Stack/Storage/Longhorn/Dashboard/grafana-longhorn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Prometheus-Stack/Storage/Longhorn/Dashboard/grafana-longhorn.json -------------------------------------------------------------------------------- /Kubernetes/Prometheus-Stack/Storage/Longhorn/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Prometheus-Stack/Storage/Longhorn/readme.md -------------------------------------------------------------------------------- /Kubernetes/Prometheus-Stack/Storage/Longhorn/yamls/sm-longhorn.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Prometheus-Stack/Storage/Longhorn/yamls/sm-longhorn.yaml -------------------------------------------------------------------------------- /Kubernetes/Prometheus-Stack/Storage/Minio/Dashboards/minio-bucket-dashboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Prometheus-Stack/Storage/Minio/Dashboards/minio-bucket-dashboard.json -------------------------------------------------------------------------------- /Kubernetes/Prometheus-Stack/Storage/Minio/Dashboards/minio-dashboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Prometheus-Stack/Storage/Minio/Dashboards/minio-dashboard.json -------------------------------------------------------------------------------- /Kubernetes/Prometheus-Stack/Storage/Minio/Dashboards/minio-node-dashboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Prometheus-Stack/Storage/Minio/Dashboards/minio-node-dashboard.json -------------------------------------------------------------------------------- /Kubernetes/Prometheus-Stack/Storage/Minio/Dashboards/minio-replication-dashboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Prometheus-Stack/Storage/Minio/Dashboards/minio-replication-dashboard.json -------------------------------------------------------------------------------- /Kubernetes/Prometheus-Stack/Storage/Minio/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Prometheus-Stack/Storage/Minio/readme.md -------------------------------------------------------------------------------- /Kubernetes/Prometheus-Stack/Storage/Minio/yamls/sm-minio.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Prometheus-Stack/Storage/Minio/yamls/sm-minio.yaml -------------------------------------------------------------------------------- /Kubernetes/Prometheus-Stack/Storage/NFS-server/Dashboard/grafana-nfs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Prometheus-Stack/Storage/NFS-server/Dashboard/grafana-nfs.json -------------------------------------------------------------------------------- /Kubernetes/Prometheus-Stack/Storage/NFS-server/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Prometheus-Stack/Storage/NFS-server/readme.md -------------------------------------------------------------------------------- /Kubernetes/Prometheus-Stack/Storage/NFS-server/yamls/sm-nodeexporter.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Prometheus-Stack/Storage/NFS-server/yamls/sm-nodeexporter.yaml -------------------------------------------------------------------------------- /Kubernetes/Prometheus-Stack/Teleport/Grafana/grafana-teleport-cluster.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Prometheus-Stack/Teleport/Grafana/grafana-teleport-cluster.json -------------------------------------------------------------------------------- /Kubernetes/Prometheus-Stack/Teleport/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Prometheus-Stack/Teleport/readme.md -------------------------------------------------------------------------------- /Kubernetes/Prometheus-Stack/Traefik/Dashboards/grafana-traefik.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Prometheus-Stack/Traefik/Dashboards/grafana-traefik.json -------------------------------------------------------------------------------- /Kubernetes/Prometheus-Stack/Traefik/Dashboards/grafana-traefik3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Prometheus-Stack/Traefik/Dashboards/grafana-traefik3.json -------------------------------------------------------------------------------- /Kubernetes/Prometheus-Stack/Traefik/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Prometheus-Stack/Traefik/readme.md -------------------------------------------------------------------------------- /Kubernetes/Prometheus-Stack/Traefik/yamls/prom-traefik.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Prometheus-Stack/Traefik/yamls/prom-traefik.yaml -------------------------------------------------------------------------------- /Kubernetes/Prometheus-Stack/Uptime-kuma/Dashboard/grafana-uk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Prometheus-Stack/Uptime-kuma/Dashboard/grafana-uk.json -------------------------------------------------------------------------------- /Kubernetes/Prometheus-Stack/Uptime-kuma/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Prometheus-Stack/Uptime-kuma/readme.md -------------------------------------------------------------------------------- /Kubernetes/Prometheus-Stack/Uptime-kuma/yamls/sm-ukuma.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Prometheus-Stack/Uptime-kuma/yamls/sm-ukuma.yaml -------------------------------------------------------------------------------- /Kubernetes/Prometheus-Stack/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Prometheus-Stack/readme.md -------------------------------------------------------------------------------- /Kubernetes/Prometheus-Stack/yamls/ig-kube-prometheus-stack.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Prometheus-Stack/yamls/ig-kube-prometheus-stack.yaml -------------------------------------------------------------------------------- /Kubernetes/Prometheus-Stack/yamls/kube-prometheus-stack-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Prometheus-Stack/yamls/kube-prometheus-stack-values.yaml -------------------------------------------------------------------------------- /Kubernetes/QRCodeGenerator/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/QRCodeGenerator/readme.md -------------------------------------------------------------------------------- /Kubernetes/QRCodeGenerator/yamls/qr-code-generator.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/QRCodeGenerator/yamls/qr-code-generator.yaml -------------------------------------------------------------------------------- /Kubernetes/Rancher/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Rancher/readme.md -------------------------------------------------------------------------------- /Kubernetes/Reflector/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Reflector/readme.md -------------------------------------------------------------------------------- /Kubernetes/Roundcube/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Roundcube/readme.md -------------------------------------------------------------------------------- /Kubernetes/Roundcube/yamls/roundcube.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Roundcube/yamls/roundcube.yaml -------------------------------------------------------------------------------- /Kubernetes/Shlink/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Shlink/readme.md -------------------------------------------------------------------------------- /Kubernetes/Shlink/yamls/shlink-web-client.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Shlink/yamls/shlink-web-client.yaml -------------------------------------------------------------------------------- /Kubernetes/Shlink/yamls/shlink.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Shlink/yamls/shlink.yaml -------------------------------------------------------------------------------- /Kubernetes/Stirling-PDF/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Stirling-PDF/readme.md -------------------------------------------------------------------------------- /Kubernetes/Stirling-PDF/yamls/s-pdf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Stirling-PDF/yamls/s-pdf.yaml -------------------------------------------------------------------------------- /Kubernetes/Storage/Glusterfs/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Storage/Glusterfs/readme.md -------------------------------------------------------------------------------- /Kubernetes/Storage/Glusterfs/yamls/01-endpoints.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Storage/Glusterfs/yamls/01-endpoints.yaml -------------------------------------------------------------------------------- /Kubernetes/Storage/Glusterfs/yamls/02a-direct.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Storage/Glusterfs/yamls/02a-direct.yaml -------------------------------------------------------------------------------- /Kubernetes/Storage/Glusterfs/yamls/02b1-presistent-volume.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Storage/Glusterfs/yamls/02b1-presistent-volume.yaml -------------------------------------------------------------------------------- /Kubernetes/Storage/Glusterfs/yamls/02b2-persistent-volume-pod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Storage/Glusterfs/yamls/02b2-persistent-volume-pod.yaml -------------------------------------------------------------------------------- /Kubernetes/Storage/Longhorn/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Storage/Longhorn/readme.md -------------------------------------------------------------------------------- /Kubernetes/Storage/Longhorn/yamls/ig-longhorn.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Storage/Longhorn/yamls/ig-longhorn.yaml -------------------------------------------------------------------------------- /Kubernetes/Storage/Longhorn/yamls/longhorn-nvme-sc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Storage/Longhorn/yamls/longhorn-nvme-sc.yaml -------------------------------------------------------------------------------- /Kubernetes/Storage/Longhorn/yamls/longhorn-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Storage/Longhorn/yamls/longhorn-values.yaml -------------------------------------------------------------------------------- /Kubernetes/Storage/MinIO/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Storage/MinIO/readme.md -------------------------------------------------------------------------------- /Kubernetes/Storage/MinIO/yamls/ig-minio-operator.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Storage/MinIO/yamls/ig-minio-operator.yaml -------------------------------------------------------------------------------- /Kubernetes/Storage/MinIO/yamls/ig-minio-tenant.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Storage/MinIO/yamls/ig-minio-tenant.yaml -------------------------------------------------------------------------------- /Kubernetes/Storage/MinIO/yamls/minio-operator-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Storage/MinIO/yamls/minio-operator-values.yaml -------------------------------------------------------------------------------- /Kubernetes/Storage/MinIO/yamls/minio-tenant-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Storage/MinIO/yamls/minio-tenant-values.yaml -------------------------------------------------------------------------------- /Kubernetes/Storage/NFS/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Storage/NFS/readme.md -------------------------------------------------------------------------------- /Kubernetes/Storage/NFS/yamls/nfs-test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Storage/NFS/yamls/nfs-test.yaml -------------------------------------------------------------------------------- /Kubernetes/Storage/NFS/yamls/sc-csi-nfs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Storage/NFS/yamls/sc-csi-nfs.yaml -------------------------------------------------------------------------------- /Kubernetes/Storage/NFS/yamls/ssc-csi-nfs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Storage/NFS/yamls/ssc-csi-nfs.yaml -------------------------------------------------------------------------------- /Kubernetes/Storage/OpenEBS/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Storage/OpenEBS/readme.md -------------------------------------------------------------------------------- /Kubernetes/Storage/Rook/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Storage/Rook/readme.md -------------------------------------------------------------------------------- /Kubernetes/Storage/Rook/yamls/rook-mysql.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Storage/Rook/yamls/rook-mysql.yaml -------------------------------------------------------------------------------- /Kubernetes/Storage/Rook/yamls/rook-sc-nvme1tb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Storage/Rook/yamls/rook-sc-nvme1tb.yaml -------------------------------------------------------------------------------- /Kubernetes/Storage/Rook/yamls/rook-sc-nvme2tb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Storage/Rook/yamls/rook-sc-nvme2tb.yaml -------------------------------------------------------------------------------- /Kubernetes/Storage/Rook/yamls/rook-sc-ssd2t.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Storage/Rook/yamls/rook-sc-ssd2t.yaml -------------------------------------------------------------------------------- /Kubernetes/Storage/Rook/yamls/rook-wordpress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Storage/Rook/yamls/rook-wordpress.yaml -------------------------------------------------------------------------------- /Kubernetes/Storage/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Storage/readme.md -------------------------------------------------------------------------------- /Kubernetes/Teleport/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Teleport/readme.md -------------------------------------------------------------------------------- /Kubernetes/Teleport/yaml/ig-teleport.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Teleport/yaml/ig-teleport.yaml -------------------------------------------------------------------------------- /Kubernetes/Teleport/yaml/teleport-agent-cm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Teleport/yaml/teleport-agent-cm.yaml -------------------------------------------------------------------------------- /Kubernetes/Teleport/yaml/teleport-cluster-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Teleport/yaml/teleport-cluster-values.yaml -------------------------------------------------------------------------------- /Kubernetes/Teleport/yaml/teleport-clusterip.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Teleport/yaml/teleport-clusterip.yaml -------------------------------------------------------------------------------- /Kubernetes/Teleport/yaml/teleport-kube-agent-15-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Teleport/yaml/teleport-kube-agent-15-values.yaml -------------------------------------------------------------------------------- /Kubernetes/Teleport/yaml/teleport-kube-agent-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Teleport/yaml/teleport-kube-agent-values.yaml -------------------------------------------------------------------------------- /Kubernetes/Teleport/yaml/teleport-loadbalancer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Teleport/yaml/teleport-loadbalancer.yaml -------------------------------------------------------------------------------- /Kubernetes/Teleport/yaml/teleport-ssl-cert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Teleport/yaml/teleport-ssl-cert.yaml -------------------------------------------------------------------------------- /Kubernetes/Traefik/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Traefik/readme.md -------------------------------------------------------------------------------- /Kubernetes/Traefik/yamls/ig-traefik.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Traefik/yamls/ig-traefik.yaml -------------------------------------------------------------------------------- /Kubernetes/Traefik/yamls/traefik-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Traefik/yamls/traefik-values.yaml -------------------------------------------------------------------------------- /Kubernetes/Truenas/readme.md: -------------------------------------------------------------------------------- 1 | # Netbox behind Traefik 2 | 3 | ```bash 4 | kubectl apply -f ig-truenas.yaml 5 | ``` 6 | -------------------------------------------------------------------------------- /Kubernetes/Truenas/yamls/ig-truenas.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Truenas/yamls/ig-truenas.yaml -------------------------------------------------------------------------------- /Kubernetes/Uptimekuma/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Uptimekuma/readme.md -------------------------------------------------------------------------------- /Kubernetes/Uptimekuma/yamls/ig-uptimekuma.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Uptimekuma/yamls/ig-uptimekuma.yaml -------------------------------------------------------------------------------- /Kubernetes/Vaultwarden/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Vaultwarden/readme.md -------------------------------------------------------------------------------- /Kubernetes/Vaultwarden/yamls/vaultwarden-deploy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Vaultwarden/yamls/vaultwarden-deploy.yaml -------------------------------------------------------------------------------- /Kubernetes/Wazuh/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/Wazuh/readme.md -------------------------------------------------------------------------------- /Kubernetes/k8tz/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/k8tz/readme.md -------------------------------------------------------------------------------- /Kubernetes/kubernetes-01.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/kubernetes-01.md -------------------------------------------------------------------------------- /Kubernetes/kubernetes-02.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/kubernetes-02.md -------------------------------------------------------------------------------- /Kubernetes/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Kubernetes/readme.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/LICENSE -------------------------------------------------------------------------------- /LinuxTips.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/LinuxTips.md -------------------------------------------------------------------------------- /NUT/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/NUT/readme.md -------------------------------------------------------------------------------- /Nethserver/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Nethserver/readme.md -------------------------------------------------------------------------------- /Network/.$NetworkDiagram.drawio.bkp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Network/.$NetworkDiagram.drawio.bkp -------------------------------------------------------------------------------- /Network/NetworkDiagram.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Network/NetworkDiagram.drawio -------------------------------------------------------------------------------- /Network/Switch/Arista.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Network/Switch/Arista.md -------------------------------------------------------------------------------- /Network/Switch/Cisco.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Network/Switch/Cisco.md -------------------------------------------------------------------------------- /Network/Switch/readme.md: -------------------------------------------------------------------------------- 1 | # Switch config 2 | -------------------------------------------------------------------------------- /Network/Switch/switch.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Network/Switch/switch.conf -------------------------------------------------------------------------------- /Network/V2/Network2.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Network/V2/Network2.drawio -------------------------------------------------------------------------------- /Network/V2/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Network/V2/readme.md -------------------------------------------------------------------------------- /Network/network.drawio.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Network/network.drawio.svg -------------------------------------------------------------------------------- /Network/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Network/readme.md -------------------------------------------------------------------------------- /Proxmox/Ceph.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Proxmox/Ceph.md -------------------------------------------------------------------------------- /Proxmox/Cloud-init.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Proxmox/Cloud-init.md -------------------------------------------------------------------------------- /Proxmox/Clustering.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Proxmox/Clustering.md -------------------------------------------------------------------------------- /Proxmox/Dell3rdPartyHardwareCheck.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Proxmox/Dell3rdPartyHardwareCheck.md -------------------------------------------------------------------------------- /Proxmox/Installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Proxmox/Installation.md -------------------------------------------------------------------------------- /Proxmox/Network.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Proxmox/Network.md -------------------------------------------------------------------------------- /Proxmox/Openmanage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Proxmox/Openmanage.md -------------------------------------------------------------------------------- /Proxmox/Optimizations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Proxmox/Optimizations.md -------------------------------------------------------------------------------- /Proxmox/Passtrhough.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Proxmox/Passtrhough.md -------------------------------------------------------------------------------- /Proxmox/VirtualMachines.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Proxmox/VirtualMachines.md -------------------------------------------------------------------------------- /Proxmox/iDRACservicemodule.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Proxmox/iDRACservicemodule.md -------------------------------------------------------------------------------- /Proxmox/ipmitool.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Proxmox/ipmitool.md -------------------------------------------------------------------------------- /Proxmox/network/interfaces: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Proxmox/network/interfaces -------------------------------------------------------------------------------- /Proxmox/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Proxmox/readme.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/README.md -------------------------------------------------------------------------------- /Rack/RackDiagram.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Rack/RackDiagram.drawio -------------------------------------------------------------------------------- /Rack/RackDiagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Rack/RackDiagram.png -------------------------------------------------------------------------------- /Storage/Glusterfs/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Storage/Glusterfs/readme.md -------------------------------------------------------------------------------- /Storage/LVM/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Storage/LVM/readme.md -------------------------------------------------------------------------------- /Storage/Microceph/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Storage/Microceph/readme.md -------------------------------------------------------------------------------- /Storage/Microceph/yamls/ceph-dashboard-router.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Storage/Microceph/yamls/ceph-dashboard-router.yaml -------------------------------------------------------------------------------- /Storage/Microceph/yamls/ig-ceph-dashboard.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Storage/Microceph/yamls/ig-ceph-dashboard.yaml -------------------------------------------------------------------------------- /Storage/NFS Cluster/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Storage/NFS Cluster/readme.md -------------------------------------------------------------------------------- /Storage/iSCSI/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Storage/iSCSI/readme.md -------------------------------------------------------------------------------- /Swarm/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Swarm/readme.md -------------------------------------------------------------------------------- /Swarm/swarm/databases/.POSTGRES_PASSWORD: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Swarm/swarm/databases/databases.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Swarm/swarm/databases/databases.yaml -------------------------------------------------------------------------------- /Swarm/swarm/devops/.PGADMIN_DEFAULT_PASSWORD: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Swarm/swarm/devops/devops.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Swarm/swarm/devops/devops.yaml -------------------------------------------------------------------------------- /Swarm/swarm/docker-swarm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Swarm/swarm/docker-swarm.yaml -------------------------------------------------------------------------------- /Swarm/swarm/docker/docker.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Swarm/swarm/docker/docker.yaml -------------------------------------------------------------------------------- /Swarm/swarm/finance/finance.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Swarm/swarm/finance/finance.yaml -------------------------------------------------------------------------------- /Swarm/swarm/graphics/graphics.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Swarm/swarm/graphics/graphics.yaml -------------------------------------------------------------------------------- /Swarm/swarm/monitoring/.DATA_SOURCE_PASS: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Swarm/swarm/monitoring/.PBS_API_TOKEN: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Swarm/swarm/monitoring/.PBS_API_TOKEN_NAME: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Swarm/swarm/monitoring/.PBS_USERNAME: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Swarm/swarm/monitoring/cadvisor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Swarm/swarm/monitoring/cadvisor.yaml -------------------------------------------------------------------------------- /Swarm/swarm/monitoring/grafana.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Swarm/swarm/monitoring/grafana.yaml -------------------------------------------------------------------------------- /Swarm/swarm/monitoring/prometheus.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Swarm/swarm/monitoring/prometheus.yaml -------------------------------------------------------------------------------- /Swarm/swarm/network/.CF_DNS_API_TOKEN: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Swarm/swarm/network/traefik.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Swarm/swarm/network/traefik.yaml -------------------------------------------------------------------------------- /Swarm/swarm/news/news.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Swarm/swarm/news/news.yaml -------------------------------------------------------------------------------- /Swarm/swarm/office/office.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Swarm/swarm/office/office.yaml -------------------------------------------------------------------------------- /Swarm/swarm/tools/homepage.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/Swarm/swarm/tools/homepage.yaml -------------------------------------------------------------------------------- /TruenasSCALE/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/TruenasSCALE/readme.md -------------------------------------------------------------------------------- /bashrc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/bashrc.md -------------------------------------------------------------------------------- /homeassistant.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/homeassistant.md -------------------------------------------------------------------------------- /postgres_ha.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/postgres_ha.md -------------------------------------------------------------------------------- /proxmox.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/proxmox.md -------------------------------------------------------------------------------- /ubuntuovpn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/ubuntuovpn.md -------------------------------------------------------------------------------- /zfs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbaman/HomeLab/HEAD/zfs.md --------------------------------------------------------------------------------