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
eb652814
Commit
eb652814
authored
Aug 22, 2016
by
Lucas Käldström
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove the kubelet container as it's unmaintained
parent
ea805efa
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
59 deletions
+0
-59
Dockerfile
cluster/images/kubelet/Dockerfile
+0
-22
Makefile
cluster/images/kubelet/Makefile
+0
-37
No files found.
cluster/images/kubelet/Dockerfile
deleted
100644 → 0
View file @
ea805efa
# Copyright 2016 The Kubernetes Authors.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
FROM
centos
ADD
kubelet /kubelet
RUN
chmod
a+rx /kubelet
RUN
cp
/usr/bin/nsenter /nsenter
VOLUME
/var/lib/docker
VOLUME
/var/lib/kubelet
CMD
[ "/kubelet" ]
cluster/images/kubelet/Makefile
deleted
100644 → 0
View file @
ea805efa
# Copyright 2016 The Kubernetes Authors.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# build the kubelet image.
# TODO: figure out the best base image
# TODO: figure out how to best source the nsenter binary, if necessary
# TODO: figure out how to make a single source of version info for these
# images
VERSION
=
v0.16
BIN_DIR
=
bin/linux/amd64
LOCAL_OUTPUT_DIR
=
../../../_output/local
release
:
clean
curl
-O
https://storage.googleapis.com/kubernetes-release/release/
${
VERSION
}
/
${
BIN_DIR
}
/kubelet
docker build
-t
gcr.io/google_containers/kubelet:
${
VERSION
}
.
gcloud docker push gcr.io/google_containers/kubelet:
${
VERSION
}
local
:
clean
cp
${
LOCAL_OUTPUT_DIR
}
/
${
BIN_DIR
}
/kubelet .
docker build
-t
gcr.io/google_containers/kubelet .
clean
:
rm
-f
kubelet
.PHONY
:
release
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