Skip to content

Commit

Permalink
Merge pull request #4 from micahg/release/0.0.4
Browse files Browse the repository at this point in the history
UI ingress for real this time.
  • Loading branch information
micahg authored Aug 30, 2023
2 parents 67271db + fe9077b commit 28eebf1
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
2 changes: 1 addition & 1 deletion nttchart/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.0.3
version: 0.0.4

# 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: 10 additions & 0 deletions nttchart/templates/ingress.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,16 @@ spec:
- {{ .Values.apiDomain }}
secretName: {{ .Values.apiAppName }}-tls
rules:
- host: {{ .Values.uiDomain }}
http:
paths:
- path: /
pathType: Prefix
backend:
service:
name: {{ .Values.uiAppName }}-service
port:
number: 80
- host: {{ .Values.apiDomain }}
http:
paths:
Expand Down

0 comments on commit 28eebf1

Please sign in to comment.