У меня есть 2 сервиса, которые написаны nodejs.
Я разверну их на AKS с помощью Helm
Вот так:
service.js
app.get('/users', function(req,res){
res.send("Hello World");
});
и использовали helm для развертывания службы 2.
Это файл deploy.yaml
apiVersion: apps/v1
kind: Deployment
metadata:
name: {{ include "samplechart.fullname" . }}
labels:
{{ include "samplechart.labels" . | indent 4 }}
spec:
replicas: {{ .Values.replicaCount }}
containers:
- name: {{ .Chart.Name }}
image: "{{ .Values.image.repository }}:{{ .Values.image.tag }}"
imagePullPolicy: {{ .Values.image.pullPolicy }}
ports:
- name: http
containerPort: 8081
protocol: TCP
---
apiVersion: apps/v1
kind: Deployment
metadata:
name: {{ include "samplechart.fullname" . }}-test
labels:
{{ include "samplechart.labels" . | indent 4 }}
spec:
replicas: {{ .Values.replicaCount }}
containers:
- name: test
image: "{{ .Values.image.repository2 }}:{{ .Values.image.tag2 }}"
imagePullPolicy: {{ .Values.image.pullPolicy2 }}
ports:
- name: http
containerPort: 8082
protocol: TCP
Как я могу настроить ingress.yaml для доступа к моему сервису.
Примером внешнего IP-адреса является 13.78.42.19 и используется 13.78.42.19:8081 или 13.78.42.19:8082 для доступа к вышеуказанной услуге
Мой файл по умолчанию ingress.yaml
{{- if .Values.ingress.enabled -}}
{{- $fullName := include "samplechart.fullname" . -}}
apiVersion: extensions/v1beta1
kind: Ingress
metadata:
name: {{ $fullName }}
labels:
{{ include "samplechart.labels" . | indent 4 }}
{{- with .Values.ingress.annotations }}
annotations:
{{- toYaml . | nindent 4 }}
{{- end }}
spec:
{{- if .Values.ingress.tls }}
tls:
{{- range .Values.ingress.tls }}
- hosts:
{{- range .hosts }}
- {{ . | quote }}
{{- end }}
secretName: {{ .secretName }}
{{- end }}
{{- end }}
rules:
{{- range .Values.ingress.hosts }}
- host: {{ .host | quote }}
http:
paths:
{{- range .paths }}
- path: {{ . }}
backend:
serviceName: {{ $fullName }}
servicePort: http
{{- end }}
{{- end }}
{{- end }}