Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 27 of 27 for nodeclient (0.27 sec)

  1. pilot/pkg/serviceregistry/kube/controller/pod_test.go

    	got := c.pods.getPodsByIP("128.0.0.1")
    	assert.Equal(t, got != nil, true)
    	assert.Equal(t, map[string]string{"app": "test", "foo": "bar"}, got[0].Labels)
    
    	pod.Labels["foo"] = "not-bar"
    	clienttest.Wrap(t, c.podsClient).CreateOrUpdate(pod)
    	fx.StrictMatchOrFail(t, xdsfake.Event{
    		Type: "proxy",
    		ID:   "128.0.0.1",
    	},
    		xdsfake.Event{
    			Type: "xds",
    			ID:   "ratings.nsa.svc.company.com",
    		})
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 16 18:27:40 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  2. src/crypto/tls/handshake_client.go

    		return nil, nil, nil, errors.New("tls: NextProtos values too large")
    	}
    
    	supportedVersions := config.supportedVersions(roleClient)
    	if len(supportedVersions) == 0 {
    		return nil, nil, nil, errors.New("tls: no supported versions satisfy MinVersion and MaxVersion")
    	}
    	maxVersion := config.maxSupportedVersion(roleClient)
    
    	hello := &clientHelloMsg{
    		vers:                         maxVersion,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 38.6K bytes
    - Viewed (0)
  3. pilot/pkg/serviceregistry/kube/controller/controller.go

    	registerHandlers[*v1.Node](c, c.nodes, "Nodes", c.onNodeEvent, nil)
    
    	c.podsClient = kclient.NewFiltered[*v1.Pod](kubeClient, kclient.Filter{
    		ObjectFilter:    kubeClient.ObjectFilter(),
    		ObjectTransform: kubelib.StripPodUnusedFields,
    	})
    	c.pods = newPodCache(c, c.podsClient, func(key types.NamespacedName) {
    		c.queue.Push(func() error {
    			return c.endpoints.podArrived(key.Name, key.Namespace)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 41.2K bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.7.md

            * requests for a TLS client certificate for any node are approved if the CSR creator has `create` permission on the `certificatesigningrequests` resource and `nodeclient` subresource in the `certificates.k8s.io` API group
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 05 13:44:43 UTC 2022
    - 308.7K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.8.md

            * requests for a TLS client certificate for any node are approved if the CSR creator has `create` permission on the `certificatesigningrequests` resource and `nodeclient` subresource in the `certificates.k8s.io` API group
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 312.2K bytes
    - Viewed (0)
  6. src/crypto/tls/common.go

    }
    
    var supportedVersions = []uint16{
    	VersionTLS13,
    	VersionTLS12,
    	VersionTLS11,
    	VersionTLS10,
    }
    
    // roleClient and roleServer are meant to call supportedVersions and parents
    // with more readability at the callsite.
    const roleClient = true
    const roleServer = false
    
    var tls10server = godebug.New("tls10server")
    
    func (c *Config) supportedVersions(isClient bool) []uint16 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 59.1K bytes
    - Viewed (0)
  7. pilot/pkg/serviceregistry/kube/controller/controller_test.go

    			return false
    		}
    	}
    	return true
    }
    
    func addPods(t *testing.T, controller *FakeController, fx *xdsfake.Updater, pods ...*corev1.Pod) {
    	pc := clienttest.Wrap(t, controller.podsClient)
    	for _, pod := range pods {
    		newPod := pc.CreateOrUpdate(pod)
    		setPodReady(newPod)
    		// Apiserver doesn't allow Create/Update to modify the pod status. Creating doesn't result in
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 85K bytes
    - Viewed (0)
Back to top