https://github.com/somaz94/helm-base-app-template
helm-base-app-template
https://github.com/somaz94/helm-base-app-template
Last synced: 4 months ago
JSON representation
helm-base-app-template
- Host: GitHub
- URL: https://github.com/somaz94/helm-base-app-template
- Owner: somaz94
- License: mit
- Created: 2025-01-06T08:25:21.000Z (12 months ago)
- Default Branch: main
- Last Pushed: 2025-03-06T02:00:06.000Z (10 months ago)
- Last Synced: 2025-06-10T05:44:11.151Z (7 months ago)
- Language: Smarty
- Size: 21.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Helm Base App Template
A base Helm chart template for deploying applications to Kubernetes, using ArgoCD ApplicationSet for multi-environment management.
## Directory Structure
```
helm-base-app-template
├── LICENSE
├── README.md
├── appsets
│ ├── dev-applicationset.yaml
│ ├── prod-applicationset.yaml
│ └── qa-applicationset.yaml
├── charts
│ └── base
│ ├── Chart.yaml
│ ├── base.values.yaml
│ ├── templates
│ │ ├── NOTES.txt
│ │ ├── _helpers.tpl
│ │ ├── cert-cronjob.yaml
│ │ ├── certificate.yaml
│ │ ├── configmap.yaml
│ │ ├── deployment.yaml
│ │ ├── hpa.yaml
│ │ ├── imagePullSecret.yaml
│ │ ├── ingress.yaml
│ │ ├── pv.yaml
│ │ ├── pvc.yaml
│ │ ├── service.yaml
│ │ └── serviceaccount.yaml
│ └── values.yaml
└── values
└── somaz
├── admin
│ ├── dev1.values.yaml
│ ├── prod-a.values.yaml
│ └── qa1.values.yaml
├── auth
│ ├── dev1.values.yaml
│ ├── prod-a.values.yaml
│ └── qa1.values.yaml
├── backend
│ ├── dev1.values.yaml
│ ├── prod-a.values.yaml
│ └── qa1.values.yaml
└── batch
├── dev1.values.yaml
├── prod-a.values.yaml
└── qa1.values.yaml
```
## Features
- **Multi-Environment Support**: Manage configurations for different environments (dev1, dev2, etc.)
- **Base Chart Template**: Standardized template for consistent application deployment
- **ArgoCD Integration**: Automated deployment management through ApplicationSet
- **Configuration Management**: Centralized configuration using Helm values
- **Infrastructure as Code**: Version-controlled infrastructure definitions
## Usage
### Prerequisites
- Kubernetes cluster
- Helm v3+
- ArgoCD installed in the cluster
- Access to container registry (configured in values)
### Configuration
1. **Base Values**: Edit `charts/base/base.values.yaml` for default configurations
2. **Environment Values**: Add environment-specific values in `values/somaz//.values.yaml`
3. **ApplicationSet**: Configure `appsets/dev-applicationset.yaml` for your environments
### Supported Resources
- Deployments
- Services
- Ingress
- ConfigMaps
- Secrets
- PersistentVolumes
- PersistentVolumeClaims
- RBAC configurations
- Certificate management
### Key Components
- **Image Management**: Private registry support with credentials
- **Storage**: Configurable persistent storage options
- **Networking**: Ingress configurations with TLS support
- **Security**: RBAC and SecurityContext settings
- **Scaling**: HPA support for automatic scaling
- **Monitoring**: Liveness and readiness probe configurations
## License
This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.