Skip to content

Commit 0ac2242

Browse files
Update tests to take into account removal of start node
1 parent f99ea32 commit 0ac2242

File tree

5 files changed

+9
-35
lines changed

5 files changed

+9
-35
lines changed

hack/lib/start.sh

+3-5
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

pkg/oc/clusterup/coreinstall/kubelet/flags.go

+1-3
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,6 @@ func (opt KubeletStartFlags) MakeKubeletFlags(dockerClient dockerhelper.Interfac
3636
}
3737

3838
createFlagsCmd := []string{
39-
"start", "node",
40-
"--write-flags",
4139
"--config=/var/lib/origin/openshift.local.config/node/node-config.yaml",
4240
}
4341

@@ -46,7 +44,7 @@ func (opt KubeletStartFlags) MakeKubeletFlags(dockerClient dockerhelper.Interfac
4644
Bind(binds...).
4745
Env(env...).
4846
SaveContainerLogs(componentName, path.Join(basedir, "logs")).
49-
Entrypoint("openshift").
47+
Entrypoint("openshift-node-config").
5048
Command(createFlagsCmd...).Output()
5149
if err != nil {
5250
return "", errors.NewError("could not run %q: %v", componentName, err).WithCause(err)

test/cmd/admin.sh

+1-2
Original file line numberDiff line numberDiff line change
@@ -32,12 +32,11 @@ os::test::junit::declare_suite_start "cmd/admin"
3232

3333
os::test::junit::declare_suite_start "cmd/admin/start"
3434
# Check failure modes of various system commands
35-
os::cmd::expect_failure_and_text 'openshift start network' 'kubeconfig must be set'
35+
os::cmd::expect_failure_and_text 'openshift start network' 'you must specify a configuration file with --config'
3636
os::cmd::expect_failure_and_text 'openshift start network --config=${NODECONFIG} --enable=kubelet' 'the following components are not recognized: kubelet'
3737
os::cmd::expect_failure_and_text 'openshift start network --config=${NODECONFIG} --enable=kubelet,other' 'the following components are not recognized: kubelet, other'
3838
os::cmd::expect_failure_and_text 'openshift start network --config=${NODECONFIG} --disable=other' 'the following components are not recognized: other'
3939
os::cmd::expect_failure_and_text 'openshift start network --config=${NODECONFIG} --disable=dns,proxy,plugins' 'at least one node component must be enabled \(dns, plugins, proxy\)'
40-
os::cmd::expect_failure_and_text 'openshift start --write-config=/tmp/test --hostname=""' 'error: --hostname must have a value'
4140
os::test::junit::declare_suite_end
4241

4342
os::test::junit::declare_suite_start "cmd/admin/manage-node"

test/cmd/help.sh

+4-4
Original file line numberDiff line numberDiff line change
@@ -41,18 +41,18 @@ os::cmd::expect_success_and_text 'oc login --help' 'insecure-skip-tls-verify'
4141

4242
# help for given command with --help flag must be consistent
4343
os::cmd::expect_success_and_text 'oc get --help' 'Display one or many resources'
44-
os::cmd::expect_success_and_text 'openshift start --help' 'Launch OpenShift components'
44+
os::cmd::expect_success_and_text 'openshift start --help' 'Start components of OpenShift'
4545
os::cmd::expect_success_and_text 'openshift start master --help' 'Start a master'
46-
os::cmd::expect_success_and_text 'openshift start network --help' 'Start networking'
46+
os::cmd::expect_success_and_text 'openshift start network --help' 'Start node network'
4747
os::cmd::expect_success_and_text 'oc project --help' 'Switch to another project'
4848
os::cmd::expect_success_and_text 'oc projects --help' 'existing projects'
4949
os::cmd::expect_success_and_text 'oc get --help' 'oc'
5050

5151
# help for given command through help command must be consistent
5252
os::cmd::expect_success_and_text 'oc help get' 'Display one or many resources'
53-
os::cmd::expect_success_and_text 'openshift help start' 'Launch OpenShift components'
53+
os::cmd::expect_success_and_text 'openshift help start' 'Start components of OpenShift'
5454
os::cmd::expect_success_and_text 'openshift help start master' 'Start a master'
55-
os::cmd::expect_success_and_text 'openshift help start node' 'Start a node'
55+
os::cmd::expect_success_and_text 'openshift help start network' 'Start node network'
5656
os::cmd::expect_success_and_text 'oc help project' 'Switch to another project'
5757
os::cmd::expect_success_and_text 'oc help projects' 'current active project and existing projects on the server'
5858

test/util/server/server.go

-21
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,6 @@ import (
3737
"github.com/openshift/origin/pkg/cmd/server/etcd"
3838
"github.com/openshift/origin/pkg/cmd/server/start"
3939
cmdutil "github.com/openshift/origin/pkg/cmd/util"
40-
utilflags "github.com/openshift/origin/pkg/cmd/util/flags"
4140
newproject "github.com/openshift/origin/pkg/oc/cli/admin/project"
4241
projectclient "github.com/openshift/origin/pkg/project/generated/internalclientset/typed/project/internalversion"
4342
"github.com/openshift/origin/test/util"
@@ -320,26 +319,6 @@ func CleanupMasterEtcd(t *testing.T, config *configapi.MasterConfig) {
320319
}
321320
}
322321

323-
func StartConfiguredNode(nodeConfig *configapi.NodeConfig, components *utilflags.ComponentFlag) error {
324-
guardNode()
325-
326-
_, nodePort, err := net.SplitHostPort(nodeConfig.ServingInfo.BindAddress)
327-
if err != nil {
328-
return err
329-
}
330-
331-
if err := start.StartNode(*nodeConfig, components); err != nil {
332-
return err
333-
}
334-
335-
// wait for the server to come up for 30 seconds (average time on desktop is 2 seconds, but Jenkins timed out at 10 seconds)
336-
if err := cmdutil.WaitForSuccessfulDial(true, "tcp", net.JoinHostPort(nodeConfig.NodeName, nodePort), 100*time.Millisecond, 1*time.Second, 30); err != nil {
337-
return err
338-
}
339-
340-
return nil
341-
}
342-
343322
func StartConfiguredMaster(masterConfig *configapi.MasterConfig) (string, error) {
344323
return StartConfiguredMasterWithOptions(masterConfig)
345324
}

0 commit comments

Comments
 (0)