Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 471 for dryrun (0.1 sec)

  1. cmd/kubeadm/app/util/apiclient/clientbacked_dryrun.go

    	if err != nil {
    		return nil, errors.Wrap(err, "failed to create API client configuration from kubeconfig")
    	}
    	return NewClientBackedDryRunGetter(clientConfig)
    }
    
    // HandleGetAction handles GET actions to the dryrun clientset this interface supports
    func (clg *ClientBackedDryRunGetter) HandleGetAction(action core.GetAction) (bool, runtime.Object, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 16 10:29:45 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/testdata/v1.30.0/core.v1.DeleteOptions.yaml

    apiVersion: v1
    dryRun:
    - dryRunValue
    gracePeriodSeconds: 1
    kind: DeleteOptions
    orphanDependents: true
    preconditions:
      resourceVersion: resourceVersionValue
      uid: uidValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 215 bytes
    - Viewed (0)
  3. tools/istio-clean-iptables/pkg/cmd/root.go

    	"istio.io/istio/tools/istio-iptables/pkg/constants"
    )
    
    func bindCmdlineFlags(cfg *config.Config, cmd *cobra.Command) {
    	fs := cmd.Flags()
    	flag.BindEnv(fs, constants.DryRun, "n", "Do not call any external dependencies like iptables.",
    		&cfg.DryRun)
    
    	flag.BindEnv(fs, constants.ProxyUID, "u",
    		"Specify the UID of the user for which the redirection is not applied. Typically, this is the UID of the proxy container.",
    		&cfg.ProxyUID)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 17:46:23 UTC 2024
    - 3K bytes
    - Viewed (0)
  4. pkg/webhooks/validation/server/monitoring.go

    	metricValidationHTTPError = monitoring.NewSum(
    		"galley_validation_http_error",
    		"Resource validation http serve errors",
    	)
    )
    
    func reportValidationFailed(request *kube.AdmissionRequest, reason string, dryRun bool) {
    	if dryRun {
    		return
    	}
    	metricValidationFailed.
    		With(GroupTag.Value(request.Resource.Group)).
    		With(VersionTag.Value(request.Resource.Version)).
    		With(ResourceTag.Value(request.Resource.Resource)).
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 09 16:50:34 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  5. plugin/pkg/admission/eventratelimit/admission_test.go

    func (r request) withEventComponent(component string) request {
    	return r.withEvent(&api.Event{
    		Source: api.EventSource{
    			Component: component,
    		},
    	})
    }
    
    func (r request) withDryRun(dryRun bool) request {
    	r.dryRun = dryRun
    	return r
    }
    
    func (r request) withUser(name string) request {
    	r.username = name
    	return r
    }
    
    func (r request) blocked() request {
    	r.accepted = false
    	return r
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 17 13:19:08 UTC 2021
    - 15.6K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/testdata/HEAD/core.v1.CreateOptions.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Feb 19 15:31:53 UTC 2022
    - 172 bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/testdata/v1.29.0/core.v1.CreateOptions.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 172 bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/testdata/v1.29.0/core.v1.CreateOptions.yaml

    apiVersion: v1
    dryRun:
    - dryRunValue
    fieldManager: fieldManagerValue
    fieldValidation: fieldValidationValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 127 bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/testdata/HEAD/core.v1.PatchOptions.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Feb 19 15:31:53 UTC 2022
    - 188 bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/testdata/v1.29.0/core.v1.PatchOptions.yaml

    apiVersion: v1
    dryRun:
    - dryRunValue
    fieldManager: fieldManagerValue
    fieldValidation: fieldValidationValue
    force: true
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 138 bytes
    - Viewed (0)
Back to top