Skip to content

Create Kubernetes Helm chart for deployment #31

Description

@0xReLogic

Description

Create a Helm chart for deploying Helios on Kubernetes with best practices and production-ready configurations.

Requirements

  • Helm chart structure in helm/helios/ directory
  • ConfigMap for helios.yaml configuration
  • Deployment with health checks and resource limits
  • Service for load balancer exposure
  • Ingress support (optional)
  • HPA (Horizontal Pod Autoscaler) template

Chart Structure

helm/helios/
├── Chart.yaml
├── values.yaml
├── templates/
│   ├── deployment.yaml
│   ├── service.yaml
│   ├── configmap.yaml
│   ├── ingress.yaml
│   ├── hpa.yaml
│   └── _helpers.tpl
└── README.md

values.yaml Example

replicaCount: 3

image:
  repository: helios
  tag: latest
  pullPolicy: IfNotPresent

resources:
  limits:
    cpu: 1000m
    memory: 512Mi
  requests:
    cpu: 100m
    memory: 128Mi

autoscaling:
  enabled: true
  minReplicas: 2
  maxReplicas: 10
  targetCPUUtilizationPercentage: 80

ingress:
  enabled: true
  className: nginx
  hosts:
    - host: helios.example.com
      paths:
        - path: /
          pathType: Prefix

Acceptance Criteria

  • Complete Helm chart with all templates
  • values.yaml with sensible defaults
  • Chart documentation (README.md)
  • Deployment guide in main README
  • Tested on local Kubernetes cluster

References

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

Projects

No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions