Skip to content

Commit b5f4f96

Browse files
Merge pull request #20344 from smarterclayton/goodbye_kubelet
Remove `openshift start node` and cut kubelet dependencies
2 parents e2fd943 + 0ac2242 commit b5f4f96

37 files changed

+333
-2730
lines changed

contrib/completions/bash/openshift

-453
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

contrib/completions/zsh/openshift

-453
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

contrib/systemd/atomic-openshift-node.service

-22
This file was deleted.

contrib/systemd/origin-node.service

-21
This file was deleted.

contrib/systemd/origin-node.sysconfig

-15
This file was deleted.

contrib/vagrant/provision-master.sh

-16
Original file line numberDiff line numberDiff line change
@@ -44,19 +44,3 @@ cmd="/usr/bin/openshift start master --loglevel=${LOG_LEVEL} \
4444
--network-plugin=${NETWORK_PLUGIN}"
4545
os::provision::start-os-service "openshift-master" "OpenShift Master" \
4646
"${cmd}" "${DEPLOYED_CONFIG_ROOT}"
47-
48-
if [[ "${SDN_NODE}" = "true" ]]; then
49-
os::provision::start-node-service "${DEPLOYED_CONFIG_ROOT}" \
50-
"${SDN_NODE_NAME}"
51-
52-
# Disable scheduling for the sdn node - its purpose is only to ensure
53-
# pod network connectivity on the master.
54-
#
55-
# This will be performed separately for dind to allow as much time
56-
# as possible for the node to register itself. Vagrant can deploy
57-
# in parallel but dind deploys serially for simplicity.
58-
if ! os::provision::in-container; then
59-
os::provision::disable-node "${OS_ROOT}" "${DEPLOYED_CONFIG_ROOT}" \
60-
"${SDN_NODE_NAME}"
61-
fi
62-
fi

contrib/vagrant/provision-node.sh

-27
This file was deleted.

contrib/vagrant/provision-util.sh

-10
Original file line numberDiff line numberDiff line change
@@ -317,16 +317,6 @@ os::provision::copy-config() {
317317
fi
318318
}
319319

