Skip to content

Commit

Permalink
Change the default service type to ClusterIP
Browse files Browse the repository at this point in the history
  • Loading branch information
madcastello committed Aug 16, 2023
1 parent 30eee99 commit e828569
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 3 deletions.
4 changes: 2 additions & 2 deletions charts/datahub/subcharts/datahub-frontend/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@ securityContext: {}
# runAsUser: 1000

service:
type: LoadBalancer # ClusterIP or NodePort
port: 9002
type: ClusterIP # NodePort or LoadBalancer
port: "9002"
targetPort: http
protocol: TCP
name: http
Expand Down
2 changes: 1 addition & 1 deletion charts/datahub/subcharts/datahub-gms/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ securityContext: {}
# runAsUser: 1000

service:
type: LoadBalancer # ClusterIP or NodePort
type: ClusterIP # NodePort or LoadBalancer
port: "8080"
targetPort: http
protocol: TCP
Expand Down
8 changes: 8 additions & 0 deletions charts/datahub/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@ datahub-gms:
requests:
cpu: 100m
memory: 1Gi
# Service for datahub-gms
service:
type: ClusterIP # NodePort or LoadBalancer
port: 8080
# Optionally set a GMS specific SQL login (defaults to global login)
# sql:
# datasource:
Expand All @@ -30,6 +34,10 @@ datahub-frontend:
requests:
cpu: 100m
memory: 512Mi
# Service for the react front-end
service:
type: ClusterIP # NodePort or LoadBalancer
port: 9002
# Set up ingress to expose react front-end
ingress:
enabled: false
Expand Down

0 comments on commit e828569

Please sign in to comment.