diff --git a/README.rst b/README.rst index 4d7739fc6..d5ebd7e3c 100644 --- a/README.rst +++ b/README.rst @@ -96,7 +96,7 @@ Configure Environment and Run installation of DCOS:: dcos config set core.dcos_url http://dcos-ea-1234.us-west-2.elb.amazonaws.com - dcos config append package.sources https://github.com/mesosphere/universe/archive/version-1.x.zip + dcos config append package.sources https://universe.mesosphere.com/repo dcos config set package.cache /tmp/dcos dcos package update diff --git a/bin/install/install-dcos-cli.sh b/bin/install/install-dcos-cli.sh index 3aab1f281..3a3017482 100755 --- a/bin/install/install-dcos-cli.sh +++ b/bin/install/install-dcos-cli.sh @@ -114,7 +114,7 @@ dcos config set core.dcos_url $DCOS_URL dcos config set core.ssl_verify false dcos config set core.timeout 5 dcos config set package.cache ~/.dcos/cache -dcos config set package.sources '["https://github.com/mesosphere/universe/archive/version-1.x.zip"]' +dcos config set package.sources '["https://universe.mesosphere.com/repo"]' dcos package update ADD_PATH="" diff --git a/bin/install/install-optout-dcos-cli.sh b/bin/install/install-optout-dcos-cli.sh index 4a4eb40df..41ba7b21c 100755 --- a/bin/install/install-optout-dcos-cli.sh +++ b/bin/install/install-optout-dcos-cli.sh @@ -115,7 +115,7 @@ dcos config set core.dcos_url $DCOS_URL dcos config set core.ssl_verify false dcos config set core.timeout 5 dcos config set package.cache ~/.dcos/cache -dcos config set package.sources '["https://github.com/mesosphere/universe/archive/version-1.x.zip"]' +dcos config set package.sources '["https://universe.mesosphere.com/repo"]' dcos package update ADD_PATH="" diff --git a/cli/tests/integrations/test_config.py b/cli/tests/integrations/test_config.py index d616f5996..bf9c8033a 100644 --- a/cli/tests/integrations/test_config.py +++ b/cli/tests/integrations/test_config.py @@ -180,12 +180,12 @@ def test_prepend_empty_list(env): def test_append_list(env): _append_value( 'package.sources', - 'https://github.com/mesosphere/universe/archive/version-2.x.zip', + 'https://universe.mesosphere.com/repo', env) _get_value( 'package.sources', ['https://github.com/mesosphere/universe/archive/cli-test-3.zip', - 'https://github.com/mesosphere/universe/archive/version-2.x.zip'], + 'https://universe.mesosphere.com/repo'], env) config_unset('package.sources', '1', env) @@ -193,11 +193,11 @@ def test_append_list(env): def test_prepend_list(env): _prepend_value( 'package.sources', - 'https://github.com/mesosphere/universe/archive/version-2.x.zip', + 'https://universe.mesosphere.com/repo', env) _get_value( 'package.sources', - ['https://github.com/mesosphere/universe/archive/version-2.x.zip', + ['https://universe.mesosphere.com/repo', 'https://github.com/mesosphere/universe/archive/cli-test-3.zip'], env) config_unset('package.sources', '0', env) diff --git a/win_bin/install/install-dcos-cli.ps1 b/win_bin/install/install-dcos-cli.ps1 index b10be6cff..9ce0eca59 100644 --- a/win_bin/install/install-dcos-cli.ps1 +++ b/win_bin/install/install-dcos-cli.ps1 @@ -104,7 +104,7 @@ dcos config set core.reporting true dcos config set core.dcos_url $dcos_url dcos config set core.timeout 5 dcos config set package.cache $env:temp\dcos\package-cache -dcos config set package.sources '[\"https://github.com/mesosphere/universe/archive/version-1.x.zip\"]' +dcos config set package.sources '[\"https://universe.mesosphere.com/repo\"]' dcos package update