Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 471 for dryrun (0.11 sec)

  1. staging/src/k8s.io/api/testdata/v1.30.0/core.v1.PatchOptions.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 188 bytes
    - Viewed (0)
  2. pkg/registry/apps/deployment/storage/storage.go

    		}
    	}
    
    	// Update the Deployment with information in DeploymentRollback to trigger rollback
    	err := r.rollbackDeployment(ctx, rollback.Name, &rollback.RollbackTo, rollback.UpdatedAnnotations, dryrun.IsDryRun(options.DryRun))
    	if err != nil {
    		return nil, err
    	}
    	return &metav1.Status{
    		Status:  metav1.StatusSuccess,
    		Message: fmt.Sprintf("rollback request for deployment %q succeeded", rollback.Name),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 21:44:00 UTC 2023
    - 16.8K bytes
    - Viewed (0)
  3. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/AbstractTestFilteringIntegrationTest.groovy

        TestOutcome getPassedTestOutcome() {
            return dryRun ? TestOutcome.SKIPPED : TestOutcome.PASSED
        }
    
        TestOutcome getFailedTestOutcome() {
            return dryRun ? TestOutcome.SKIPPED : TestOutcome.FAILED
        }
    
        final List<String> getTestTaskArguments() {
            return dryRun ? ['--test-dry-run'] : []
        }
    
        boolean isDryRun() {
            return false
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 17.2K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/testdata/v1.29.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: Fri Dec 15 04:12:07 UTC 2023
    - 215 bytes
    - Viewed (0)
  5. subprojects/core-api/src/main/java/org/gradle/StartParameter.java

            this.buildProjectDependencies = build;
            return this;
        }
    
        public boolean isDryRun() {
            return dryRun;
        }
    
        public void setDryRun(boolean dryRun) {
            this.dryRun = dryRun;
        }
    
        /**
         * Sets the settings file to use for the build. Use null to use the default settings file.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 06:24:50 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/testdata/HEAD/policy.v1beta1.Eviction.yaml

    apiVersion: policy/v1beta1
    deleteOptions:
      dryRun:
      - dryRunValue
      gracePeriodSeconds: 1
      orphanDependents: true
      preconditions:
        resourceVersion: resourceVersionValue
        uid: uidValue
      propagationPolicy: propagationPolicyValue
    kind: Eviction
    metadata:
      annotations:
        annotationsKey: annotationsValue
      creationTimestamp: "2008-01-01T01:01:01Z"
      deletionGracePeriodSeconds: 10
      deletionTimestamp: "2009-01-01T01:01:01Z"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 06 21:25:20 UTC 2022
    - 1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/testdata/v1.30.0/policy.v1.Eviction.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/cmd/phases/reset/removeetcdmember.go

    		Short: "Remove a local etcd member.",
    		Long:  "Remove a local etcd member for a control plane node.",
    		Run:   runRemoveETCDMemberPhase,
    		InheritFlags: []string{
    			options.KubeconfigPath,
    			options.DryRun,
    		},
    	}
    }
    
    func runRemoveETCDMemberPhase(c workflow.RunData) error {
    	r, ok := c.(resetData)
    	if !ok {
    		return errors.New("remove-etcd-member-phase phase invoked with an invalid data struct")
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 11 08:02:50 UTC 2022
    - 4.5K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/apis/kubeadm/types.go

    	// BootstrapTokens is respected at "kubeadm init" time and describes a set of Bootstrap Tokens to create.
    	BootstrapTokens []bootstraptokenv1.BootstrapToken
    
    	// DryRun tells if the dry run mode is enabled, don't apply any change if it is and just output what would be done.
    	DryRun bool
    
    	// NodeRegistration holds fields that relate to registering the new control-plane node to the cluster
    	NodeRegistration NodeRegistrationOptions
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 03:12:52 UTC 2024
    - 32.6K bytes
    - Viewed (0)
  10. operator/cmd/mesh/operator-remove.go

    		iop, err = translate.IOPStoIOP(emptyiops, "", "")
    		if err != nil {
    			l.LogAndFatal(err)
    		}
    	}
    	reconciler, err := helmreconciler.NewHelmReconciler(client, kubeClient, iop, &helmreconciler.Options{DryRun: args.DryRun, Log: l})
    	if err != nil {
    		l.LogAndFatal(err)
    	}
    	rs, err := reconciler.GetPrunedResources(orArgs.revision, false, string(name.IstioOperatorComponentName))
    	if err != nil {
    		l.LogAndFatal(err)
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 15 01:18:49 UTC 2024
    - 5.4K bytes
    - Viewed (0)
Back to top