Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for Headless (0.14 sec)

  1. pilot/pkg/networking/core/sidecar_simulation_test.go

    		{Address: "1.2.3.4", Port: 82, Protocol: simulation.TCP, HostHeader: "headless.default.svc.cluster.local"},
    
    		// Use short host name
    		{Address: "1.2.3.4", Port: 83, Protocol: simulation.TCP, TLS: simulation.TLS, HostHeader: "headless.default"},
    		{Address: "1.2.3.4", Port: 84, Protocol: simulation.HTTP, TLS: simulation.TLS, HostHeader: "headless.default"},
    	} {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  2. pilot/pkg/serviceregistry/serviceregistry_test.go

    		}
    		// headless service update must trigger nds push, so we trigger a full push.
    		if ev := fx.WaitOrFail(t, "xds full"); !ev.Reason.Has(model.HeadlessEndpointUpdate) {
    			t.Fatalf("xds push reason does not contain %v: %v", model.HeadlessEndpointUpdate, ev)
    		}
    
    		// pure HTTP headless services should not need a full push since they do not
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 51.2K bytes
    - Viewed (0)
  3. pkg/workloadapi/workload.pb.go

    	// a workload that backs a Kubernetes service will typically have only endpoints. A
    	// workload that backs a headless Kubernetes service, however, will have both
    	// addresses as well as a hostname used for direct access to the headless endpoint.
    	// TODO: support this field
    	Hostname string `protobuf:"bytes,21,opt,name=hostname,proto3" json:"hostname,omitempty"`
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:35 UTC 2024
    - 65.9K bytes
    - Viewed (0)
  4. pilot/pkg/serviceregistry/kube/controller/controller_test.go

    	fx.WaitOrFail(t, "eds")
    
    	// delete normal service
    	clienttest.Wrap(t, controller.services).Delete("svc1", "nsa")
    	fx.WaitOrFail(t, "service")
    
    	// 2. full xds push request for headless service endpoint update
    
    	// create a headless service
    	createServiceWithoutClusterIP(controller, "svc1", "nsa", nil,
    		[]int32{8080}, map[string]string{"app": "prod-app"}, t)
    	fx.WaitOrFail(t, "service")
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 85K bytes
    - Viewed (0)
  5. pilot/pkg/model/push_context.go

    const (
    	// EndpointUpdate describes a push triggered by an Endpoint change
    	EndpointUpdate TriggerReason = "endpoint"
    	// HeadlessEndpointUpdate describes a push triggered by an Endpoint change for headless service
    	HeadlessEndpointUpdate TriggerReason = "headlessendpoint"
    	// ConfigUpdate describes a push triggered by a config (generally and Istio CRD) change.
    	ConfigUpdate TriggerReason = "config"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.31.md

    - Services implement a field selector for the ClusterIP and Type fields.
      Kubelet uses the fieldselector on Services to avoid watching for Headless Services and reduce the memory consumption. ([#123905](https://github.com/kubernetes/kubernetes/pull/123905), [@aojea](https://github.com/aojea)) [SIG Apps, Node and Testing]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:34:14 UTC 2024
    - 60.3K bytes
    - Viewed (0)
  7. tests/integration/ambient/baseline_test.go

      ports:
      - number: 80
        name: http
        protocol: HTTP
      resolution: {{.Resolution}}
      location: {{.Location}}
      endpoints:
      # we send directly to a Pod IP here. This is essentially headless
      - address: {{.IngressIp}} # TODO won't work with DNS resolution tests
        ports:
          http: {{.IngressHttpPort}}`).
    				WithParams(param.Params{}.SetWellKnown(param.Namespace, apps.Namespace))
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 78.4K bytes
    - Viewed (0)
  8. src/go/types/api_test.go

    	T := pkg.Scope().Lookup("T").Type().(*Named)
    	if n := T.TypeParams().Len(); n != 1 {
    		t.Fatalf("expected 1 type parameter; found %d", n)
    	}
    
    	// instantiation should succeed (no endless recursion)
    	// even with a nil *Checker
    	res, err := Instantiate(nil, T, []Type{Typ[Int]}, false)
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	// instantiated type should point to itself
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 94.2K bytes
    - Viewed (0)
Back to top