Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 471 for dryrun (0.31 sec)

  1. cmd/kubeadm/app/cmd/token.go

    		// user knows that their command was invalid.
    		Run: cmdutil.SubCmdRun(),
    	}
    
    	options.AddKubeConfigFlag(tokenCmd.PersistentFlags(), &kubeConfigFile)
    	tokenCmd.PersistentFlags().BoolVar(&dryRun,
    		options.DryRun, dryRun, "Whether to enable dry-run mode or not")
    
    	cfg := &kubeadmapiv1.InitConfiguration{}
    
    	// Default values for the cobra help text
    	kubeadmscheme.Scheme.Default(cfg)
    
    	var cfgPath string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 05:47:48 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  2. pkg/apis/admission/zz_generated.deepcopy.go

    	in.UserInfo.DeepCopyInto(&out.UserInfo)
    	if in.Object != nil {
    		out.Object = in.Object.DeepCopyObject()
    	}
    	if in.OldObject != nil {
    		out.OldObject = in.OldObject.DeepCopyObject()
    	}
    	if in.DryRun != nil {
    		in, out := &in.DryRun, &out.DryRun
    		*out = new(bool)
    		**out = **in
    	}
    	if in.Options != nil {
    		out.Options = in.Options.DeepCopyObject()
    	}
    	return
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 3.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/admission/v1beta1/zz_generated.deepcopy.go

    		*out = new(v1.GroupVersionResource)
    		**out = **in
    	}
    	in.UserInfo.DeepCopyInto(&out.UserInfo)
    	in.Object.DeepCopyInto(&out.Object)
    	in.OldObject.DeepCopyInto(&out.OldObject)
    	if in.DryRun != nil {
    		in, out := &in.DryRun, &out.DryRun
    		*out = new(bool)
    		**out = **in
    	}
    	in.Options.DeepCopyInto(&out.Options)
    	return
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 3.8K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/cmd/phases/reset/preflight.go

    			options.IgnorePreflightErrors,
    			options.ForceReset,
    			options.DryRun,
    		},
    	}
    }
    
    // runPreflight executes preflight checks logic.
    func runPreflight(c workflow.RunData) error {
    	r, ok := c.(resetData)
    	if !ok {
    		return errors.New("preflight phase invoked with an invalid data struct")
    	}
    
    	if !r.ForceReset() && !r.DryRun() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 11 08:02:50 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  5. operator/cmd/mesh/install.go

    	if err := InstallManifests(iop, iArgs.Force, rootArgs.DryRun, kubeClient, client, iArgs.ReadinessTimeout, l); err != nil {
    		return fmt.Errorf("failed to install manifests: %v", err)
    	}
    	opts := &helmreconciler.ProcessDefaultWebhookOptions{
    		Namespace: ns,
    		DryRun:    rootArgs.DryRun,
    	}
    	if processed, err := helmreconciler.ProcessDefaultWebhook(kubeClient, iop, exists, opts); err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 21:52:35 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  6. callbacks/raw.go

    package callbacks
    
    import (
    	"gorm.io/gorm"
    )
    
    func RawExec(db *gorm.DB) {
    	if db.Error == nil && !db.DryRun {
    		result, err := db.Statement.ConnPool.ExecContext(db.Statement.Context, db.Statement.SQL.String(), db.Statement.Vars...)
    		if err != nil {
    			db.AddError(err)
    			return
    		}
    
    		db.RowsAffected, _ = result.RowsAffected()
    	}
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Mon Nov 29 01:33:20 UTC 2021
    - 336 bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/testdata/HEAD/core.v1.CreateOptions.yaml

    apiVersion: v1
    dryRun:
    - dryRunValue
    fieldManager: fieldManagerValue
    fieldValidation: fieldValidationValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Feb 19 15:31:53 UTC 2022
    - 127 bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/testdata/HEAD/core.v1.UpdateOptions.yaml

    apiVersion: v1
    dryRun:
    - dryRunValue
    fieldManager: fieldManagerValue
    fieldValidation: fieldValidationValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Feb 19 15:31:53 UTC 2022
    - 127 bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/testdata/v1.29.0/core.v1.UpdateOptions.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 172 bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/testdata/v1.29.0/core.v1.UpdateOptions.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)
Back to top