Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 2,390 for patching (0.19 sec)

  1. manifests/charts/istiod-remote/templates/istiod-injector-configmap.yaml

    {{ $pilotVals := pick .Values.pilot "cni" -}}
    {{ $vals = set $vals "pilot" $pilotVals -}}
    {{ $vals | toPrettyJson | indent 4 }}
    
      # To disable injection: use omitSidecarInjectorConfigMap, 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: |-
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  2. manifests/charts/istio-control/istio-discovery/templates/istiod-injector-configmap.yaml

    {{ $pilotVals := pick .Values.pilot "cni" -}}
    {{ $vals = set $vals "pilot" $pilotVals -}}
    {{ $vals | toPrettyJson | indent 4 }}
    
      # To disable injection: use omitSidecarInjectorConfigMap, 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: |-
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  3. pkg/webhooks/validation/controller/controller.go

    	WatchedNamespace string
    
    	// File path to the x509 certificate bundle used by the webhook server
    	// and patched into the webhook config.
    	CABundleWatcher *keycertbundle.Watcher
    
    	// Revision for control plane performing patching on the validating webhook.
    	Revision string
    
    	// Name of the service running the webhook server.
    	ServiceName string
    }
    
    // Validate the options that exposed to end users
    func (o Options) Validate() error {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 28 16:52:19 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/mod_get_wild.txt

    ! go get -u=patch example.../b@upgrade
    stderr '^go: no modules to query for example\.\.\./b@upgrade because first path element contains a wildcard$'
    
    
    # Patching . causes a patch to example.net/a, which introduces a new match
    # for example.net/b/..., which is itself patched and causes another upgrade to
    # example.net/a, which is then patched again.
    
    go get -u=patch . example.../b@upgrade
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 1.9K bytes
    - Viewed (0)
  5. pkg/registry/apps/statefulset/storage/storage_test.go

    	test.TestWatch(
    		validNewStatefulSet(),
    		// matching labels
    		[]labels.Set{
    			{"a": "b"},
    		},
    		// not matching labels
    		[]labels.Set{
    			{"a": "c"},
    			{"foo": "bar"},
    		},
    
    		// matching fields
    		[]fields.Set{
    			{"metadata.name": "foo"},
    		},
    		// not matching fields
    		[]fields.Set{
    			{"metadata.name": "bar"},
    		},
    	)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:46:12 UTC 2023
    - 14K bytes
    - Viewed (0)
  6. operator/pkg/metrics/monitoring.go

    		"reconcile_request_total",
    		"Number of times requesting Reconcile",
    	)
    
    	// GetCRErrorTotal counts the number of times fetching
    	// CR fails from API server.
    	GetCRErrorTotal = monitoring.NewSum(
    		"get_cr_error_total",
    		"Number of times fetching CR from apiserver failed",
    	)
    
    	// CRMergeFailureTotal counts number of CR merge failures.
    	CRMergeFailureTotal = monitoring.NewSum(
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Aug 10 15:35:03 UTC 2023
    - 7K bytes
    - Viewed (0)
  7. pkg/registry/core/replicationcontroller/storage/storage_test.go

    	test.TestWatch(
    		validController,
    		// matching labels
    		[]labels.Set{
    			{"a": "b"},
    		},
    		// not matching labels
    		[]labels.Set{
    			{"a": "c"},
    			{"foo": "bar"},
    		},
    		// matching fields
    		[]fields.Set{
    			{"status.replicas": "0"},
    			{"metadata.name": "foo"},
    			{"status.replicas": "0", "metadata.name": "foo"},
    		},
    		// not matching fields
    		[]fields.Set{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 16 06:57:01 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  8. pkg/registry/apps/replicaset/storage/storage_test.go

    	test.TestWatch(
    		validNewReplicaSet(),
    		// matching labels
    		[]labels.Set{
    			{"a": "b"},
    		},
    		// not matching labels
    		[]labels.Set{
    			{"a": "c"},
    			{"foo": "bar"},
    		},
    		// matching fields
    		[]fields.Set{
    			{"status.replicas": "5"},
    			{"metadata.name": "foo"},
    			{"status.replicas": "5", "metadata.name": "foo"},
    		},
    		// not matching fields
    		[]fields.Set{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:46:12 UTC 2023
    - 17.7K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/mod_upgrade_patch.txt

    cmp go.mod.orig go.mod
    
    # get -u=patch, with no arguments, should patch-update all dependencies
    # of the package in the current directory, pulling in transitive dependencies
    # and also patching those.
    cp go.mod.orig go.mod
    go get -u=patch
    go list -m all
    stdout '^patch.example.com/direct v1.0.1'
    stdout '^patch.example.com/indirect v1.0.1'
    stdout '^patch.example.com/depofdirectpatch v1.0.0'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 3.6K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/test/integration/subresources_test.go

    			}
    
    			scaleClient, err := fixtures.CreateNewVersionedScaleClient(noxuDefinition, config, v.Name)
    			if err != nil {
    				t.Fatal(err)
    			}
    
    			t.Logf("Patching .status.num to 999")
    			patch := []byte(`{"spec": {"num":999}, "status": {"num":999}}`)
    			patchedNoxuInstance, err := noxuResourceClient.Patch(context.TODO(), "foo", types.MergePatchType, patch, metav1.PatchOptions{}, "status")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 12 17:35:34 UTC 2024
    - 33.2K bytes
    - Viewed (0)
Back to top