Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for PeerAuthentications (0.2 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/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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. pkg/config/schema/collections/collections.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
    - 31.4K bytes
    - Viewed (0)
Back to top