Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for PeerAuthentications (0.16 sec)

  1. pilot/pkg/config/kube/crdclient/types.gen.go

    			ObjectMeta: objMeta,
    			Spec:       *(cfg.Spec.(*sigsk8siogatewayapiapisv1beta1.GatewaySpec)),
    		}, metav1.CreateOptions{})
    	case gvk.PeerAuthentication:
    		return c.Istio().SecurityV1beta1().PeerAuthentications(cfg.Namespace).Create(context.TODO(), &apiistioioapisecurityv1beta1.PeerAuthentication{
    			ObjectMeta: objMeta,
    			Spec:       *(cfg.Spec.(*istioioapisecurityv1beta1.PeerAuthentication)),
    		}, metav1.CreateOptions{})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 17:37:32 UTC 2024
    - 62.2K bytes
    - Viewed (0)
  2. istioctl/pkg/describe/describe.go

    	}
    
    	workloadPAList, err := configClient.SecurityV1beta1().PeerAuthentications(workloadNamespace).List(context.Background(), metav1.ListOptions{})
    	if err != nil {
    		return fmt.Errorf("failed to fetch workload namespace PeerAuthentication: %v", err)
    	}
    
    	rootPAList, err := configClient.SecurityV1beta1().PeerAuthentications(meshCfg.RootNamespace).List(context.Background(), metav1.ListOptions{})
    	if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 13 05:23:38 UTC 2024
    - 50.4K bytes
    - Viewed (0)
  3. pilot/pkg/serviceregistry/kube/controller/ambient/ambientindex_test.go

    func TestAmbientIndex_Policy(t *testing.T) {
    	s := newAmbientTestServer(t, testC, testNW)
    	setupPolicyTest(t, s)
    
    	selectorPolicyName := "selector"
    
    	// Test that PeerAuthentications are added to the ambient index
    	s.addPolicy(t, "global", systemNS, nil, gvk.PeerAuthentication, func(c controllers.Object) {
    		pol := c.(*clientsecurityv1beta1.PeerAuthentication)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 01:04:50 UTC 2024
    - 70.2K bytes
    - Viewed (0)
Back to top