Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for Korets (0.18 sec)

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

    apiVersion: v1
    kind: Service
    metadata:
      namespace: {{.Release.Namespace}}
      labels:
        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

    {{- 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 }}
    
      {{ range $app := $gateway.egressPorts }}
        -
    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 and (eq .Values.service.type "LoadBalancer") (not (empty .Values.service.loadBalancerIP)) }}
      loadBalancerIP: {{ default "" .Values.service.loadBalancerIP | quote }}
      {{- end }}
      ports:
        - name: {{ $scheme }}
          port: {{ .Values.service.port }}
          protocol: TCP
          {{- if (and (eq .Values.service.type "NodePort") ( .Values.service.nodePort)) }}
          nodePort: {{ .Values.service.nodePort }}
    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/gateways/istio-ingress/templates/service.yaml

    {{- 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 }}
    
      {{ range $app := $gateway.ingressPorts }}
        -
    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)
  5. manifests/charts/gateway/templates/service.yaml

    {{- end }}
      type: {{ .Values.service.type }}
      ports:
    {{- if .Values.networkGateway }}
      - name: status-port
        port: 15021
        targetPort: 15021
      - name: tls
        port: 15443
        targetPort: 15443
      - name: tls-istiod
        port: 15012
        targetPort: 15012
      - name: tls-webhook
        port: 15017
        targetPort: 15017
    {{- else }}
    {{ .Values.service.ports | toYaml | indent 4 }}
    {{- end }}
    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)
  6. manifests/charts/istio-control/istio-discovery/templates/service.yaml

        install.operator.istio.io/owning-resource: {{ .Values.ownerName | default "unknown" }}
        operator.istio.io/component: "Pilot"
        app: istiod
        istio: pilot
        release: {{ .Release.Name }}
    spec:
      ports:
        - port: 15010
          name: grpc-xds # plaintext
          protocol: TCP
        - port: 15012
          name: https-dns # mTLS with k8s-signed cert
          protocol: TCP
        - port: 443
    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)
Back to top