Skip to content

Commit

Permalink
change nodeport to loadbalancer
Browse files Browse the repository at this point in the history
  • Loading branch information
LokiWager committed Sep 28, 2023
1 parent f2c6a0b commit 1b0f25b
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion charts/easegress/Chart.yaml
Original file line number Diff line number Diff line change
@@ -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: 1.0.1
version: 1.0.2

# 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
4 changes: 2 additions & 2 deletions charts/easegress/templates/Service.yaml
Original file line number Diff line number Diff line change
@@ -41,7 +41,7 @@ spec:
nodePort: {{ .Values.service.adminPort }}
selector:
app: {{ .Release.Name }}
type: NodePort
type: {{ .Values.query.type }}

---
kind: Service
@@ -57,4 +57,4 @@ spec:
protocol: TCP
port: 8080
nodePort: {{ .Values.service.nodePort }}
type: NodePort
type: {{ .Values.query.type }}
2 changes: 1 addition & 1 deletion charts/easegress/values.yaml
Original file line number Diff line number Diff line change
@@ -26,7 +26,7 @@ service:
adminPort: 31255

query:
type: NodePort
type: LoadBalancer
port: 2381

resources: {}
2 changes: 1 addition & 1 deletion charts/ingress-controller/Chart.yaml
Original file line number Diff line number Diff line change
@@ -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: 1.0.1
version: 1.0.2

# 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
2 changes: 1 addition & 1 deletion charts/ingress-controller/templates/Service.yaml
Original file line number Diff line number Diff line change
@@ -11,4 +11,4 @@ spec:
protocol: TCP
port: 8080
nodePort: {{ .Values.service.nodePort }}
type: NodePort
type: {{ .Values.query.type }}

0 comments on commit 1b0f25b

Please sign in to comment.