Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
K
k3s
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Jacklull
k3s
Commits
503e19e5
Commit
503e19e5
authored
Apr 09, 2015
by
Justin Santa Barbara
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Rename aws_pd -> aws_ebs
parent
933cf60a
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
6 additions
and
6 deletions
+6
-6
plugins.go
cmd/kubelet/app/plugins.go
+2
-2
aws_pd.go
pkg/volume/aws_ebs/aws_pd.go
+1
-1
aws_pd_test.go
pkg/volume/aws_ebs/aws_pd_test.go
+1
-1
aws_util.go
pkg/volume/aws_ebs/aws_util.go
+1
-1
aws_util_test.go
pkg/volume/aws_ebs/aws_util_test.go
+1
-1
No files found.
cmd/kubelet/app/plugins.go
View file @
503e19e5
...
@@ -25,7 +25,7 @@ import (
...
@@ -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 {
...
@@ -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
()
...
)
...
...
pkg/volume/aws_
pd
/aws_pd.go
→
pkg/volume/aws_
ebs
/aws_pd.go
View file @
503e19e5
...
@@ -14,7 +14,7 @@ See the License for the specific language governing permissions and
...
@@ -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"
...
...
pkg/volume/aws_
pd
/aws_pd_test.go
→
pkg/volume/aws_
ebs
/aws_pd_test.go
View file @
503e19e5
...
@@ -14,7 +14,7 @@ See the License for the specific language governing permissions and
...
@@ -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"
...
...
pkg/volume/aws_
pd
/aws_util.go
→
pkg/volume/aws_
ebs
/aws_util.go
View file @
503e19e5
...
@@ -14,7 +14,7 @@ See the License for the specific language governing permissions and
...
@@ -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"
...
...
pkg/volume/aws_
pd
/aws_util_test.go
→
pkg/volume/aws_
ebs
/aws_util_test.go
View file @
503e19e5
...
@@ -14,7 +14,7 @@ See the License for the specific language governing permissions and
...
@@ -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"
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment