Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,905 for Patches (0.16 sec)

  1. cmd/kubeadm/app/cmd/phases/init/kubelet.go

    		Example: kubeletStartPhaseExample,
    		Run:     runKubeletStart,
    		InheritFlags: []string{
    			options.CfgPath,
    			options.ImageRepository,
    			options.NodeCRISocket,
    			options.NodeName,
    			options.Patches,
    			options.DryRun,
    		},
    	}
    }
    
    // runKubeletStart executes kubelet start logic.
    func runKubeletStart(c workflow.RunData) error {
    	data, ok := c.(InitData)
    	if !ok {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Aug 20 09:18:00 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  2. pkg/kube/kclient/interfaces.go

    	// Update updates a resource, returning the newly applied resource.
    	Update(object T) (T, error)
    	// UpdateStatus updates a resource's status, returning the newly applied resource.
    	UpdateStatus(object T) (T, error)
    	// Patch patches the resource, returning the newly applied resource.
    	Patch(name, namespace string, pt apitypes.PatchType, data []byte) (T, error)
    	// Delete removes a resource.
    	Delete(name, namespace string) error
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 07 05:09:57 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  3. operator/pkg/helmreconciler/apply_test.go

    )
    
    var interceptorFunc = interceptor.Funcs{Patch: func(
    	ctx context.Context,
    	clnt client.WithWatch,
    	obj client.Object,
    	patch client.Patch,
    	opts ...client.PatchOption,
    ) error {
    	// Apply patches are supposed to upsert, but fake client fails if the object doesn't exist,
    	// if an apply patch occurs for an object that doesn't yet exist, create it.
    	if patch.Type() != types.ApplyPatchType {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 12 17:12:54 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/cluster_cache.go

    // Implements XdsCacheEntry interface.
    type clusterCache struct {
    	clusterName string
    
    	// proxy related cache fields
    	proxyVersion    string         // will be matched by envoyfilter patches
    	locality        *core.Locality // identifies the locality the cluster is generated for
    	proxyClusterID  string         // identifies the kubernetes cluster a proxy is in
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 19:09:43 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  5. pilot/pkg/model/push_context_test.go

    				}
    				return
    			}
    			if len(filter.Patches[networking.EnvoyFilter_CLUSTER]) != tt.expectedClusterPatches {
    				t.Errorf("Expect %d envoy filter cluster patches, but got %d", tt.expectedClusterPatches, len(filter.Patches[networking.EnvoyFilter_CLUSTER]))
    			}
    			if len(filter.Patches[networking.EnvoyFilter_LISTENER]) != tt.expectedListenerPatches {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 95.3K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/util/jsonmergepatch/patch.go

    		case keepNull && val == nil:
    			filteredMap[key] = nil
    		case val != nil:
    			switch typedVal := val.(type) {
    			case map[string]interface{}:
    				// Explicitly-set empty maps are treated as values instead of empty patches
    				if len(typedVal) == 0 {
    					if !keepNull {
    						filteredMap[key] = typedVal
    					}
    					continue
    				}
    
    				var filteredSubMap map[string]interface{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  7. docs/hotfixes.md

    # Introduction
    
    This document outlines how to make hotfix binaries and containers for MinIO?. The main focus in this article is about how to backport patches to a specific branch and finally building binaries/containers.
    
    ## Pre-pre requisite
    
    - A working knowledge of MinIO codebase and its various components.
    - A working knowledge of AWS S3 API behaviors and corner cases.
    
    ## Pre-requisite for backporting any fixes
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Feb 14 21:36:02 UTC 2024
    - 5K bytes
    - Viewed (0)
  8. pkg/controller/controller_utils.go

    	DeletePodName   []string
    	Patches         [][]byte
    	Err             error
    	CreateLimit     int
    	CreateCallCount int
    }
    
    var _ PodControlInterface = &FakePodControl{}
    
    func (f *FakePodControl) PatchPod(ctx context.Context, namespace, name string, data []byte) error {
    	f.Lock()
    	defer f.Unlock()
    	f.Patches = append(f.Patches, data)
    	if f.Err != nil {
    		return f.Err
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 12 15:34:44 UTC 2024
    - 47.6K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/cmd/phases/join/controlplanejoin.go

    func getControlPlaneJoinPhaseFlags(name string) []string {
    	flags := []string{
    		options.CfgPath,
    		options.ControlPlane,
    		options.NodeName,
    	}
    	if name == "etcd" || name == "all" {
    		flags = append(flags, options.Patches)
    	}
    	if name != "mark-control-plane" {
    		flags = append(flags, options.APIServerAdvertiseAddress)
    	}
    	if name != "update-status" {
    		flags = append(flags, options.DryRun)
    	}
    	return flags
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 03:09:42 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/cmd/join.go

    	return j.outputWriter
    }
    
    // PatchesDir returns the folder where patches for components are stored
    func (j *joinData) PatchesDir() string {
    	// If provided, make the flag value override the one in config.
    	if len(j.patchesDir) > 0 {
    		return j.patchesDir
    	}
    	if j.cfg.Patches != nil {
    		return j.cfg.Patches.Directory
    	}
    	return ""
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 16 15:33:38 UTC 2024
    - 25.2K bytes
    - Viewed (0)
Back to top