freeleaps-ops/freeleaps-secret-operator/helm-pkg/secretOperator/templates/service.yaml
zhenyus f1f48452a9 chore: remove deprecated Helm chart files for secret operator
- Deleted unused files including Chart.yaml, values.yaml, values.prod.yaml, and various templates related to the secret operator.
- This cleanup is part of the effort to streamline the Helm chart structure and remove obsolete configurations.

Signed-off-by: zhenyus <zhenyus@mathmast.com>
2025-08-18 12:42:43 +08:00

18 lines
548 B
YAML

{{- if .Values.apiServerService.enabled }}
apiVersion: v1
kind: Service
metadata:
name: {{ include "freeleaps-secret-operator.fullname" . }}-vault-service
labels:
{{- include "freeleaps-secret-operator.labels" . | nindent 4 }}
spec:
type: {{ .Values.apiServerService.service.type }}
ports:
- port: {{ .Values.apiServerService.service.port }}
targetPort: {{ .Values.operator.apiServerPort }}
protocol: TCP
name: api
selector:
{{- include "freeleaps-secret-operator.selectorLabels" . | nindent 4 }}
{{- end }}