Skip to content

Commit

Permalink
Update port for taginfo
Browse files Browse the repository at this point in the history
  • Loading branch information
Rub21 committed Jan 8, 2024
1 parent a06cc26 commit f13d7ae
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 10 deletions.
11 changes: 5 additions & 6 deletions compose/taginfo.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,15 @@ services:
# ## Taginfo section
# #####################################################
taginfo:
image: osmseed-taginfo:v1
image: developmentseed/osmseed-taginfo:v15
build:
context: ../images/taginfo
dockerfile: Dockerfile
ports:
- '4567:80'
- '4567:80'
volumes:
- ../data/taginfo-data:/apps/data/
- ../data/taginfo-data:/apps/data/
command: >
/bin/bash -c "
./start.sh"
/bin/bash -c " ./start.sh"
env_file:
- ../envs/.env.taginfo
- ../envs/.env.taginfo
4 changes: 2 additions & 2 deletions osm-seed/templates/taginfo/taginfo-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,12 +27,12 @@ spec:
image: "{{ .Values.taginfo.image.name }}:{{ .Values.taginfo.image.tag }}"
ports:
- name: http
containerPort: 80
containerPort: 4567
protocol: TCP
livenessProbe:
httpGet:
path: /
port: 80
port: 4567
initialDelaySeconds: 600 # 10 min, because the compile process takes time.
timeoutSeconds: 30
{{- if .Values.taginfo.resources.enabled }}
Expand Down
4 changes: 2 additions & 2 deletions osm-seed/templates/taginfo/taginfo-service.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,12 +27,12 @@ spec:
type: {{ .Values.serviceType }}
ports:
- port: 80
targetPort: http
targetPort: 4567
protocol: TCP
name: http
{{- if and (eq .Values.serviceType "LoadBalancer") .Values.AWS_SSL_ARN }}
- port: 443
targetPort: http
targetPort: 4567
protocol: TCP
name: https
{{- end }}
Expand Down

0 comments on commit f13d7ae

Please sign in to comment.