change helm folder name to grafana

This commit is contained in:
ducoterra
2020-08-02 12:54:23 -04:00
parent f8d5bcd887
commit b961a06c8c
7 changed files with 2 additions and 2 deletions

View File

@@ -1,33 +0,0 @@
apiVersion: apps/v1
kind: Deployment
metadata:
name: grafana
spec:
replicas: 1
selector:
matchLabels:
app: {{ .Release.Name }}
template:
metadata:
labels:
app: {{ .Release.Name }}
spec:
containers:
- name: {{ .Release.Name }}
image: grafana/grafana:7.1.0
resources:
requests:
memory: 256Mi
cpu: 100m
limits:
memory: 1Gi
cpu: '1'
ports:
- containerPort: 3000
volumeMounts:
- mountPath: /var/lib/grafana
name: data
volumes:
- name: data
persistentVolumeClaim:
claimName: {{ .Release.Name }}