Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for selected (0.19 sec)

  1. manifests/charts/istio-operator/templates/service.yaml

        name: istio-operator
      name: istio-operator{{- if not (eq .Values.revision "") }}-{{ .Values.revision }}{{- end }}
    spec:
      ports:
      - name: http-metrics
        port: 8383
        targetPort: 8383
        protocol: TCP
      selector:
        name: istio-operator
    Others
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Wed Jul 28 18:55:36 GMT 2021
    - 337 bytes
    - Viewed (0)
  2. manifests/charts/gateways/istio-egress/templates/service.yaml

    {{ toYaml $gateway.loadBalancerSourceRanges | indent 4 }}
    {{- end }}
    {{- if $gateway.externalTrafficPolicy }}
      externalTrafficPolicy: {{$gateway.externalTrafficPolicy }}
    {{- end }}
      type: {{ $gateway.type }}
      selector:
    {{ $gateway.labels | toYaml | indent 4 }}
      ports:
    
        {{- range $key, $val := $gateway.ports }}
        -
          {{- range $pkey, $pval := $val }}
          {{ $pkey}}: {{ $pval }}
          {{- end }}
        {{- end }}
    Others
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Thu Apr 18 18:16:49 GMT 2024
    - 1.5K bytes
    - Viewed (0)
  3. helm/minio/templates/service.yaml

          {{- end }}
      {{- if .Values.service.externalIPs }}
      externalIPs:
        {{- range $i , $ip := .Values.service.externalIPs }}
        - {{ $ip }}
        {{- end }}
      {{- end }}
      selector:
        app: {{ template "minio.name" . }}
    Others
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Sun Apr 28 10:05:53 GMT 2024
    - 1.7K bytes
    - Viewed (0)
  4. manifests/charts/istio-control/istio-discovery/templates/service.yaml

        - port: 443
          name: https-webhook # validation and injection
          targetPort: 15017
          protocol: TCP
        - port: 15014
          name: http-monitoring # prometheus stats
          protocol: TCP
      selector:
        app: istiod
        {{- if ne .Values.revision "" }}
        istio.io/rev: {{ .Values.revision }}
        {{- else }}
        # Label used by the 'default' service. For versioned deployments we match with app and version.
    Others
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Mon Oct 02 00:02:18 GMT 2023
    - 1.4K bytes
    - Viewed (0)
  5. manifests/charts/gateways/istio-ingress/templates/service.yaml

    {{ toYaml $gateway.loadBalancerSourceRanges | indent 4 }}
    {{- end }}
    {{- if $gateway.externalTrafficPolicy }}
      externalTrafficPolicy: {{$gateway.externalTrafficPolicy }}
    {{- end }}
      type: {{ $gateway.type }}
      selector:
    {{ $gateway.labels | toYaml | indent 4 }}
      ports:
    
        {{- range $key, $val := $gateway.ports }}
        -
          {{- range $pkey, $pval := $val }}
          {{ $pkey}}: {{ $pval }}
          {{- end }}
        {{- end }}
    Others
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Thu Apr 18 18:16:49 GMT 2024
    - 1.5K bytes
    - Viewed (0)
  6. manifests/charts/gateway/templates/service.yaml

    {{- else }}
    {{ .Values.service.ports | toYaml | indent 4 }}
    {{- end }}
    {{- if .Values.service.externalIPs }}
      externalIPs: {{- range .Values.service.externalIPs }}
        - {{.}}
      {{- end }}
    {{- end }}
      selector:
        {{- include "gateway.selectorLabels" . | nindent 4 }}
    Others
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Thu Jan 11 16:55:28 GMT 2024
    - 1.7K bytes
    - Viewed (0)
Back to top