This repository contains the infrastructure as code (IaC) for the Indy Center platform. We use GitOps principles with ArgoCD to manage our Kubernetes-based infrastructure.
Our infrastructure is built on k3s, a lightweight Kubernetes distribution, with the following key components:
- ArgoCD: Manages all deployments using GitOps
- Traefik: Handles ingress traffic and TLS termination
- cert-manager: Automates certificate management
- Sealed Secrets: Securely manages Kubernetes secrets in Git
infrastructure/
├── argocd/ # ArgoCD configuration
├── cert-manager/ # Certificate management
├── monitoring/ # Monitoring stack
├── shared-secrets/ # Shared sealed secrets
└── traefik/ # Ingress configuration
We follow GitOps principles:
- Git is the single source of truth
- All changes are made through pull requests
- ArgoCD automatically syncs the cluster state with Git
- Infrastructure changes are declarative and version controlled
- ArgoCD - https://argocd.zid-internal.com
- Grafana - https://metrics.zid-internal.com
- Main Website - https://zidartcc.org
- kubectl
- kubeseal (for sealed secrets)
- Access to a k3s cluster
This repository follows security best practices:
- Credentials are managed through sealed secrets
- TLS certificates are automatically managed
- Authentication is handled through identity providers
- Network policies control pod-to-pod communication
MIT License
Copyright (c) 2025 Indy Center
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Built with ❤️ by the Indy Center Tech Team