Basic Examples
Simple Deployment
Basic deployment with minimal configuration:
yaml
# values.yaml
replicaCount: 1
image:
repository: prime-edm/basic-service
tag: latest
service:
type: ClusterIP
port: 8080Deploy using:
bash
helm install basic-example prime-edm/prime-edm -f values.yamlWeb Service with Ingress
Deploying a web service with ingress:
yaml
# values.yaml
ingress:
enabled: true
hosts:
- host: example.local
paths:
- path: /
pathType: PrefixStateful Application
Configuration for a stateful application:
yaml
# values.yaml
persistence:
enabled: true
size: 10Gi
statefulset:
enabled: true
serviceName: stateful-serviceResource Configuration
Example with resource limits:
yaml
# values.yaml
resources:
limits:
cpu: 500m
memory: 512Mi
requests:
cpu: 250m
memory: 256Mi