Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 2,390 for patching (0.21 sec)

  1. architecture/networking/pilot.md

    #### Caching
    
    Config translation typically takes the overwhelming majority of Istiod's resource usage. In particular, protobuf encoding. As a result, caching has been introduced, storing the already encoded `protobuf.Any` for a given resource.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 07 17:53:24 UTC 2024
    - 19.1K bytes
    - Viewed (0)
  2. pkg/registry/core/service/storage/storage.go

    			// if clusterIPs are the same, then clear on their behalf
    			if sameClusterIPs(oldSvc, newSvc) {
    				newSvc.Spec.ClusterIPs = nil
    			}
    
    			// if they provided nil, then we are fine (handled by patching case above)
    			// if they changed it then validation will catch it
    		} else {
    			// ClusterIP has changed but not cleared *and* ClusterIPs are the same
    			// then we set ClusterIPs based on ClusterIP
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 11 13:09:33 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  3. tests/integration/pilot/testdata/upgrade/1.6.11-install.yaml.tar

    "injectedAnnotations": {}, "namespace": "istio-system", "neverInjectSelector": [], "objectSelector": { "autoInject": true, "enabled": false }, "rewriteAppHTTPProbe": true } } # To disable injection: use omitSidecarInjectorC, which disables the webhook patching # and istiod webhook functionality. # # New fields should not use Values - it is a 'primary' config object, users should be able # to fine tune it or use it with kube-inject. config: |- policy: enabled alwaysInjectSelector: [] neverInjectSelector:...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 13 16:06:08 UTC 2021
    - 50K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/rest_test.go

    	updatePod *example.Pod
    
    	// expectedPod is the pod that you expect to get back after the patch is complete
    	expectedPod   *example.Pod
    	expectedError string
    	// if set, indicates the number of times patching was expected to be attempted
    	expectedTries int
    }
    
    func (tc *patchTestCase) Run(t *testing.T) {
    	t.Logf("Starting test %s", tc.name)
    
    	namespace := tc.startingPod.Namespace
    	name := tc.startingPod.Name
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 41.8K bytes
    - Viewed (0)
  5. operator/pkg/translate/translate.go

    	}
    	baseJSON, err := base.JSON()
    	if err != nil {
    		return nil, err
    	}
    
    	// get a versioned object from the scheme, we can use the strategic patching mechanism
    	// (i.e. take advantage of patchStrategy in the type)
    	versionedObject, err := scheme.Scheme.New(base.GroupVersionKind())
    	if err != nil {
    		return nil, err
    	}
    	// strategic merge patch
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Feb 12 19:43:09 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/gateway.go

    			virtualHosts = append(virtualHosts, v)
    		}
    	}
    
    	util.SortVirtualHosts(virtualHosts)
    
    	routeCfg := &route.RouteConfiguration{
    		// Retain the routeName as its used by EnvoyFilter patching logic
    		Name:                           routeName,
    		VirtualHosts:                   virtualHosts,
    		ValidateClusters:               proto.BoolFalse,
    		IgnorePortInHostMatching:       !node.IsProxylessGrpc(),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 46.4K bytes
    - Viewed (0)
  7. tests/integration/pilot/testdata/upgrade/1.7.6-install.yaml.tar

    "injectLabel": "istio-injection", "injectedAnnotations": {}, "neverInjectSelector": [], "objectSelector": { "autoInject": true, "enabled": false }, "rewriteAppHTTPProbe": true } } # To disable injection: use omitSidecarInjectorC, which disables the webhook patching # and istiod webhook functionality. # # New fields should not use Values - it is a 'primary' config object, users should be able # to fine tune it or use it with kube-inject. config: |- policy: enabled alwaysInjectSelector: [] neverInjectSelector:...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 13 16:06:08 UTC 2021
    - 60K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/implementing_custom_tasks.adoc

    For example, the `javaCompile` task action calls the Java compiler to transform source code into byte code.
    
    It is possible to dynamically modify task actions for tasks that are already registered.
    This is helpful for testing, patching, or modifying core build logic.
    
    Let's look at an example of a simple Gradle build with one `app` subproject that makes up a Java application – containing one Java class and using Gradle's `application` plugin.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 05:34:54 UTC 2024
    - 37.2K bytes
    - Viewed (0)
  9. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources.go

    			if loggerV := logger.V(6); loggerV.Enabled() {
    				// At a high enough log level, dump the entire object.
    				loggerV.Info("Patching PodSchedulingContext", "podSchedulingCtx", klog.KObj(pod), "podSchedulingCtxApply", klog.Format(schedulingCtxApply))
    			} else {
    				logger.V(5).Info("Patching PodSchedulingContext", "podSchedulingCtx", klog.KObj(pod))
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 15:22:37 UTC 2024
    - 75.9K bytes
    - Viewed (0)
  10. tests/integration/pilot/testdata/upgrade/1.8.6-install.yaml.tar

    "enableNamespacesByDe": false, "injectedAnnotations": {}, "neverInjectSelector": [], "objectSelector": { "autoInject": true, "enabled": false }, "rewriteAppHTTPProbe": true } } # To disable injection: use omitSidecarInjectorC, which disables the webhook patching # and istiod webhook functionality. # # New fields should not use Values - it is a 'primary' config object, users should be able # to fine tune it or use it with kube-inject. config: |- policy: enabled alwaysInjectSelector: [] neverInjectSelector:...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 01 19:57:24 UTC 2021
    - 70K bytes
    - Viewed (0)
Back to top