Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for GetVolumes (0.16 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)
  3. operator/pkg/apis/istio/v1alpha1/values_types.pb.go

    	}
    	return nil
    }
    
    func (x *PilotConfig) GetVolumeMounts() []*v1.VolumeMount {
    	if x != nil {
    		return x.VolumeMounts
    	}
    	return nil
    }
    
    func (x *PilotConfig) GetVolumes() []*v1.Volume {
    	if x != nil {
    		return x.Volumes
    	}
    	return nil
    }
    
    func (x *PilotConfig) GetIpFamilies() []string {
    	if x != nil {
    		return x.IpFamilies
    	}
    	return nil
    }
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 329.6K bytes
    - Viewed (0)
Back to top