Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 855 for Patches (0.11 sec)

  1. cmd/kubeadm/app/apis/kubeadm/v1beta4/types.go

    	// The flag "--skip-phases" takes precedence over this field.
    	// +optional
    	SkipPhases []string `json:"skipPhases,omitempty"`
    
    	// Patches contains options related to applying patches to components deployed by kubeadm during
    	// "kubeadm init".
    	// +optional
    	Patches *Patches `json:"patches,omitempty"`
    
    	// Timeouts holds various timeouts that apply to kubeadm commands.
    	// +optional
    	Timeouts *Timeouts `json:"timeouts,omitempty"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 03:12:52 UTC 2024
    - 34.5K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/phases/addons/dns/dns.go

    }
    
    // applyCoreDNSDeploymentPatches reads patches from a directory and applies them over the input coreDNSDeploymentBytes
    func applyCoreDNSDeploymentPatches(coreDNSDeploymentBytes []byte, patchesDir string, output io.Writer) ([]byte, error) {
    	patchManager, err := patches.GetPatchManagerForPath(patchesDir, patches.KnownTargets(), output)
    	if err != nil {
    		return nil, err
    	}
    
    	patchTarget := &patches.PatchTarget{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 10:21:20 UTC 2024
    - 16.1K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/cmd/upgrade/node.go

    	initCfg.NodeRegistration.IgnorePreflightErrors = sets.List(ignorePreflightErrorsSet)
    
    	var patchesDir string
    	if upgradeCfg.Node.Patches != nil {
    		patchesDir = cmdutil.ValueFromFlagsOrConfig(cmd.Flags(), options.Patches, upgradeCfg.Node.Patches.Directory, nodeOptions.patchesDir).(string)
    	} else {
    		patchesDir = nodeOptions.patchesDir
    	}
    
    	return &nodeData{
    		cfg:                   upgradeCfg,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 08:34:39 UTC 2024
    - 10K bytes
    - Viewed (0)
  4. tests/integration/security/file_mounted_certs/main_test.go

    components:
      egressGateways:
      - enabled: true
        name: istio-egressgateway
        k8s:
          overlays:
            - kind: Deployment
              name: istio-egressgateway
              patches:
                - path: spec.template.spec.volumes[100]
                  value: |-
                    name: server-certs
                    secret:
                      secretName: ` + PilotSecretName + `
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/util/staticpod/utils.go

    	if err != nil {
    		return pod, errors.Wrapf(err, "failed to marshal Pod manifest to YAML")
    	}
    
    	patchManager, err := patches.GetPatchManagerForPath(patchesDir, patches.KnownTargets(), output)
    	if err != nil {
    		return pod, err
    	}
    
    	patchTarget := &patches.PatchTarget{
    		Name:                      pod.Name,
    		StrategicMergePatchObject: v1.Pod{},
    		Data:                      podYAML,
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 14 13:07:56 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  6. testing/internal-integ-testing/src/test/groovy/org/gradle/integtests/fixtures/timeout/JavaProcessStackTracesMonitorSpec.groovy

    1\\lib\\launcher.jar;C:\\tcagent1\\lib\\log4j-1.2.12-json-layout-1.0.9.jar;C:\\tcagent1\\lib\\log4j-1.2.12.jar;C:\\tcagent1\\lib\\messages.jar;C:\\tcagent1\\lib\\nuget-utils.jar;C:\\tcagent1\\lib\\openapi.jar;C:\\tcagent1\\lib\\patches-impl.jar;C:\\tcagent1\\lib\\patches.jar;C:\\tcagent1\\lib\\processesTerminator.jar;C:\\tcagent1\\lib\\resources_en.jar;C:\\tcagent1\\lib\\runtime-util.jar;C:\\tcagent1\\lib\\server-logging.jar;C:\\tcagent1\\lib\\serviceMessages.jar;C:\\tcagent1\\lib\\slf4j-api-1.7...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 12 10:33:12 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/apis/kubeadm/validation/validation.go

    	allErrs := field.ErrorList{}
    	if c.Apply.Patches != nil {
    		allErrs = append(allErrs, ValidateAbsolutePath(c.Apply.Patches.Directory, field.NewPath("patches").Child("directory"))...)
    	}
    	if c.Node.Patches != nil {
    		allErrs = append(allErrs, ValidateAbsolutePath(c.Node.Patches.Directory, field.NewPath("patches").Child("directory"))...)
    	}
    	return allErrs
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/envoyfilter/rc_patch_test.go

    			Action: &route.Route_Route{
    				Route: &route.RouteAction{
    					PrefixRewrite: "/shared",
    				},
    			},
    		},
    	}
    	type args struct {
    		patchContext       networking.EnvoyFilter_PatchContext
    		patches            map[networking.EnvoyFilter_ApplyTo][]*model.EnvoyFilterConfigPatchWrapper
    		routeConfiguration *route.RouteConfiguration
    		virtualHost        *route.VirtualHost
    		routeIndex         int
    		routesRemoved      *bool
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 32.4K bytes
    - Viewed (0)
  9. 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)
  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