Skip to content

Commit

Permalink
Fix typos
Browse files Browse the repository at this point in the history
Signed-off-by: Lukasz Gryglicki <[email protected]>
  • Loading branch information
lukaszgryglicki committed Jun 11, 2019
1 parent 90316e4 commit 7284ea9
Showing 1 changed file with 12 additions and 5 deletions.
17 changes: 12 additions & 5 deletions devstats-helm/templates/devstats-static-pages.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,18 @@ spec:
type: static
proj: default
spec:
volumes:
- name: '{{ .Values.volumeName }}-backups'
persistentVolumeClaim:
claimName: '{{ .Values.backupsPVName }}'
containers:
- env:
image: {{ .Values.staticImage }}
imagePullPolicy: {{ .Values.imagePullPolicy }}
name: devstats-static-default
volumeMounts:
- name: '{{ .Values.volumeMountName }}-backups'
mountPath: '{{ .Values.backupsVolumeMountPath }}'
ports:
- containerPort: 80
livenessProbe:
Expand Down Expand Up @@ -91,18 +98,18 @@ spec:
type: static
proj: '{{ .shortname }}'
spec:
containers:
volumes:
- name: '{{ .Values.volumeName }}-backups'
- name: '{{ $root.Values.volumeName }}-backups'
persistentVolumeClaim:
claimName: '{{ .Values.backupsPVName }}'
claimName: '{{ $root.Values.backupsPVName }}'
containers:
- env:
image: '{{ .image }}'
imagePullPolicy: {{ $root.Values.imagePullPolicy }}
name: 'devstats-static-{{ .shortname }}'
volumeMounts:
- name: '{{ .Values.volumeMountName }}-backups'
mountPath: '{{ .Values.backupsVolumeMountPath }}'
- name: '{{ $root.Values.volumeMountName }}-backups'
mountPath: '{{ $root.Values.backupsVolumeMountPath }}'
ports:
- containerPort: 80
livenessProbe:
Expand Down

0 comments on commit 7284ea9

Please sign in to comment.