mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-08-03 17:30:00 +00:00
Rename aws_pd -> aws_ebs
This commit is contained in:
parent
933cf60af7
commit
503e19e58c
@ -25,7 +25,7 @@ import (
|
|||||||
"github.com/GoogleCloudPlatform/kubernetes/pkg/kubelet/network/exec"
|
"github.com/GoogleCloudPlatform/kubernetes/pkg/kubelet/network/exec"
|
||||||
// Volume plugins
|
// Volume plugins
|
||||||
"github.com/GoogleCloudPlatform/kubernetes/pkg/volume"
|
"github.com/GoogleCloudPlatform/kubernetes/pkg/volume"
|
||||||
"github.com/GoogleCloudPlatform/kubernetes/pkg/volume/aws_pd"
|
"github.com/GoogleCloudPlatform/kubernetes/pkg/volume/aws_ebs"
|
||||||
"github.com/GoogleCloudPlatform/kubernetes/pkg/volume/empty_dir"
|
"github.com/GoogleCloudPlatform/kubernetes/pkg/volume/empty_dir"
|
||||||
"github.com/GoogleCloudPlatform/kubernetes/pkg/volume/gce_pd"
|
"github.com/GoogleCloudPlatform/kubernetes/pkg/volume/gce_pd"
|
||||||
"github.com/GoogleCloudPlatform/kubernetes/pkg/volume/git_repo"
|
"github.com/GoogleCloudPlatform/kubernetes/pkg/volume/git_repo"
|
||||||
@ -50,7 +50,7 @@ func ProbeVolumePlugins() []volume.VolumePlugin {
|
|||||||
// The list of plugins to probe is decided by the kubelet binary, not
|
// The list of plugins to probe is decided by the kubelet binary, not
|
||||||
// by dynamic linking or other "magic". Plugins will be analyzed and
|
// by dynamic linking or other "magic". Plugins will be analyzed and
|
||||||
// initialized later.
|
// initialized later.
|
||||||
allPlugins = append(allPlugins, aws_pd.ProbeVolumePlugins()...)
|
allPlugins = append(allPlugins, aws_ebs.ProbeVolumePlugins()...)
|
||||||
allPlugins = append(allPlugins, empty_dir.ProbeVolumePlugins()...)
|
allPlugins = append(allPlugins, empty_dir.ProbeVolumePlugins()...)
|
||||||
allPlugins = append(allPlugins, gce_pd.ProbeVolumePlugins()...)
|
allPlugins = append(allPlugins, gce_pd.ProbeVolumePlugins()...)
|
||||||
allPlugins = append(allPlugins, git_repo.ProbeVolumePlugins()...)
|
allPlugins = append(allPlugins, git_repo.ProbeVolumePlugins()...)
|
||||||
|
@ -14,7 +14,7 @@ See the License for the specific language governing permissions and
|
|||||||
limitations under the License.
|
limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package aws_pd
|
package aws_ebs
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"fmt"
|
"fmt"
|
@ -14,7 +14,7 @@ See the License for the specific language governing permissions and
|
|||||||
limitations under the License.
|
limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package aws_pd
|
package aws_ebs
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"os"
|
"os"
|
@ -14,7 +14,7 @@ See the License for the specific language governing permissions and
|
|||||||
limitations under the License.
|
limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package aws_pd
|
package aws_ebs
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"errors"
|
"errors"
|
@ -14,7 +14,7 @@ See the License for the specific language governing permissions and
|
|||||||
limitations under the License.
|
limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package aws_pd
|
package aws_ebs
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"fmt"
|
"fmt"
|
Loading…
Reference in New Issue
Block a user