sigs.k8s.io/kueue@v0.6.2/charts/kueue/templates/visibility/service.yaml (about)

     1  {{- if include "kueue.isFeatureGateEnabled" (dict "List" .Values.controllerManager.featureGates "Feature" "VisibilityOnDemand") }}
     2  apiVersion: v1
     3  kind: Service
     4  metadata:
     5    name: '{{ include "kueue.fullname" . }}-visibility-server'
     6    namespace: '{{ .Release.Namespace }}'
     7  spec:
     8    ports:
     9      - name: https
    10        port: 443
    11        protocol: TCP
    12        targetPort: 8082
    13    selector:
    14      control-plane: controller-manager
    15  {{- end }}