Skip to content

Commit

Permalink
Add helm template to test dir
Browse files Browse the repository at this point in the history
  • Loading branch information
misak113 committed Nov 14, 2021
1 parent 119f302 commit d084436
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions test/workspace/helm-template.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
apiVersion: apps/v1
kind: Deployment
metadata:
name: tester
spec:
replicas: {{ .Values.replicas }}
selector:
matchLabels:
app: tester
template:
metadata:
labels:
app: tester
spec:
containers:
- name: tester
image: '{{ .Values.image }}'
env:
- name: NODE_ENV
value: '{{ .Values.node.env }}'

0 comments on commit d084436

Please sign in to comment.