You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
493 B
20 lines
493 B
2 years ago
|
apiVersion: v1
|
||
|
kind: Service
|
||
|
metadata:
|
||
|
name: {{ template "local-ai.fullname" . }}
|
||
|
namespace: {{ .Release.Namespace | quote }}
|
||
|
labels:
|
||
|
{{- include "local-ai.labels" . | nindent 4 }}
|
||
|
{{- if .Values.service.annotations }}
|
||
|
annotations:
|
||
|
{{ toYaml .Values.service.annotations | indent 4 }}
|
||
|
{{- end }}
|
||
|
spec:
|
||
|
selector:
|
||
|
app.kubernetes.io/name: {{ include "local-ai.name" . }}
|
||
|
type: "{{ .Values.service.type }}"
|
||
|
ports:
|
||
|
- protocol: TCP
|
||
|
port: 8080
|
||
|
targetPort: 8080
|