Skip to content

Commit

Permalink
chore(docs): fix nginx example templates
Browse files Browse the repository at this point in the history
  • Loading branch information
Michelle Noorali committed Oct 17, 2016
1 parent 70b29a4 commit 8b551d4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/examples/nginx/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ metadata:
# This makes it easy to audit chart usage.
chart: "{{.Chart.Name}}-{{.Chart.Version}}"
spec:
replicas: {{default 1 .Values.replicaCount | quote}}
replicas: {{default 1 .Values.replicaCount}}
template:
metadata:
labels:
Expand Down
2 changes: 1 addition & 1 deletion docs/examples/nginx/templates/svc.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ metadata:
chart: "{{.Chart.Name}}-{{.Chart.Version}}"
spec:
ports:
- port: {{default 80 .Values.httpPort | quote}}
- port: {{default 80 .Values.httpPort}}
targetPort: 80
protocol: TCP
name: http
Expand Down

0 comments on commit 8b551d4

Please sign in to comment.