Adding simplest helm chart.
parent
4dc267e11f
commit
203f44f3cc
|
@ -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/"
|
||||
|
|
@ -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
|
||||
|
|
@ -0,0 +1 @@
|
|||
Replicas: 2
|
Loading…
Reference in New Issue