У меня есть приложение, работающее в чистой среде docker. Я хотел развернуть это в k8s. Поэтому я создал карты конфигурации, развертывания и т. Д. c. Ниже приведен файл конфигурации перед развертыванием на k8s.
config:
message:
- type: "fusion:expense:expense_type:v1"
versions:
- version: "v1"
handler:
request_uri: "http://localhost:8082/api/v1/expenses/"
- version: "v2"
handler:
request_uri: "http://localhost:8082/api/v2/expenses/"
- type: "card_type"
versions:
- version: "v1"
handler:
request_uri: "http://localhost:8082/api/v1/cardtype"
ossprovider:
endpoint: "http://localhost:19000"
adaptors:
endpoint: http://localhost:8092/adaptors/
Я создал службу типа
kind: Service
metadata:
name: fin-service
spec:
type: ClusterIP
ports:
- port: 8090
targetPort: 8090
protocol: TCP
name: http
- port: 8082
targetPort: 8082
protocol: TCP
- port: 19000
targetPort: 19000
protocol: TCP
selector:
fin-app
Мое развертывание выглядит следующим образом:
apiVersion: apps/v1
kind: Deployment
metadata:
name: fin
namespace: {{ .Values.namespace }}
labels:
fin
spec:
replicas: {{ .Values.replicaCount }}
selector:
matchLabels:
fin
template:
metadata:
labels:
fin
spec:
{{- with .Values.imagePullSecrets }}
imagePullSecrets:
{{- toYaml . | nindent 8 }}
{{- end }}
containers:
- name: {{ .Values.containers.oss_messaginglayer.name }}
image: {{ .Values.image.oss_messaginglayer.repository }}
imagePullPolicy: {{ .Values.image.pullPolicy }}
ports:
- name: http
containerPort: 8090
protocol: TCP
Поскольку я создал службу, я хотел использовать эту конечную точку службы в файле конфигурации как fin-service вместо localhost.
app:
config:
message:
- type: "fusion:expense:expense_type:v1"
versions:
- version: "v1"
handler:
request_uri: "http://fin-service:8082/api/v1/expenses/"
- version: "v2"
handler:
request_uri: "http://fin-service:8082/api/v2/expenses/"
- type: "card_type"
versions:
- version: "v1"
handler:
request_uri: "http://fin-service:8082/api/v1/cardtype"
ossprovider:
endpoint: "http://fin-service:19000"
adaptors:
endpoint: http://fin-service:8092/adaptors/
Но я получаю сообщение об отказе в соединении на http://fin-service: 19000 . Куда я иду с трассы?