Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 43 for endpoints2 (0.23 sec)

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

    			expectedconfig: nil,
    		},
    		{
    			name: "networks populated",
    			networks: &meshconfig.MeshNetworks{
    				Networks: map[string]*meshconfig.Network{
    					"default": {
    						Endpoints: []*meshconfig.Network_NetworkEndpoints{
    							{
    								Ne: &meshconfig.Network_NetworkEndpoints_FromCidr{
    									FromCidr: "192.168.0.0/16",
    								},
    							},
    							{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  2. tests/integration/ambient/baseline_test.go

    			mtlsOnExpect := func(from echo.Instance, opts echo.CallOptions) bool {
    				if from.Config().IsNaked() || opts.To.Config().IsNaked() {
    					// If one of the two endpoints is naked, we don't send mTLS
    					return false
    				}
    				if opts.To.Config().IsHeadless() && opts.To.Instances().Contains(from) {
    					// pod calling its own pod IP will not be intercepted
    					return false
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 78.4K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/listener_test.go

    	}{
    		{
    			name: "internal k8s service with ipv4 & ipv6 endpoint for Kubernetes TCP protocol",
    			instances: []*model.ServiceInstance{
    				buildServiceInstance(svc, "10.10.10.10"),
    				buildServiceInstance(svc, "fd00:10:244:1::11"),
    			},
    			services:    []*model.Service{svc},
    			listenersOn: "0.0.0.0_9999",
    		},
    		{
    			name: "external service with ipv4 & ipv6 endpoints for Kubernetes auto protocol",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 93.6K bytes
    - Viewed (0)
  4. RELEASE.md

        dependency to secure grpc dependency).
    *   Adding new endpoints for existing tensorflow symbols. These endpoints are
        going to be the preferred endpoints going forward and may replace some of
        the existing endpoints in the future. List of new endpoints:
        *   New endpoints in `tf.image` namespace: `tf.image.extract_image_patches`
        *   New endpoints in `tf.debugging` namespace:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
  5. pkg/registry/core/pod/storage/eviction_test.go

    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/runtime"
    	"k8s.io/apimachinery/pkg/runtime/schema"
    	"k8s.io/apimachinery/pkg/watch"
    	genericapirequest "k8s.io/apiserver/pkg/endpoints/request"
    	"k8s.io/apiserver/pkg/registry/rest"
    	utilfeature "k8s.io/apiserver/pkg/util/feature"
    	"k8s.io/client-go/kubernetes/fake"
    	featuregatetesting "k8s.io/component-base/featuregate/testing"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 09:26:37 UTC 2024
    - 40K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.30.md

    - Fixed a race condition in the iptables mode of kube-proxy in `1.27` and later
      that could result in some updates getting lost (e.g., when a service gets a
      new endpoint, the rules for the new endpoint might not be added until
      much later). ([#122204](https://github.com/kubernetes/kubernetes/pull/122204), [@danwinship](https://github.com/danwinship))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 04:05:28 UTC 2024
    - 253.2K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.27.md

    - Fixed issue with `Winkernel Proxier` - No ingress load balancer rules with endpoints to support load balancing when all the endpoints are terminating. ([#113776](https://github.com/kubernetes/kubernetes/pull/113776), [@princepereira](https://github.com/princepereira))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:01:06 UTC 2024
    - 455.3K bytes
    - Viewed (0)
  8. cluster/gce/gci/configure-helper.sh

    [plugins."io.containerd.grpc.v1.cri".registry.mirrors."docker.io"]
      endpoint = ["https://mirror.gcr.io","https://registry-1.docker.io"]
    # Enable registry.k8s.io as the primary mirror for k8s.gcr.io
    # See: https://github.com/kubernetes/k8s.io/issues/3411
    [plugins."io.containerd.grpc.v1.cri".registry.mirrors."k8s.gcr.io"]
      endpoint = ["https://registry.k8s.io", "https://k8s.gcr.io",]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  9. cmd/storage-rest-server.go

    				globalLocalDrivesMap[endpoint.String()] = storage
    				globalLocalSetDrives[endpoint.PoolIdx][endpoint.SetIdx][endpoint.DiskIdx] = storage
    				return true
    			}
    
    			if createStorage(endpoint) {
    				continue
    			}
    
    			// Start async goroutine to create storage.
    			go func(endpoint Endpoint) {
    				for {
    					time.Sleep(3 * time.Second)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 44.8K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher.go

    	"k8s.io/apimachinery/pkg/runtime"
    	"k8s.io/apimachinery/pkg/runtime/schema"
    	"k8s.io/apimachinery/pkg/util/wait"
    	"k8s.io/apimachinery/pkg/watch"
    	"k8s.io/apiserver/pkg/audit"
    	"k8s.io/apiserver/pkg/endpoints/request"
    	"k8s.io/apiserver/pkg/features"
    	"k8s.io/apiserver/pkg/storage"
    	"k8s.io/apiserver/pkg/storage/cacher/metrics"
    	etcdfeature "k8s.io/apiserver/pkg/storage/feature"
    	utilfeature "k8s.io/apiserver/pkg/util/feature"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 51.8K bytes
    - Viewed (0)
Back to top