Documentation ¶
Index ¶
- func Create(client *occlient.Client, name string, size string, componentName string, ...) (*corev1.PersistentVolumeClaim, error)
- func Delete(client *occlient.Client, name string) error
- func Exists(client *occlient.Client, storageName string, applicationName string) (bool, error)
- func GetComponentNameFromStorageName(client *occlient.Client, storageName string) (string, error)
- func GetStorageNameFromMountPath(client *occlient.Client, path string, componentName string, ...) (string, error)
- func IsMounted(client *occlient.Client, storageName string, componentName string, ...) (bool, error)
- func Mount(client *occlient.Client, path string, storageName string, componentName string, ...) error
- func Push(client *occlient.Client, storageList StorageList, ...) (map[string]*corev1.PersistentVolumeClaim, map[string]string, error)
- func Unmount(client *occlient.Client, storageName string, componentName string, ...) error
- type Storage
- type StorageList
- func GetMachineReadableFormatForList(storage []Storage) StorageList
- func List(client *occlient.Client, componentName string, applicationName string) (StorageList, error)
- func ListMounted(client *occlient.Client, componentName string, applicationName string) (StorageList, error)
- func ListUnmounted(client *occlient.Client, applicationName string) (StorageList, error)
- type StorageSpec
- type StorageStatus
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func Create ¶ added in v0.0.4
func Create(client *occlient.Client, name string, size string, componentName string, applicationName string) (*corev1.PersistentVolumeClaim, error)
Create adds storage to given component of given application
func Delete ¶ added in v0.0.6
Delete removes storage from the given application. Delete returns the component name, if it is mounted to a component, or "" and the error, if any
func GetComponentNameFromStorageName ¶ added in v0.0.6
GetComponentNameFromStorageName returns the component name associated with the storageName, if any, or ""
func GetStorageNameFromMountPath ¶ added in v0.0.7
func GetStorageNameFromMountPath(client *occlient.Client, path string, componentName string, applicationName string) (string, error)
Gets the storageName mounted to the given path in the given component and application GetStorageNameFromMountPath returns the name of the storage or the error
func IsMounted ¶ added in v0.0.6
func IsMounted(client *occlient.Client, storageName string, componentName string, applicationName string) (bool, error)
IsMounted checks if the given storage is mounted to the given component IsMounted returns a bool indicating the storage is mounted to the component or not
func Mount ¶ added in v0.0.6
func Mount(client *occlient.Client, path string, storageName string, componentName string, applicationName string) error
Mount mounts the given storage to the given component
func Push ¶ added in v1.0.0
func Push(client *occlient.Client, storageList StorageList, componentName, applicationName string, isComponentExits bool) (map[string]*corev1.PersistentVolumeClaim, map[string]string, error)
Push creates/deletes the required storage during `odo push` storageList are the storage mentioned in the config isComponentExists indicates if the component exists or not, if not, we don't run the list operation returns the storage for mounting and unMounting from the DC StorageToBeMounted describes the storage to be mounted StorageToBeMounted : storagePath is the key of the map, the generatedPVC is the value of the map StorageToBeUnMounted describes the storage to be unmounted StorageToBeUnMounted : path is the key of the map,storageName is the value of the map
func Unmount ¶ added in v0.0.6
func Unmount(client *occlient.Client, storageName string, componentName string, applicationName string, updateLabels bool) error
Unmount unmounts the given storage from the given component updateLabels is a flag to whether update Label or not, so updation of label is not required in delete call but required in unmount call this is introduced as causing unnecessary delays
Types ¶
type Storage ¶ added in v0.0.19
type Storage struct { metav1.TypeMeta `json:",inline"` metav1.ObjectMeta `json:"metadata,omitempty"` Spec StorageSpec `json:"spec,omitempty"` Status StorageStatus `json:"status,omitempty"` }
Storage
func GetMachineReadableFormat ¶ added in v1.0.0
GetMachineReadableFormat gives machine readable Storage definition storagePath indicates the path to which the storage is mounted to, "" if not mounted
type StorageList ¶ added in v0.0.19
type StorageList struct { metav1.TypeMeta `json:",inline"` metav1.ListMeta `json:"metadata,omitempty"` Items []Storage `json:"items"` }
StorageList is a list of storages
func GetMachineReadableFormatForList ¶ added in v1.0.0
func GetMachineReadableFormatForList(storage []Storage) StorageList
GetMachineReadableFormatForList gives machine readable StorageList definition
func List ¶
func List(client *occlient.Client, componentName string, applicationName string) (StorageList, error)
List lists all the mounted storage associated with the given component of the given application and the unmounted storage in the given application
func ListMounted ¶ added in v0.0.10
func ListMounted(client *occlient.Client, componentName string, applicationName string) (StorageList, error)
ListMounted lists all the mounted storage associated with the given component and application
func ListUnmounted ¶ added in v0.0.10
func ListUnmounted(client *occlient.Client, applicationName string) (StorageList, error)
ListUnmounted lists all the unmounted storage associated with the given application
func (StorageList) Get ¶ added in v0.0.20
func (storages StorageList) Get(storageName string) Storage
Get returns Storage defination for given Storage name
type StorageSpec ¶ added in v0.0.19
type StorageSpec struct {
Size string `json:"size,omitempty"`
}
StorageSpec indicates size and path of storage
type StorageStatus ¶ added in v0.0.19
type StorageStatus struct { // if path is empty, it indicates that the storage is not mounted in any component Path string `json:"path,omitempty"` }
StorageStatus is status of storage