Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 400 for Patches (0.12 sec)

  1. pilot/pkg/model/envoyfilter.go

    			} else {
    				// pre-compile the regex for proxy version if it exists
    				// ignore the error because validation catches invalid regular expressions.
    				cpw.ProxyVersionRegex, _ = regexp.Compile(cp.Match.Proxy.ProxyVersion)
    			}
    		}
    
    		if _, exists := out.Patches[cp.ApplyTo]; !exists {
    			out.Patches[cp.ApplyTo] = make([]*EnvoyFilterConfigPatchWrapper, 0)
    		}
    		if cpw.Operation == networking.EnvoyFilter_Patch_INSERT_AFTER ||
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 13:57:28 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/phases/kubelet/config.go

    }
    
    // applyKubeletConfigPatches reads patches from a directory and applies them over the input kubeletBytes
    func applyKubeletConfigPatches(kubeletBytes []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: Fri Feb 02 12:34:30 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/envoyfilter/cluster_patch.go

    	})
    	// In case the patches cause panic, use the clusters generated before to reduce the influence.
    	out = c
    	if efw == nil {
    		return
    	}
    	for _, cp := range efw.Patches[networking.EnvoyFilter_CLUSTER] {
    		applied := false
    		if cp.Operation != networking.EnvoyFilter_Patch_MERGE {
    			IncrementEnvoyFilterMetric(cp.Key(), Cluster, applied)
    			continue
    		}
    		if commonConditionMatch(pctx, cp) && clusterMatch(c, cp, hosts) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/envoyfilter/fuzz_test.go

    		fg := fuzz.New(t, data)
    		patches := fuzz.Slice[*networking.EnvoyFilter_EnvoyConfigObjectPatch](fg, patchCount%30)
    		proxy := fuzz.Struct[*model.Proxy](fg)
    		mesh := fuzz.Struct[*meshconfig.MeshConfig](fg)
    		c := fuzz.Struct[*cluster.Cluster](fg)
    
    		serviceDiscovery := memory.NewServiceDiscovery()
    		env := newTestEnvironment(serviceDiscovery, mesh, buildEnvoyFilterConfigStore(patches))
    		push := model.NewPushContext()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/cmd/options/constant.go

    	CertificateRenewal = "certificate-renewal"
    
    	// EtcdUpgrade flag instructs kubeadm to execute etcd upgrade during upgrades
    	EtcdUpgrade = "etcd-upgrade"
    
    	// Patches flag sets the folder where kubeadm component patches are stored
    	Patches = "patches"
    
    	// PrintManifest flag instructs kubeadm to print the addon manifests to STDOUT instead of installing them.
    	PrintManifest = "print-manifest"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 05:14:21 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/cmd/options/generic.go

    		`supported by kubectl. The default "patchtype" is "strategic". "extension" must be either ` +
    		`"json" or "yaml". "suffix" is an optional string that can be used to determine ` +
    		`which patches are applied first alpha-numerically.`
    	fs.StringVar(patchesDir, Patches, *patchesDir, usage)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 10:21:20 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  7. operator/cmd/mesh/testdata/manifest-generate/input/gateways.yaml

                # Port 5353 is forwarded to kube-dns
                - port: 5353
                  name: tcp-dns
              overlays:
                - kind: Deployment
                  name: ilb-gateway
                  patches:
                    - path: spec.template.spec.containers.[name:istio-proxy].env.[name:PILOT_CERT_PROVIDER].value
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/telemetry/CONTRIBUTING.md

    if you've tripped over a bug.
    
    ## Contributing code
    
    Please read the
    [Contribution Guidelines](https://golang.org/doc/contribute.html) before sending
    patches.
    
    Unless otherwise noted, the Go source files are distributed under the BSD-style
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:57:25 UTC 2024
    - 913 bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/envoyfilter/extension_configuration_patch.go

    	result := make([]*core.TypedExtensionConfig, 0)
    	if efw == nil {
    		return result
    	}
    	hasName := sets.New(names...)
    	for _, p := range efw.Patches[networking.EnvoyFilter_EXTENSION_CONFIG] {
    		if p.Operation != networking.EnvoyFilter_Patch_ADD {
    			continue
    		}
    		ec, ok := p.Value.(*core.TypedExtensionConfig)
    		if !ok {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/apis/kubeadm/fuzzer/fuzzer.go

    			TTL:    &metav1.Duration{Duration: 1234},
    		},
    	}
    	obj.SkipPhases = nil
    	obj.NodeRegistration.ImagePullPolicy = corev1.PullIfNotPresent
    	obj.NodeRegistration.ImagePullSerial = ptr.To(true)
    	obj.Patches = nil
    	obj.DryRun = false
    	kubeadm.SetDefaultTimeouts(&obj.Timeouts)
    }
    
    func fuzzNodeRegistration(obj *kubeadm.NodeRegistrationOptions, c fuzz.Continue) {
    	c.FuzzNoCustom(obj)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 13 06:41:07 UTC 2024
    - 6.2K bytes
    - Viewed (0)
Back to top