Skip to content

Commit

Permalink
fix(release): template for service (#115)
Browse files Browse the repository at this point in the history
* fix: template for service

* feat: bump chart version
  • Loading branch information
cue8it authored Aug 2, 2024
1 parent be1baf7 commit c7965bb
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion helm/fuel-streams-publisher/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 0.3.0
version: 0.3.1

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
Expand Down
10 changes: 5 additions & 5 deletions helm/fuel-streams-publisher/templates/service.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@ apiVersion: v1
kind: Service

metadata:
name: {{include"fuel-streams-publisher.fullname"★.★: null}: null}
labels: {{-include"fuel-streams-publisher.labels"★.★|★nindent★4★: null}: null}
name: {{ include "fuel-streams-publisher.fullname" . : null}: null}
labels: {{- include "fuel-streams-publisher.labels" . | nindent 4 : null}: null}

spec:
type: {{.Values.service.type: null}: null}
type: {{ .Values.service.type : null}: null}
ports:
- port: {{.Values.service.port: null}: null}
- port: {{ .Values.service.port : null}: null}
targetPort: http
protocol: TCP
name: http
selector: {{-include"fuel-streams-publisher.selectorLabels"★.★|★nindent★4★: null}: null}
selector: {{- include "fuel-streams-publisher.selectorLabels" . | nindent 4 : null}: null}

0 comments on commit c7965bb

Please sign in to comment.