Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 16 for PeerAuthentications (0.31 sec)

  1. pilot/pkg/model/authentication.go

    		// Add the config to the map by namespace for future look up. This is done after namespace/mesh
    		// singleton check so there should be at most one namespace/mesh config is added to the map.
    		policy.peerAuthentications[config.Namespace] = append(policy.peerAuthentications[config.Namespace], config)
    	}
    
    	// nolint: gosec
    	// Not security sensitive code
    	policy.aggregateVersion = fmt.Sprintf("%x", md5.Sum([]byte(strings.Join(versions, ";"))))
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  2. pkg/config/analysis/analyzers/testdata/peerauthentication-crd.yaml

    apiVersion: apiextensions.k8s.io/v1beta1
    kind: CustomResourceDefinition
    metadata:
      name: peerauthentications.security.istio.io
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 17 12:28:05 UTC 2021
    - 133 bytes
    - Viewed (0)
  3. pkg/config/schema/gvr/resources.gen.go

    	PeerAuthentication             = schema.GroupVersionResource{Group: "security.istio.io", Version: "v1beta1", Resource: "peerauthentications"}
    	PeerAuthentication_v1          = schema.GroupVersionResource{Group: "security.istio.io", Version: "v1", Resource: "peerauthentications"}
    	Pod                            = schema.GroupVersionResource{Group: "", Version: "v1", Resource: "pods"}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 17:37:32 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  4. pilot/pkg/serviceregistry/kube/controller/ambient/policies.go

    		if len(krt.Fetch(ctx, PeerAuths)) == 0 {
    			return nil
    		}
    		meshCfg := krt.FetchOne(ctx, MeshConfig.AsCollection())
    		// If there are any PeerAuthentications in our cache, send our static STRICT policy
    		return &model.WorkloadAuthorization{
    			LabelSelector: model.LabelSelector{},
    			Authorization: &security.Authorization{
    				Name:      staticStrictPolicyName,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 16:51:29 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  5. pkg/config/schema/kubeclient/resources.gen.go

    	case gvr.PeerAuthentication:
    		l = func(options metav1.ListOptions) (runtime.Object, error) {
    			return c.Istio().SecurityV1beta1().PeerAuthentications(opts.Namespace).List(context.Background(), options)
    		}
    		w = func(options metav1.ListOptions) (watch.Interface, error) {
    			return c.Istio().SecurityV1beta1().PeerAuthentications(opts.Namespace).Watch(context.Background(), options)
    		}
    	case gvr.Pod:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 13:57:51 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  6. 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)
  7. pkg/config/schema/collections/collections.agent.gen.go

    	}.MustBuild()
    
    	PeerAuthentication = resource.Builder{
    		Identifier: "PeerAuthentication",
    		Group:      "security.istio.io",
    		Kind:       "PeerAuthentication",
    		Plural:     "peerauthentications",
    		Version:    "v1beta1",
    		VersionAliases: []string{
    			"v1",
    		},
    		Proto: "istio.security.v1beta1.PeerAuthentication", StatusProto: "istio.meta.v1alpha1.IstioStatus",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 14:44:17 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  8. pkg/config/schema/metadata.yaml

        protoPackage: "istio.io/api/security/v1beta1"
        statusProto: "istio.meta.v1alpha1.IstioStatus"
        statusProtoPackage: "istio.io/api/meta/v1alpha1"
    
      - kind: PeerAuthentication
        plural: "peerauthentications"
        group: "security.istio.io"
        version: "v1beta1"
        versionAliases:
        - "v1"
        proto: "istio.security.v1beta1.PeerAuthentication"
        protoPackage: "istio.io/api/security/v1beta1"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 17:37:32 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  9. 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)
  10. pilot/pkg/serviceregistry/kube/controller/ambient/ambientindex.go

    		gvr.PeerAuthentication, kubetypes.StandardInformer, filter)
    	PeerAuths := krt.WrapClient[*securityclient.PeerAuthentication](peerAuths, krt.WithName("PeerAuthentications"))
    
    	serviceEntries := kclient.NewDelayedInformer[*networkingclient.ServiceEntry](options.Client,
    		gvr.ServiceEntry, kubetypes.StandardInformer, filter)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 19 17:19:41 UTC 2024
    - 15.8K bytes
    - Viewed (0)
Back to top