mirror of
https://github.com/git-pkgs/proxy.git
synced 2026-09-16 15:52:05 -04:00
* Add Helm chart * Fail early on ingress without hosts and document replica/mount coupling
16 lines
393 B
YAML
16 lines
393 B
YAML
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: {{ include "proxy.fullname" . }}
|
|
namespace: {{ .Release.Namespace }}
|
|
labels:
|
|
{{- include "proxy.labels" . | nindent 4 }}
|
|
spec:
|
|
type: {{ .Values.service.type }}
|
|
ports:
|
|
- name: http
|
|
port: {{ .Values.service.port }}
|
|
targetPort: http
|
|
protocol: TCP
|
|
selector:
|
|
{{- include "proxy.selectorLabels" . | nindent 4 }}
|