Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 64 for mutating (0.1 sec)

  1. manifests/charts/gateway/templates/deployment.yaml

          {{- with .Values.volumes }}
          volumes:
            {{ toYaml . | nindent 8 }}
          {{- end }}
          containers:
            - name: istio-proxy
              # "auto" will be populated at runtime by the mutating webhook. See https://istio.io/latest/docs/setup/additional-setup/sidecar-injection/#customizing-injection
              image: auto
              {{- with .Values.imagePullPolicy }}
              imagePullPolicy: {{ . }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 22:42:29 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  2. pkg/test/framework/components/istio/cleanup.go

    			context.Background(), metav1.DeleteOptions{}, metav1.ListOptions{}); e != nil {
    			err = multierror.Append(err, e)
    		}
    		// Delete validating and mutating webhook configurations. These can be created outside of generated manifests
    		// when installing with istioctl and must be deleted separately.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/storage/selection_predicate.go

    // In any failure to parse given object, it returns error.
    type AttrFunc func(obj runtime.Object) (labels.Set, fields.Set, error)
    
    // FieldMutationFunc allows the mutation of the field selection fields.  It is mutating to
    // avoid the extra allocation on this common path
    type FieldMutationFunc func(obj runtime.Object, fieldSet fields.Set) error
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 09:20:10 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  4. cluster/gce/gci/configure-kubeapiserver.sh

          params=$(append-param-if-not-present "${params}" "max-mutating-requests-inflight" 1000)
        elif [[ "${NUM_NODES}" -gt 500 ]]; then
          params=$(append-param-if-not-present "${params}" "max-requests-inflight" 1500)
          params=$(append-param-if-not-present "${params}" "max-mutating-requests-inflight" 500)
        fi
      fi
      if [[ -n "${SERVICE_CLUSTER_IP_RANGE:-}" ]]; then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 11:08:30 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  5. manifests/charts/istio-control/istio-discovery/values.yaml

        defaultTemplates: []
      istiodRemote:
        # Sidecar injector mutating webhook configuration clientConfig.url value.
        # For example: https://$remotePilotAddress:15017/inject
        # The host should not refer to a service running in the cluster; use a service reference by specifying
        # the clientConfig.service field instead.
        injectionURL: ""
    
        # Sidecar injector mutating webhook configuration path value for the clientConfig.service field.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  6. manifests/charts/istiod-remote/values.yaml

        defaultTemplates: []
      istiodRemote:
        # Sidecar injector mutating webhook configuration clientConfig.url value.
        # For example: https://$remotePilotAddress:15017/inject
        # The host should not refer to a service running in the cluster; use a service reference by specifying
        # the clientConfig.service field instead.
        injectionURL: ""
        # Sidecar injector mutating webhook configuration path value for the clientConfig.service field.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 21K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    * **Hierarchy**: Configuration hierarchy (`extendsFrom`) should be set upon creation. Mutating the hierarchy prior to resolution is highly discouraged, but is permitted within a `withDependencies` hook.
    * **Resolution Strategy**: Mutating a configuration's ResolutionStrategy is still permitted in a `beforeResolve` hook; however, this is not recommended.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  8. pkg/controlplane/instance.go

    	default:
    		klog.Fatalf("Reconciler not implemented: %v", c.Extra.EndpointReconcilerType)
    	}
    	return nil
    }
    
    // Complete fills in any fields not set that are required to have valid data. It's mutating the receiver.
    func (c *Config) Complete() CompletedConfig {
    	if c.ControlPlane.PeerEndpointReconcileInterval == 0 && c.EndpointReconcilerConfig.Interval != 0 {
    		// default this to the endpoint reconciler value before the generic
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 03 11:50:04 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  9. pkg/kubelet/images/image_gc_manager.go

    	// because the image cache is more often read than written
    	sort.Sort(sliceutils.ByImageSize(images))
    	i.images = images
    }
    
    // get gets image list from image cache.
    // NOTE: The caller of get() should not do mutating operations on the
    // returned list that could cause data race against other readers (e.g.
    // in-place sorting the returned list)
    func (i *imageCache) get() []container.Image {
    	i.Lock()
    	defer i.Unlock()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  10. pkg/test/kube/dump.go

    	for _, c := range ctx.AllClusters() {
    		mwhs, err := c.Kube().AdmissionregistrationV1().MutatingWebhookConfigurations().List(context.TODO(), metav1.ListOptions{})
    		if err != nil {
    			scopes.Framework.Warnf("Error getting mutating webhook configurations for cluster %s: %v", c.Name(), err)
    			return
    		}
    		for _, mwh := range mwhs.Items {
    			mwh := mwh
    			errG.Go(func() error {
    				out, err := yaml.Marshal(mwh)
    				if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 22.2K bytes
    - Viewed (0)
Back to top