Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,217 for Patches (0.16 sec)

  1. pilot/pkg/model/envoyfilter_test.go

    	}
    	if patches := cfilter.Patches[networking.EnvoyFilter_INVALID]; len(patches) != 1 {
    		t.Fatalf("unexpected patches of %v: %v", networking.EnvoyFilter_INVALID, cfilter.Patches)
    	}
    	if patches := cfilter.Patches[networking.EnvoyFilter_HTTP_ROUTE]; len(patches) != 1 { // check num of invalid http route patches
    		t.Fatalf("unexpected patches of %v: %v", networking.EnvoyFilter_HTTP_ROUTE, cfilter.Patches)
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Dec 27 04:20:28 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  2. 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)
  3. operator/cmd/mesh/testdata/manifest-generate/input/pilot_override_kubernetes.yaml

              - kind: Service
                name: istiod
                patches:
                  - path: spec.ports.[name:https-dns].port
                    value: 11111 # OVERRIDDEN
              # Cluster scope resource
              - kind: MutatingWebhookConfiguration
                name: istio-sidecar-injector-istio-control
                patches:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 01 22:07:45 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. operator/samples/pilot-advanced-override.yaml

            - kind: Deployment
              name: istiod
              patches:
              - path: spec.template.spec.containers.[name:discovery].args.[30m]
                value: "60m" # OVERRIDDEN
              - path: spec.template.spec.containers.[name:discovery].ports.[containerPort:8080].containerPort
                value: 8090 # OVERRIDDEN
            - kind: Service
              name: istiod
              patches:
              - path: spec.ports.[name:grpc-xds].port
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 18 18:00:25 UTC 2020
    - 598 bytes
    - Viewed (0)
  7. operator/pkg/patch/patch.go

    		}
    		oys := string(oy)
    		for _, overlay := range overlays {
    			if overlayMatches(overlay, obj, defaultNamespace) {
    				matches[overlay] = append(matches[overlay], obj)
    				var errs2 util.Errors
    				oys, errs2 = applyPatches(obj, overlay.Patches)
    				errs = util.AppendErrs(errs, errs2)
    			}
    		}
    		if _, err := ret.WriteString(oys + helm.YAMLSeparator); err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Aug 10 15:35:03 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. releasenotes/notes/bds-removal.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: installation
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 09 19:21:50 UTC 2024
    - 196 bytes
    - Viewed (0)
Back to top