Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 924 for SVC (0.02 sec)

  1. istioctl/pkg/writer/compare/testdata/configdump_diff.json

                                            "name": "inbound-vip|80||sleep.default.svc.cluster.local-http",
                                            "typed_config": {
                                              "@type": "type.googleapis.com/google.protobuf.StringValue",
                                              "value": "inbound-vip|80||sleep.default.svc.cluster.local-http"
                                            }
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 12 10:02:09 UTC 2024
    - 51.6K bytes
    - Viewed (0)
  2. tests/integration/telemetry/policy/testdata/enable_envoy_ratelimit.yaml

                      address:
                        socket_address:
                          address: ratelimit.{{ .RateLimitNamespace }}.svc.cluster.local
                          port_value: 8081
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: EnvoyFilter
    metadata:
      name: filter-ratelimit-svc
      namespace: istio-system
    spec:
      workloadSelector:
        labels:
          app: clt
      configPatches:
        - applyTo: VIRTUAL_HOST
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 13 16:44:49 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  3. pilot/pkg/serviceregistry/kube/controller/ambient/services.go

    		Name:          svc.Name,
    		Namespace:     svc.Namespace,
    		Hostname:      string(kube.ServiceHostname(svc.Name, svc.Namespace, a.DomainSuffix)),
    		Addresses:     addresses,
    		Ports:         ports,
    		Waypoint:      waypointAddress,
    		LoadBalancing: lb,
    	}
    }
    
    func getVIPs(svc *v1.Service) []string {
    	res := []string{}
    	if svc.Spec.ClusterIP != "" && svc.Spec.ClusterIP != v1.ClusterIPNone {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 12:29:55 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  4. src/runtime/sys_freebsd_arm64.s

    	MOVD	sig+8(FP), R1	// arg 2 sig
    	MOVD	$SYS_thr_kill, R8
    	SVC
    	RET
    
    // func raiseproc(sig uint32)
    TEXT runtime·raiseproc(SB),NOSPLIT|NOFRAME,$0
    	MOVD	$SYS_getpid, R8
    	SVC
    	MOVW	sig+0(FP), R1
    	MOVD	$SYS_kill, R8
    	SVC
    	RET
    
    // func setitimer(mode int32, new, old *itimerval)
    TEXT runtime·setitimer(SB),NOSPLIT|NOFRAME,$0-24
    	MOVW	mode+0(FP), R0
    	MOVD	new+8(FP), R1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 18:49:01 UTC 2023
    - 9.5K bytes
    - Viewed (0)
  5. istioctl/pkg/describe/testdata/describe/http_config.json

                          "operation": "productpage.default.svc.cluster.local:9080/productpage"
                        }
                      },
                      {
                        "match": {
                          "prefix": "/static",
                          "case_sensitive": true
                        },
                        "route": {
                          "cluster": "outbound|9080||productpage.default.svc.cluster.local",
                          "timeout": "0s",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 15 15:02:17 UTC 2023
    - 13.7K bytes
    - Viewed (0)
  6. pilot/pkg/config/kube/gateway/testdata/eastwest-labelport.yaml.golden

    apiVersion: networking.istio.io/v1alpha3
    kind: Gateway
    metadata:
      annotations:
        internal.istio.io/gateway-semantics: gateway
        internal.istio.io/gateway-service: eastwestgateway-istio.istio-system.svc.domain.suffix
        internal.istio.io/parents: Gateway/eastwestgateway/istiod-grpc.istio-system
      creationTimestamp: null
      name: eastwestgateway-istio-autogenerated-k8s-gateway-istiod-grpc
      namespace: istio-system
    spec:
      servers:
      - hosts:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 11 20:21:53 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  7. pilot/pkg/xds/eds_test.go

    			Port:     80,
    			Protocol: protocol.HTTP,
    		},
    	}
    	svc := &model.Service{
    		Ports:    ports,
    		Hostname: host.Name("test1"),
    	}
    	s.MemRegistry.AddService(svc)
    	if _, err := ads.Wait(time.Second*10, watchAll...); err != nil {
    		t.Fatal(err)
    	}
    	i := &model.ServiceInstance{
    		Service:     svc,
    		ServicePort: svc.Ports[0],
    		Endpoint: &model.IstioEndpoint{
    			Address:        "1.2.3.4",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 02 20:58:47 UTC 2024
    - 39.6K bytes
    - Viewed (0)
  8. pilot/pkg/model/gateway_test.go

    	hosts := mgw.GetAutoPassthrughGatewaySNIHosts()
    	expectedHosts := sets.Set[string]{}
    	expectedHosts.InsertAll("a.apps.svc.cluster.local", "b.apps.svc.cluster.local")
    	if !hosts.Equals(expectedHosts) {
    		t.Errorf("expected to get: [a.apps.svc.cluster.local,b.apps.svc.cluster.local], got: %s", hosts.String())
    	}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 02:36:23 UTC 2024
    - 9K bytes
    - Viewed (0)
  9. plugin/pkg/admission/network/denyserviceexternalips/admission_test.go

    	"k8s.io/apiserver/pkg/admission"
    	"k8s.io/kubernetes/pkg/apis/core"
    )
    
    func makeSvc(externalIPs ...string) *core.Service {
    	svc := &core.Service{}
    	svc.Namespace = "test-ns"
    	svc.Name = "test-svc"
    	svc.Spec.ExternalIPs = externalIPs
    	return svc
    }
    
    func TestAdmission(t *testing.T) {
    	testCases := []struct {
    		name   string
    		newSvc *core.Service
    		oldSvc *core.Service
    		fail   bool
    	}{{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 14 05:36:44 UTC 2021
    - 3K bytes
    - Viewed (0)
  10. pkg/proxy/winkernel/proxier_test.go

    	}
    
    	makeServiceMap(proxier,
    		makeTestService(svcPortName.Namespace, svcPortName.Name, func(svc *v1.Service) {
    			svc.Spec.Type = "NodePort"
    			svc.Spec.ClusterIP = svcIP
    			svc.Spec.ExternalIPs = []string{svcExternalIPs}
    			svc.Spec.SessionAffinity = v1.ServiceAffinityClientIP
    			svc.Spec.SessionAffinityConfig = &v1.SessionAffinityConfig{
    				ClientIP: &v1.ClientIPConfig{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 28 14:30:51 UTC 2024
    - 30.2K bytes
    - Viewed (0)
Back to top