mirror of
https://github.com/redhat-developer/odo.git
synced 2025-10-19 03:06:19 +03:00
* Removes code related to s2i storage * Removes unused variables and added some comments * Updates the kind in some of the unit tests
8 lines
196 B
Go
8 lines
196 B
Go
package storage
|
|
|
|
func generateStorage(storage Storage, status StorageStatus, containerName string) Storage {
|
|
storage.Status = status
|
|
storage.Spec.ContainerName = containerName
|
|
return storage
|
|
}
|