Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for GetVolumes (0.24 sec)

  1. cmd/kubeadm/app/phases/controlplane/manifests.go

    			Resources:       staticpodutil.ComponentResources("250m"),
    			Env:             kubeadmutil.MergeKubeadmEnvVars(proxyEnvs, cfg.APIServer.ExtraEnvs),
    		}, mounts.GetVolumes(kubeadmconstants.KubeAPIServer),
    			map[string]string{kubeadmconstants.KubeAPIServerAdvertiseAddressEndpointAnnotationKey: endpoint.String()}),
    		kubeadmconstants.KubeControllerManager: staticpodutil.ComponentPod(v1.Container{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Mar 03 14:43:47 UTC 2024
    - 17.8K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/phases/controlplane/volumes.go

    		hostPathType := extraVol.PathType
    		c.NewHostPathMount(component, extraVol.Name, extraVol.HostPath, extraVol.MountPath, extraVol.ReadOnly, &hostPathType)
    	}
    }
    
    func (c *controlPlaneHostPathMounts) GetVolumes(component string) map[string]v1.Volume {
    	return c.volumes[component]
    }
    
    func (c *controlPlaneHostPathMounts) GetVolumeMounts(component string) map[string]v1.VolumeMount {
    	return c.volumeMounts[component]
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 09:33:18 UTC 2024
    - 11.3K bytes
    - Viewed (0)
Back to top