Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for pathType (0.12 sec)

  1. pkg/apis/networking/validation/validation_test.go

    				ing.Spec.Rules[0].IngressRuleValue.HTTP.Paths[0].PathType = &pathTypeFoo
    			},
    			expectErrsOnFields: []string{
    				"spec.rules[0].http.paths[0].pathType",
    			},
    		},
    		"empty path (prefix)": {
    			tweakIngress: func(ing *networking.Ingress) {
    				ing.Spec.Rules[0].IngressRuleValue.HTTP.Paths[0].Path = ""
    				ing.Spec.Rules[0].IngressRuleValue.HTTP.Paths[0].PathType = &pathTypePrefix
    			},
    			expectErrsOnFields: []string{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:06 UTC 2023
    - 73.3K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/extensions/v1beta1/types.go

    	//   the IngressClass. Implementations can treat this as a separate PathType
    	//   or treat it identically to Prefix or Exact path types.
    	// Implementations are required to support all path types.
    	// Defaults to ImplementationSpecific.
    	PathType *PathType `json:"pathType,omitempty" protobuf:"bytes,3,opt,name=pathType"`
    
    	// Backend defines the referenced service endpoint to which the traffic
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:29 UTC 2023
    - 61.3K bytes
    - Viewed (0)
  3. pkg/apis/networking/v1/zz_generated.conversion.go

    	return nil
    }
    
    func autoConvert_v1_HTTPIngressPath_To_networking_HTTPIngressPath(in *v1.HTTPIngressPath, out *networking.HTTPIngressPath, s conversion.Scope) error {
    	out.Path = in.Path
    	out.PathType = (*networking.PathType)(unsafe.Pointer(in.PathType))
    	if err := Convert_v1_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: Mon May 01 18:19:25 UTC 2023
    - 53.6K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/apis/kubeadm/v1beta4/zz_generated.conversion.go

    	out.Name = in.Name
    	out.HostPath = in.HostPath
    	out.MountPath = in.MountPath
    	out.ReadOnly = in.ReadOnly
    	out.PathType = corev1.HostPathType(in.PathType)
    	return nil
    }
    
    // Convert_v1beta4_HostPathMount_To_kubeadm_HostPathMount is an autogenerated conversion function.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 08:34:39 UTC 2024
    - 61.4K bytes
    - Viewed (0)
  5. pkg/apis/extensions/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: Mon May 01 18:19:25 UTC 2023
    - 95.7K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/util/strategicpatch/patch.go

    				if !ok {
    					delete(original, k)
    				}
    			}
    			continue
    		}
    
    		originalType := reflect.TypeOf(original[k])
    		patchType := reflect.TypeOf(patchV)
    		if originalType != patchType {
    			if !isDeleteList {
    				if mergeOptions.IgnoreUnmatchedNulls {
    					discardNullValuesFromPatch(patchV)
    				}
    				original[k], ok = removeDirectives(patchV)
    				if !ok {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 23:34:23 UTC 2023
    - 75.5K bytes
    - Viewed (0)
  7. pilot/pkg/config/kube/crdclient/types.gen.go

    	default:
    		return nil, fmt.Errorf("unsupported type: %v", cfg.GroupVersionKind)
    	}
    }
    
    func patch(c kube.Client, orig config.Config, origMeta metav1.ObjectMeta, mod config.Config, modMeta metav1.ObjectMeta, typ types.PatchType) (metav1.Object, error) {
    	if orig.GroupVersionKind != mod.GroupVersionKind {
    		return nil, fmt.Errorf("gvk mismatch: %v, modified: %v", orig.GroupVersionKind, mod.GroupVersionKind)
    	}
    	switch orig.GroupVersionKind {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 17:37:32 UTC 2024
    - 62.2K bytes
    - Viewed (0)
Back to top