Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 280 for svc4 (0.04 sec)

  1. tests/testdata/networking/sidecar-ns-scope/configs.yaml

            subset: v1
          weight: 70
        - destination:
            host: http1.ns1.svc.cluster.local
            subset: v2
          weight: 30
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: ServiceEntry
    metadata:
      name: http1
      namespace: ns2
    spec:
      hosts:
      - http1.ns2.svc.cluster.local
      addresses:
      - 3.1.1.1
      ports:
      - number: 8080
        name: http
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jan 04 17:16:38 UTC 2021
    - 3.5K bytes
    - Viewed (0)
  2. pilot/pkg/config/kube/gateway/testdata/reference-policy-tcp.yaml

        name: echo
    ---
    apiVersion: gateway.networking.k8s.io/v1alpha2
    kind: TCPRoute
    metadata:
      name: allowed-my-svc
      namespace: istio-system
    spec:
      parentRefs:
      - name: gateway
        namespace: istio-system
        sectionName: my-svc
      rules:
      - backendRefs:
        - name: my-svc
          namespace: service
          port: 34000
    ---
    apiVersion: gateway.networking.k8s.io/v1alpha2
    kind: TCPRoute
    metadata:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 18 22:43:39 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  3. samples/multicluster/expose-istiod-rev.yaml.tmpl

          - "istiod-{{.Revision}}.istio-system.svc"
          - "istiod-{{.Revision}}.istio-system.svc.cluster.local"
        route:
        - destination:
            host: istiod-{{.Revision}}.istio-system.svc.cluster.local
            port:
              number: 15012
      - match:
        - port: 15017
          sniHosts:
          - "istiod-{{.Revision}}.istio-system.svc"
          - "istiod-{{.Revision}}.istio-system.svc.cluster.local"
        route:
        - destination:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Sep 22 05:22:46 UTC 2021
    - 1.2K bytes
    - Viewed (0)
  4. pkg/api/v1/service/util_test.go

    		annotations[v1.AnnotationLoadBalancerSourceRangesKey] = v
    		svc := v1.Service{}
    		svc.Annotations = annotations
    		_, err := GetLoadBalancerSourceRanges(&svc)
    		if err == nil {
    			t.Errorf("Expected error parsing: %q", v)
    		}
    		svc = v1.Service{}
    		svc.Spec.LoadBalancerSourceRanges = strings.Split(v, ",")
    		_, err = GetLoadBalancerSourceRanges(&svc)
    		if err == nil {
    			t.Errorf("Expected error parsing: %q", v)
    		}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 01 15:18:45 UTC 2023
    - 8.8K bytes
    - Viewed (0)
  5. tests/integration/security/testdata/requestauthn/global-jwt.yaml.tmpl

      rules:
      - to:
        - operation:
            hosts:
    {{- range $svc := .Services }}
            - "example.{{ $svc.ServiceName }}.com"
    {{- end }}
        from:
        - source:
            requestPrincipals: ["******@****.***/sub-1"]
      - to:
        - operation:
            hosts:
      {{- range $svc := .Services }}
            - "any-request-principal-ok.{{ $svc.ServiceName }}.com"
      {{- end }}
        from:
        - source:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 08 07:03:01 UTC 2023
    - 1K bytes
    - Viewed (0)
  6. pilot/pkg/serviceregistry/kube/controller/serviceexportcache.go

    	if svc == nil {
    		// Default policy when the service doesn't exist.
    		return model.DiscoverableFromSameCluster
    	}
    
    	if strings.HasSuffix(svc.Hostname.String(), "."+constants.DefaultClusterSetLocalDomain) {
    		return ec.clusterSetLocalPolicySelector(svc)
    	}
    
    	return ec.clusterLocalPolicySelector(svc)
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 28 16:41:38 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  7. pkg/proxy/ipvs/util/ipvs.go

    func (svc *VirtualServer) Equal(other *VirtualServer) bool {
    	return svc.Address.Equal(other.Address) &&
    		svc.Protocol == other.Protocol &&
    		svc.Port == other.Port &&
    		svc.Scheduler == other.Scheduler &&
    		svc.Flags == other.Flags &&
    		svc.Timeout == other.Timeout
    }
    
    func (svc *VirtualServer) String() string {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  8. pilot/pkg/config/kube/gateway/testdata/invalid.yaml.golden

      hosts:
      - third.domain.example
      http:
      - name: default.invalid-backendRef-mixed.0
        route:
        - destination:
            host: nonexistent.default.svc.domain.suffix
            port:
              number: 80
          weight: 1
        - destination:
            host: httpbin.default.svc.domain.suffix
            port:
              number: 80
          weight: 1
        - destination: {}
          weight: 1
    ---
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 11 20:21:53 UTC 2023
    - 4K bytes
    - Viewed (0)
  9. tests/integration/pilot/testdata/tunneling/gateway/tls/passthrough/originate-tls.tmpl.yaml

    kind: DestinationRule
    metadata:
      name: originate-tls-for-external-svc
    spec:
      host: {{ .EgressGatewayServiceName | default "istio-egressgateway" }}.{{ .EgressGatewayServiceNamespace | default "istio-system" }}.svc.cluster.local
      subsets:
      - name: originate-tls-for-plain-traffic
        trafficPolicy:
          tls:
            mode: SIMPLE
            sni: external.{{ .externalNamespace }}.svc.cluster.local
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Jan 20 19:37:50 UTC 2024
    - 472 bytes
    - Viewed (0)
  10. helm/minio/templates/configmap.yaml

      # Policy: {{ $policy.name }}
      policy_{{ $idx }}.json: |-
        {{- include (print $.Template.BasePath "/_helper_policy.tpl") . | nindent 4 }}
      {{ end }}
      {{- range $idx, $svc := .Values.svcaccts }}
      {{- if $svc.policy }}
      # SVC: {{ $svc.accessKey }}
      svc_policy_{{ $idx }}.json: |-
        {{- include (print $.Template.BasePath "/_helper_policy.tpl") .policy | nindent 4 }}
      {{- end }}
      {{- end }}
      add-svcacct: |-
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Apr 17 06:04:15 UTC 2023
    - 1.2K bytes
    - Viewed (0)
Back to top