Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 136 for pathType (0.18 sec)

  1. staging/src/k8s.io/api/networking/v1beta1/zz_generated.deepcopy.go

    func (in *HTTPIngressPath) DeepCopyInto(out *HTTPIngressPath) {
    	*out = *in
    	if in.PathType != nil {
    		in, out := &in.PathType, &out.PathType
    		*out = new(PathType)
    		**out = **in
    	}
    	in.Backend.DeepCopyInto(&out.Backend)
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new HTTPIngressPath.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 02 23:13:31 UTC 2022
    - 12.4K bytes
    - Viewed (0)
  2. common-protos/k8s.io/api/networking/v1beta1/generated.proto

      // as defined by RFC 3986. Paths must begin with a '/' and must be present
      // when using PathType with value "Exact" or "Prefix".
      // +optional
      optional string path = 1;
    
      // pathType determines the interpretation of the path matching. PathType can
      // be one of the following values:
      // * Exact: Matches the URL path exactly.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/networking/v1beta1/types_swagger_doc_generated.go

    	"pathType": "pathType determines the interpretation of the path matching. PathType can be one of the following values: * Exact: Matches the URL path exactly. * Prefix: Matches based on a URL path prefix split by '/'. Matching is\n  done on a path element by element...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 22 00:51:25 UTC 2023
    - 14.3K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/apis/kubeadm/v1beta3/doc.go

    //	    mountPath: "/etc/some-pod-path"
    //	    readOnly: false
    //	    pathType: File
    //	scheduler:
    //	  extraArgs:
    //	    address: "10.100.0.1"
    //	  extraVolumes:
    //	  - name: "some-volume"
    //	    hostPath: "/etc/some-path"
    //	    mountPath: "/etc/some-pod-path"
    //	    readOnly: false
    //	    pathType: File
    //	certificatesDir: "/etc/kubernetes/pki"
    //	imageRepository: "registry.k8s.io"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 05 13:30:26 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/networking/v1beta1/generated.proto

      // as defined by RFC 3986. Paths must begin with a '/' and must be present
      // when using PathType with value "Exact" or "Prefix".
      // +optional
      optional string path = 1;
    
      // pathType determines the interpretation of the path matching. PathType can
      // be one of the following values:
      // * Exact: Matches the URL path exactly.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/apis/kubeadm/v1beta4/doc.go

    //	    mountPath: "/etc/some-pod-path"
    //	    readOnly: false
    //	    pathType: File
    //	scheduler:
    //	  extraArgs:
    //	    address: "10.100.0.1"
    //	  extraVolumes:
    //	  - name: "some-volume"
    //	    hostPath: "/etc/some-path"
    //	    mountPath: "/etc/some-pod-path"
    //	    readOnly: false
    //	    pathType: File
    //	certificatesDir: "/etc/kubernetes/pki"
    //	imageRepository: "registry.k8s.io"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  7. pkg/apis/networking/v1beta1/zz_generated.conversion.go

    }
    
    func autoConvert_v1beta1_HTTPIngressPath_To_networking_HTTPIngressPath(in *v1beta1.HTTPIngressPath, out *networking.HTTPIngressPath, s conversion.Scope) error {
    	out.Path = in.Path
    	out.PathType = (*networking.PathType)(unsafe.Pointer(in.PathType))
    	if err := Convert_v1beta1_IngressBackend_To_networking_IngressBackend(&in.Backend, &out.Backend, s); err != nil {
    		return err
    	}
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 02 23:13:31 UTC 2022
    - 35.8K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/phases/controlplane/volumes.go

    		}
    		certDirs.Insert(certDir)
    	}
    
    	volumes := []v1.Volume{}
    	volumeMounts := []v1.VolumeMount{}
    	pathType := v1.HostPathDirectoryOrCreate
    	for i, certDir := range sets.List(certDirs) {
    		name := fmt.Sprintf("etcd-certs-%d", i)
    		volumes = append(volumes, staticpodutil.NewVolume(name, certDir, &pathType))
    		volumeMounts = append(volumeMounts, staticpodutil.NewVolumeMount(name, certDir, true))
    	}
    	return volumes, volumeMounts
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 09:33:18 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  9. pilot/pkg/config/kube/ingress/conversion_test.go

    								{
    									Path:     "/test/foo/bar",
    									PathType: &prefix,
    									Backend: knetworking.IngressBackend{
    										Service: &knetworking.IngressServiceBackend{
    											Name: "foo",
    											Port: knetworking.ServiceBackendPort{Number: 8000},
    										},
    									},
    								},
    								{
    									Path:     "/test/foo/bar",
    									PathType: &exact,
    									Backend: knetworking.IngressBackend{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 19 18:20:34 UTC 2023
    - 14.9K bytes
    - Viewed (0)
  10. pkg/apis/networking/validation/validation.go

    	allErrs := field.ErrorList{}
    
    	if path.PathType == nil {
    		return append(allErrs, field.Required(fldPath.Child("pathType"), "pathType must be specified"))
    	}
    
    	switch *path.PathType {
    	case networking.PathTypeExact, networking.PathTypePrefix:
    		if !strings.HasPrefix(path.Path, "/") {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 07 14:48:01 UTC 2024
    - 31.5K bytes
    - Viewed (0)
Back to top