Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for NetworkAttachmentDefinition (0.34 sec)

  1. manifests/charts/istio-cni/templates/network-attachment-definition.yaml

    {{- if eq .Values.cni.provider "multus" }}
    apiVersion: k8s.cni.cncf.io/v1
    kind: NetworkAttachmentDefinition
    metadata:
      name: {{ template "name" . }}
      namespace: default
      labels:
        operator.istio.io/component: "Cni"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 21:52:29 UTC 2024
    - 231 bytes
    - Viewed (0)
  2. operator/pkg/name/name.go

    	IstioOperator                     = "IstioOperator"
    	MutatingWebhookConfigurationStr   = "MutatingWebhookConfiguration"
    	NamespaceStr                      = "Namespace"
    	NetworkAttachmentDefinitionStr    = "NetworkAttachmentDefinition"
    	PodStr                            = "Pod"
    	PDBStr                            = "PodDisruptionBudget"
    	ReplicaSetStr                     = "ReplicaSet"
    	RoleStr                           = "Role"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 19:23:44 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  3. operator/pkg/verifier/verifier.go

    )
    
    // specialKinds is a map of special kinds to their corresponding kind names, which do not follow the
    // standard convention of pluralizing the kind name.
    var specialKinds = map[string]string{
    	"NetworkAttachmentDefinition": "network-attachment-definitions",
    }
    
    // StatusVerifier checks status of certain resources like deployment,
    // jobs and also verifies count of certain resource types.
    type StatusVerifier struct {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 19:23:44 UTC 2024
    - 15K bytes
    - Viewed (0)
  4. operator/pkg/apis/istio/v1alpha1/values_types.proto

      // Configuration for Istio Ambient.
      CNIAmbientConfig ambient = 21;
    
      // Specifies the CNI provider. Can be either "default" or "multus". When set to "multus", an additional
      // NetworkAttachmentDefinition resource is deployed to the cluster to allow the istio-cni plugin to be
      // invoked in a cluster using the Multus CNI plugin.
      string provider = 22;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
  5. operator/pkg/apis/istio/v1alpha1/values_types.pb.go

    	Ambient *CNIAmbientConfig `protobuf:"bytes,21,opt,name=ambient,proto3" json:"ambient,omitempty"`
    	// Specifies the CNI provider. Can be either "default" or "multus". When set to "multus", an additional
    	// NetworkAttachmentDefinition resource is deployed to the cluster to allow the istio-cni plugin to be
    	// invoked in a cluster using the Multus CNI plugin.
    	Provider string `protobuf:"bytes,22,opt,name=provider,proto3" json:"provider,omitempty"`
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 329.6K bytes
    - Viewed (0)
Back to top