diff --git a/compose/taginfo.yml b/compose/taginfo.yml index 6e4256ac..c4ee07cd 100644 --- a/compose/taginfo.yml +++ b/compose/taginfo.yml @@ -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 \ No newline at end of file + - ../envs/.env.taginfo diff --git a/osm-seed/templates/taginfo/taginfo-deployment.yaml b/osm-seed/templates/taginfo/taginfo-deployment.yaml index cb2a2bb0..fd4c30f3 100644 --- a/osm-seed/templates/taginfo/taginfo-deployment.yaml +++ b/osm-seed/templates/taginfo/taginfo-deployment.yaml @@ -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 }} diff --git a/osm-seed/templates/taginfo/taginfo-service.yaml b/osm-seed/templates/taginfo/taginfo-service.yaml index e6d2f3c4..e4e42ae3 100644 --- a/osm-seed/templates/taginfo/taginfo-service.yaml +++ b/osm-seed/templates/taginfo/taginfo-service.yaml @@ -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 }}