Adding simplest helm chart.

master
Tomasz Półgrabia 2024-12-17 00:10:49 +01:00
parent 4dc267e11f
commit 203f44f3cc
3 changed files with 34 additions and 0 deletions

View File

@ -0,0 +1,8 @@
apiVersion: v2
name: chart-demo1
version: 0.0.1
maintainers:
- name: "Tomasz Półgrabia"
email: tomasz@polgrabia.me
url: "https://code.polgrabia.me/"

View File

@ -0,0 +1,25 @@
apiVersion: apps/v1
kind: Deployment
metadata:
name: chart-demo1-depl
labels:
app: chart-demo1
type: frontend
spec:
replicas: {{ .Values.Replicas }}
selector:
matchLabels:
app: chart-demo1
type: frontend
template:
metadata:
labels:
app: chart-demo1
type: frontend
spec:
containers:
- name: nginx
image: nginx:latest
ports:
- containerPort: 80

View File

@ -0,0 +1 @@
Replicas: 2