Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 36 for imagerepository (0.42 sec)

  1. cmd/kubeadm/app/apis/kubeadm/v1beta3/defaults.go

    	if obj.Networking.DNSDomain == "" {
    		obj.Networking.DNSDomain = DefaultServiceDNSDomain
    	}
    
    	if obj.CertificatesDir == "" {
    		obj.CertificatesDir = DefaultCertificatesDir
    	}
    
    	if obj.ImageRepository == "" {
    		obj.ImageRepository = DefaultImageRepository
    	}
    
    	if obj.ClusterName == "" {
    		obj.ClusterName = DefaultClusterName
    	}
    
    	SetDefaults_Etcd(obj)
    	SetDefaults_APIServer(&obj.APIServer)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 14 13:07:56 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/cmd/options/constant.go

    	IgnorePreflightErrors = "ignore-preflight-errors"
    
    	// ImageRepository sets the container registry to pull control plane images from.
    	ImageRepository = "image-repository"
    
    	// KubeconfigDir flag sets the path where to save the kubeconfig file.
    	KubeconfigDir = "kubeconfig-dir"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 05:14:21 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/apis/kubeadm/v1beta4/types.go

    // originated from the Kubernetes/Kubernetes release process
    type ImageMeta struct {
    	// ImageRepository sets the container registry to pull images from.
    	// if not set, the ImageRepository defined in ClusterConfiguration will be used instead.
    	// +optional
    	ImageRepository string `json:"imageRepository,omitempty"`
    
    	// ImageTag allows to specify a tag for the image.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 03:12:52 UTC 2024
    - 34.5K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/cmd/phases/init/preflight.go

    		Short:   "Run pre-flight checks",
    		Long:    "Run pre-flight checks for kubeadm init.",
    		Example: preflightExample,
    		Run:     runPreflight,
    		InheritFlags: []string{
    			options.CfgPath,
    			options.ImageRepository,
    			options.NodeCRISocket,
    			options.IgnorePreflightErrors,
    			options.DryRun,
    		},
    	}
    }
    
    // runPreflight executes preflight checks logic.
    func runPreflight(c workflow.RunData) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 03:55:23 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/apis/kubeadm/v1beta4/defaults.go

    	if obj.Networking.DNSDomain == "" {
    		obj.Networking.DNSDomain = DefaultServiceDNSDomain
    	}
    
    	if obj.CertificatesDir == "" {
    		obj.CertificatesDir = DefaultCertificatesDir
    	}
    
    	if obj.ImageRepository == "" {
    		obj.ImageRepository = DefaultImageRepository
    	}
    
    	if obj.ClusterName == "" {
    		obj.ClusterName = DefaultClusterName
    	}
    
    	if obj.EncryptionAlgorithm == "" {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 08:34:39 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/apis/kubeadm/types.go

    // originated from the Kubernetes/Kubernetes release process
    type ImageMeta struct {
    	// ImageRepository sets the container registry to pull images from.
    	// if not set, the ImageRepository defined in ClusterConfiguration will be used instead.
    	ImageRepository string
    
    	// ImageTag allows to specify a tag for the image.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 03:12:52 UTC 2024
    - 32.6K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/cmd/phases/init/kubelet.go

    		Example: kubeletStartPhaseExample,
    		Run:     runKubeletStart,
    		InheritFlags: []string{
    			options.CfgPath,
    			options.ImageRepository,
    			options.NodeCRISocket,
    			options.NodeName,
    			options.Patches,
    			options.DryRun,
    		},
    	}
    }
    
    // runKubeletStart executes kubelet start logic.
    func runKubeletStart(c workflow.RunData) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Aug 20 09:18:00 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/cmd/phases/init/addons.go

    }
    
    func getAddonPhaseFlags(name string) []string {
    	flags := []string{
    		options.CfgPath,
    		options.KubeconfigPath,
    		options.KubernetesVersion,
    		options.ImageRepository,
    		options.DryRun,
    	}
    	if name == "all" || name == "kube-proxy" {
    		flags = append(flags,
    			options.APIServerAdvertiseAddress,
    			options.ControlPlaneEndpoint,
    			options.APIServerBindPort,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 10:21:20 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/apis/kubeadm/v1beta4/zz_generated.conversion.go

    		return err
    	}
    	if err := Convert_kubeadm_Proxy_To_v1beta4_Proxy(&in.Proxy, &out.Proxy, s); err != nil {
    		return err
    	}
    	out.CertificatesDir = in.CertificatesDir
    	out.ImageRepository = in.ImageRepository
    	// INFO: in.CIImageRepository opted out of conversion generation
    	out.FeatureGates = *(*map[string]bool)(unsafe.Pointer(&in.FeatureGates))
    	out.ClusterName = in.ClusterName
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 08:34:39 UTC 2024
    - 61.4K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/cmd/phases/init/etcd.go

    		InheritFlags: getEtcdPhaseFlags(),
    	}
    	return phase
    }
    
    func getEtcdPhaseFlags() []string {
    	flags := []string{
    		options.CertificatesDir,
    		options.CfgPath,
    		options.ImageRepository,
    		options.Patches,
    		options.DryRun,
    	}
    	return flags
    }
    
    func runEtcdPhaseLocal() func(c workflow.RunData) error {
    	return func(c workflow.RunData) error {
    		data, ok := c.(InitData)
    		if !ok {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 11 08:02:50 UTC 2022
    - 3.3K bytes
    - Viewed (0)
Back to top