Skip to content

Commit e0747a2

Browse files
author
Rub21
committed
Remove staticIp fron values and templates for GCP deployment
1 parent 61a9b1f commit e0747a2

8 files changed

+0
-23
lines changed

osm-seed/templates/id-editor-service.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ spec:
2020
# In case cloudProvider=gcp
2121
{{- if eq .Values.cloudProvider "gcp" }}
2222
type: LoadBalancer
23-
loadBalancerIP : {{ .Values.idEditor.staticIp }}
2423
{{- end }}
2524
# In case cloudProvider=minikube
2625
{{ if eq .Values.cloudProvider "minikube" }}

osm-seed/templates/nominatim-api-service.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@ spec:
2525
# In case cloudProvider=gcp
2626
{{- if eq .Values.cloudProvider "gcp" }}
2727
type: LoadBalancer
28-
loadBalancerIP : {{ .Values.nominatimApi.staticIp }}
2928
{{- end }}
3029
# In case cloudProvider=minikube
3130
{{- if eq .Values.cloudProvider "minikube" }}

osm-seed/templates/overpass-api-service.yaml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,18 +21,14 @@ spec:
2121
{{- if eq .Values.cloudProvider "aws" }}
2222
type: LoadBalancer
2323
{{- end }}
24-
2524
# In case cloudProvider=gcp
2625
{{- if eq .Values.cloudProvider "gcp" }}
2726
type: LoadBalancer
28-
loadBalancerIP : {{ .Values.overpassApi.staticIp }}
2927
{{- end }}
30-
3128
# In case cloudProvider=minikube
3229
{{- if eq .Values.cloudProvider "minikube" }}
3330
type: NodePort
3431
{{- end }}
35-
3632
ports:
3733
- port: 80
3834
targetPort: 80

osm-seed/templates/taginfo-service.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@ spec:
2525
# In case cloudProvider=gcp
2626
{{- if eq .Values.cloudProvider "gcp" }}
2727
type: LoadBalancer
28-
loadBalancerIP : {{ .Values.taginfo.staticIp }}
2928
{{- end }}
3029
# In case cloudProvider=minikube
3130
{{- if eq .Values.cloudProvider "minikube" }}

osm-seed/templates/tasking-manager-api-service.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@ spec:
2525
# In case cloudProvider=gcp
2626
{{- if eq .Values.cloudProvider "gcp" }}
2727
type: LoadBalancer
28-
loadBalancerIP : {{ .Values.tmApi.staticIp }}
2928
{{- end }}
3029
# In case cloudProvider=minikube
3130
{{- if eq .Values.cloudProvider "minikube" }}

osm-seed/templates/tiler-server-service.yaml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,18 +21,14 @@ spec:
2121
{{- if eq .Values.cloudProvider "aws" }}
2222
type: LoadBalancer
2323
{{- end }}
24-
2524
# In case cloudProvider=gcp
2625
{{- if eq .Values.cloudProvider "gcp" }}
2726
type: LoadBalancer
28-
loadBalancerIP : {{ .Values.tilerServer.staticIp }}
2927
{{- end }}
30-
3128
# In case cloudProvider=minikube
3229
{{- if eq .Values.cloudProvider "minikube" }}
3330
type: NodePort
3431
{{- end }}
35-
3632
ports:
3733
- port: {{ .Values.tilerServer.env.TILER_SERVER_PORT }}
3834
targetPort: {{ .Values.tilerServer.env.TILER_SERVER_PORT }}

osm-seed/templates/tiler-visor-service.yaml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,18 +17,14 @@ spec:
1717
{{- if eq .Values.cloudProvider "aws" }}
1818
type: LoadBalancer
1919
{{- end }}
20-
2120
# In case cloudProvider=gcp
2221
{{- if eq .Values.cloudProvider "gcp" }}
2322
type: LoadBalancer
24-
loadBalancerIP : {{ .Values.tilerVisor.staticIp }}
2523
{{- end }}
26-
2724
# In case cloudProvider=minikube
2825
{{- if eq .Values.cloudProvider "minikube" }}
2926
type: NodePort
3027
{{- end }}
31-
3228
ports:
3329
- port: {{ .Values.tilerVisor.env.TILER_VISOR_PORT }}
3430
targetPort: 80

osm-seed/values.yaml

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -98,8 +98,6 @@ web:
9898
name: ''
9999
tag: ''
100100
replicaCount: 1
101-
# # Set staticIp, if you are using cloudProvider=gcp
102-
# staticIp: 35.247.6.238
103101
env:
104102
MAILER_ADDRESS: smtp.gmail.com
105103
MAILER_DOMAIN: gmail.com
@@ -364,8 +362,6 @@ tilerServer:
364362
name: ''
365363
tag: ''
366364
replicaCount: 1
367-
# Set staticIp, if you are using cloudProvider=gcp
368-
staticIp: 35.247.6.238
369365
env:
370366
TILER_SERVER_PORT: 9090
371367
TILER_CACHE_TYPE: s3 #In case TILER_CACHE_TYPE=s3, the kubernetes teemplate will come up with a deployment pod
@@ -431,8 +427,6 @@ tilerVisor:
431427
name: ''
432428
tag: ''
433429
replicaCount: 1
434-
# Set staticIp, if you are using cloudProvider=gcp
435-
staticIp: 35.247.6.238
436430
env:
437431
TILER_VISOR_PROTOCOL: http
438432
TILER_VISOR_PORT: 8081
@@ -460,7 +454,6 @@ tmApi:
460454
nodeSelector:
461455
enabled: false
462456
replicaCount: 1
463-
staticIp: c
464457
env:
465458
POSTGRES_HOST: 'tm'
466459
POSTGRES_DB: 'tm'

0 commit comments

Comments
 (0)