本文整理匯總了Golang中k8s/io/kubernetes/pkg/api.Volume.GitRepo方法的典型用法代碼示例。如果您正苦於以下問題:Golang Volume.GitRepo方法的具體用法?Golang Volume.GitRepo怎麽用?Golang Volume.GitRepo使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類k8s/io/kubernetes/pkg/api.Volume
的用法示例。
在下文中一共展示了Volume.GitRepo方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Golang代碼示例。
示例1: writePodVolume
func writePodVolume(m map[string]interface{}, item *api.Volume) {
if x, ok := m["name"].(string); ok {
item.Name = x
}
if n, ok := extractSingleMap(m["host_path"]); ok {
item.HostPath = &api.HostPathVolumeSource{}
if x, ok := n["path"].(string); ok {
item.HostPath.Path = x
}
}
if n, ok := extractSingleMap(m["empty_dir"]); ok {
item.EmptyDir = &api.EmptyDirVolumeSource{}
if x, ok := n["medium"].(string); ok {
item.EmptyDir.Medium = api.StorageMedium(x)
}
}
if n, ok := extractSingleMap(m["gce_persistent_disk"]); ok {
item.GCEPersistentDisk = &api.GCEPersistentDiskVolumeSource{}
if x, ok := n["pd_name"].(string); ok {
item.GCEPersistentDisk.PDName = x
}
if x, ok := n["fs_type"].(string); ok {
item.GCEPersistentDisk.FSType = x
}
if x, ok := n["partition"].(int); ok {
item.GCEPersistentDisk.Partition = x
}
if x, ok := n["read_only"].(bool); ok {
item.GCEPersistentDisk.ReadOnly = x
}
}
if n, ok := extractSingleMap(m["aws_elastic_block_store"]); ok {
item.AWSElasticBlockStore = &api.AWSElasticBlockStoreVolumeSource{}
if x, ok := n["volume_id"].(string); ok {
item.AWSElasticBlockStore.VolumeID = x
}
if x, ok := n["fs_type"].(string); ok {
item.AWSElasticBlockStore.FSType = x
}
if x, ok := n["partition"].(int); ok {
item.AWSElasticBlockStore.Partition = x
}
if x, ok := n["read_only"].(bool); ok {
item.AWSElasticBlockStore.ReadOnly = x
}
}
if n, ok := extractSingleMap(m["git_repo"]); ok {
item.GitRepo = &api.GitRepoVolumeSource{}
if x, ok := n["repository"].(string); ok {
item.GitRepo.Repository = x
}
if x, ok := n["revision"].(string); ok {
item.GitRepo.Revision = x
}
if x, ok := n["directory"].(string); ok {
item.GitRepo.Directory = x
}
}
if n, ok := extractSingleMap(m["secret"]); ok {
item.Secret = &api.SecretVolumeSource{}
if x, ok := n["secret_name"].(string); ok {
item.Secret.SecretName = x
}
}
// TODO:
// NFS *NFSVolumeSource
// ISCSI *ISCSIVolumeSource
// Glusterfs *GlusterfsVolumeSource
// PersistentVolumeClaim *PersistentVolumeClaimVolumeSource
// RBD *RBDVolumeSource
// FlexVolume *FlexVolumeSource
// Cinder *CinderVolumeSource
// CephFS *CephFSVolumeSource
// Flocker *FlockerVolumeSource
// DownwardAPI *DownwardAPIVolumeSource
// FC *FCVolumeSource
// AzureFile *AzureFileVolumeSource
// ConfigMap *ConfigMapVolumeSource
}