Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 108 for initConfiguration (0.2 sec)

  1. cmd/kubeadm/app/cmd/phases/init/data.go

    type InitData interface {
    	UploadCerts() bool
    	CertificateKey() string
    	SetCertificateKey(key string)
    	SkipCertificateKeyPrint() bool
    	Cfg() *kubeadmapi.InitConfiguration
    	DryRun() bool
    	SkipTokenPrint() bool
    	IgnorePreflightErrors() sets.Set[string]
    	CertificateWriteDir() string
    	CertificateDir() string
    	KubeConfigDir() string
    	KubeConfigPath() string
    	ManifestDir() string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 06 10:43:20 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/apis/kubeadm/v1beta4/zz_generated.deepcopy.go

    func (in *InitConfiguration) DeepCopy() *InitConfiguration {
    	if in == nil {
    		return nil
    	}
    	out := new(InitConfiguration)
    	in.DeepCopyInto(out)
    	return out
    }
    
    // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
    func (in *InitConfiguration) DeepCopyObject() runtime.Object {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 08:34:39 UTC 2024
    - 24.1K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/cmd/phases/reset/data_test.go

    func (t *testData) InputReader() io.Reader                   { return nil }
    func (t *testData) IgnorePreflightErrors() sets.Set[string]  { return nil }
    func (t *testData) Cfg() *kubeadmapi.InitConfiguration       { return nil }
    func (t *testData) DryRun() bool                             { return false }
    func (t *testData) Client() clientset.Interface              { return nil }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 14 09:03:31 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/apis/kubeadm/v1beta4/zz_generated.conversion.go

    	}); err != nil {
    		return err
    	}
    	if err := s.AddConversionFunc((*kubeadm.InitConfiguration)(nil), (*InitConfiguration)(nil), func(a, b interface{}, scope conversion.Scope) error {
    		return Convert_kubeadm_InitConfiguration_To_v1beta4_InitConfiguration(a.(*kubeadm.InitConfiguration), b.(*InitConfiguration), scope)
    	}); err != nil {
    		return err
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 08:34:39 UTC 2024
    - 61.4K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/cmd/phases/join/data_test.go

    func (j *testJoinData) Cfg() *kubeadmapi.JoinConfiguration              { return nil }
    func (j *testJoinData) TLSBootstrapCfg() (*clientcmdapi.Config, error)  { return nil, nil }
    func (j *testJoinData) InitCfg() (*kubeadmapi.InitConfiguration, error) { return nil, nil }
    func (j *testJoinData) Client() (clientset.Interface, error)            { return nil, nil }
    func (j *testJoinData) IgnorePreflightErrors() sets.Set[string]         { return nil }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 26 15:51:39 UTC 2023
    - 2K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/util/config/upgradeconfiguration.go

    	if err != nil {
    		return nil, err
    	}
    
    	// Convert documentMap to internal UpgradeConfiguration, InitConfiguration and ClusterConfiguration from config file will be ignored.
    	// Upgrade should respect the cluster configuration from the existing cluster, re-configure the cluster with a InitConfiguration and
    	// ClusterConfiguration from the config file is not allowed for upgrade.
    	if isKubeadmConfigPresent(docmap) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 11:04:08 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/cmd/config_test.go

    		cmdProc          func(out io.Writer) *cobra.Command
    	}{
    		{
    			name: "InitConfiguration: No component configs",
    			expectedKinds: []string{
    				constants.ClusterConfigurationKind,
    				constants.InitConfigurationKind,
    			},
    			cmdProc: newCmdConfigPrintInitDefaults,
    		},
    		{
    			name: "InitConfiguration: KubeProxyConfiguration",
    			expectedKinds: []string{
    				constants.ClusterConfigurationKind,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 06:58:01 UTC 2024
    - 13K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/cmd/phases/upgrade/node/preflight.go

    	if err := preflight.RunRootCheckOnly(data.IgnorePreflightErrors()); err != nil {
    		return err
    	}
    
    	// If this is a control-plane node, pull the basic images
    	if data.IsControlPlaneNode() {
    		// Update the InitConfiguration used for RunPullImagesCheck with ImagePullPolicy and ImagePullSerial
    		// that come from UpgradeNodeConfiguration.
    		initConfig := data.InitCfg()
    		initConfig.NodeRegistration.ImagePullPolicy = data.Cfg().Node.ImagePullPolicy
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 03:55:23 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  9. platforms/core-runtime/wrapper-shared/src/test/groovy/org/gradle/wrapper/InstallTest.groovy

            createEvilZip(templateEvalZipFile)
            templateEvalZipHash = Install.calculateSha256Sum(templateEvalZipFile)
        }
    
        void setup() {
            initConfiguration()
    
            testDir = temporaryFolder.testDirectory
            distributionDir = new TestFile(testDir, 'someDistPath')
            gradleHomeDir = new TestFile(distributionDir, 'gradle-0.9')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:12:34 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/cmd/upgrade/diff.go

    		}
    	}
    	return nil
    }
    
    // FetchInitConfigurationFunc defines the signature of the function which will fetch InitConfiguration from cluster.
    type FetchInitConfigurationFunc func(client clientset.Interface, printer output.Printer, logPrefix string, newControlPlane, skipComponentConfigs bool) (*kubeadmapi.InitConfiguration, error)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 11:04:08 UTC 2024
    - 7.1K bytes
    - Viewed (0)
Back to top