320-
os::provision::start-node-service() {
321-
local config_root=$1
322-
local node_name=$2
323-
324-
cmd="/usr/bin/openshift start node --loglevel=${LOG_LEVEL} \
325-
--config=$(os::provision::get-node-config ${config_root} ${node_name})"
326-
os::provision::start-os-service "openshift-node" "OpenShift Node" "${cmd}" \
327-
"${config_root}"
328-
}
329-
330320
OS_WAIT_FOREVER=-1
331321
os::provision::wait-for-condition() {
332322
local msg=$1

docs/man/man1/.files_generated_openshift

-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/man/man1/openshift-start-node.1

-3
This file was deleted.

docs/man/man1/openshift-start-template-service-broker.1

-3
This file was deleted.

hack/lib/start.sh

+5-11
Original file line numberDiff line numberDiff line change
@@ -129,16 +129,14 @@ function os::start::internal::configure_master() {
129129
openshift_executable="$(os::start::internal::openshift_executable "${version}")"
130130

131131
os::log::debug "Creating master configuration for the OpenShift server"
132-
${openshift_executable} start \
132+
${openshift_executable} start master \
133133
--create-certs=false \
134134
--images="${USE_IMAGES}" \
135135
--master="${MASTER_ADDR}" \
136-
--dns="tcp://${API_HOST}:53" \
137-
--hostname="${KUBELET_HOST}" \
138-
--volume-dir="${VOLUME_DIR}" \
136+
--dns="tcp://${API_HOST}:8053" \
139137
--etcd-dir="${ETCD_DATA_DIR}" \
140138
--network-plugin="${NETWORK_PLUGIN:-}" \
141-
--write-config="${SERVER_CONFIG_DIR}" \
139+
--write-config="${SERVER_CONFIG_DIR}/master" \
142140
--listen="${API_SCHEME}://${API_BIND_HOST}:${API_PORT}" \
143141
--public-master="${API_SCHEME}://${PUBLIC_MASTER_HOST}:${API_PORT}"
144142

@@ -474,11 +472,7 @@ function os::start::internal::start_node() {
474472

475473
os::log::debug "Starting OpenShift node"
476474
local openshift_env=( "OPENSHIFT_ON_PANIC=crash" )
477-
$(os::start::internal::openshift_executable) openshift start node \
478-
--config="${NODE_CONFIG_DIR}/node-config.yaml" \
479-
--loglevel=4 --logspec='*importer=5' \
480-
--latest-images="${use_latest_images}" \
481-
&>"${LOG_DIR}/node.log" &
475+
$(which hyperkube) kubelet $(openshift-node-config --config="${NODE_CONFIG_DIR}/node-config.yaml" --loglevel=4) &>"${LOG_DIR}/node.log" &
482476
export NODE_PID=$!
483477

484478
os::log::debug "OpenShift node start at: $( date )"
@@ -543,7 +537,7 @@ function os::start::internal::determine_hostnames() {
543537
local hostnames
544538
hostnames="${PUBLIC_MASTER_HOST},"
545539
hostnames+="localhost,172.30.0.1,"
546-
for address in $(openshift start --print-ip); do
540+
for address in $(openshift start master --print-ip); do
547541
hostnames+="${address},"
548542
done
549543
hostnames+="kubernetes.default.svc.cluster.local,"

hack/lib/util/environment.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ readonly -f os::util::environment::setup_tmpdir_vars
169169
function os::util::environment::setup_kubelet_vars() {
170170
KUBELET_SCHEME="${KUBELET_SCHEME:-https}"
171171
export KUBELET_SCHEME
172-
KUBELET_BIND_HOST="${KUBELET_BIND_HOST:-$(openshift start --print-ip || echo "127.0.0.1")}"
172+
KUBELET_BIND_HOST="${KUBELET_BIND_HOST:-$(openshift start master --print-ip || echo "127.0.0.1")}"
173173
export KUBELET_BIND_HOST
174174
KUBELET_HOST="${KUBELET_HOST:-${KUBELET_BIND_HOST}}"
175175
export KUBELET_HOST
@@ -232,7 +232,7 @@ function os::util::environment::setup_server_vars() {
232232
KUBE_CACHE_MUTATION_DETECTOR="${KUBE_CACHE_MUTATION_DETECTOR:-true}"
233233
export KUBE_CACHE_MUTATION_DETECTOR
234234

235-
API_BIND_HOST="${API_BIND_HOST:-$(openshift start --print-ip || echo "127.0.0.1")}"
235+
API_BIND_HOST="${API_BIND_HOST:-$(openshift start master --print-ip || echo "127.0.0.1")}"
236236
export API_BIND_HOST
237237
API_HOST="${API_HOST:-${API_BIND_HOST}}"
238238
export API_HOST

images/node/scripts/origin-node-run.sh

-10
This file was deleted.

origin.spec

+1-13
Original file line numberDiff line numberDiff line change
@@ -135,16 +135,9 @@ Summary: %{product_name} Test Suite
135135

136136
%package node
137137
Summary: %{product_name} Node
138-
Requires: %{name} = %{version}-%{release}
139138
Requires: %{name}-hyperkube = %{version}-%{release}
140-
Requires: docker >= %{docker_version}
141139
Requires: util-linux
142140
Requires: socat
143-
Requires: nfs-utils
144-
Requires: cifs-utils
145-
Requires: ethtool
146-
Requires: device-mapper-persistent-data >= 0.6.2
147-
Requires: conntrack-tools
148141
Requires(post): systemd
149142
Requires(preun): systemd
150143
Requires(postun): systemd
@@ -187,6 +180,7 @@ Requires: bridge-utils
187180
Requires: ethtool
188181
Requires: procps-ng
189182
Requires: iproute
183+
Requires: conntrack-tools
190184
Obsoletes: openshift-sdn-ovs < %{package_refactor_version}
191185

192186
%description sdn-ovs
@@ -308,11 +302,6 @@ done
308302

309303
install -d -m 0755 %{buildroot}%{_sysconfdir}/origin/{master,node}
310304

311-
# different service for origin vs aos
312-
# install -m 0644 contrib/systemd/%{name}-node.service %{buildroot}%{_unitdir}/%{name}-node.service
313-
# same sysconfig files for origin vs aos
314-
install -m 0644 contrib/systemd/origin-node.sysconfig %{buildroot}%{_sysconfdir}/sysconfig/%{name}-node
315-
316305
# Install man1 man pages
317306
install -d -m 0755 %{buildroot}%{_mandir}/man1
318307
install -m 0644 docs/man/man1/* %{buildroot}%{_mandir}/man1/
@@ -394,7 +383,6 @@ touch --reference=%{SOURCE0} $RPM_BUILD_ROOT/usr/sbin/%{name}-docker-excluder
394383
%files node
395384
%{_bindir}/openshift-node-config
396385
%{_sysconfdir}/systemd/system.conf.d/origin-accounting.conf
397-
%config(noreplace) %{_sysconfdir}/sysconfig/%{name}-node
398386
%defattr(-,root,root,0700)
399387
%config(noreplace) %{_sysconfdir}/origin/node
400388

pkg/cmd/openshift/openshift.go

+5-6
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ import (
1111
"github.com/spf13/cobra"
1212
"github.com/spf13/pflag"
1313

14+
"k8s.io/apimachinery/pkg/util/wait"
1415
kcmd "k8s.io/kubernetes/pkg/kubectl/cmd"
1516
ktemplates "k8s.io/kubernetes/pkg/kubectl/cmd/templates"
1617
kcmdutil "k8s.io/kubernetes/pkg/kubectl/cmd/util"
@@ -27,10 +28,7 @@ var (
2728
openshiftLong = ktemplates.LongDesc(`
2829
%[2]s
2930
30-
The %[3]s helps you build, deploy, and manage your applications on top of
31-
Docker containers. To start an all-in-one server with the default configuration, run:
32-
33-
$ %[1]s start &`)
31+
The %[3]s helps you build, deploy, and manage containerized applications.`)
3432
)
3533

3634
// CommandFor returns the appropriate command for this base name,
@@ -68,8 +66,8 @@ func NewCommandOpenShift(name string) *cobra.Command {
6866
Run: kcmdutil.DefaultSubCommandRun(out),
6967
}
7068

71-
startAllInOne, _ := start.NewCommandStartAllInOne(name, out, errout)
72-
root.AddCommand(startAllInOne)
69+
root.AddCommand(start.NewCommandStart(name, out, errout, wait.NeverStop))
70+
7371
root.AddCommand(newCompletionCommand("completion", name+" completion"))
7472
root.AddCommand(cmdversion.NewCmdVersion(name, osversion.Get(), os.Stdout))
7573
root.AddCommand(newCmdOptions())
@@ -125,6 +123,7 @@ var (
125123
* zsh completions are only supported in versions of zsh >= 5.2`)
126124
)
127125

126+
// NewCmdCompletion creates a completion command.
128127
func NewCmdCompletion(fullName string, out io.Writer) *cobra.Command {
129128
cmdHelpName := fullName
130129

pkg/cmd/server/kubernetes/node/doc.go

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
package node

pkg/cmd/server/kubernetes/node/node.go

-78
This file was deleted.

pkg/cmd/server/kubernetes/node/options/options.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ func setIfUnset(cmdLineArgs map[string][]string, key string, value ...string) {
136136
}
137137
}
138138

139-
// Some flags are *required* to be set when running from openshift start node. This ensures they are set.
139+
// Some flags are *required* to be set when running from openshift-node-config. This ensures they are set.
140140
// If they are not set, we fail. This is compensating for some lost integration tests.
141141
func CheckFlags(args []string) error {
142142
if needle := "--authentication-token-webhook=true"; !hasArg(needle, args) {

0 commit comments

Comments
 (0)