forked from redhat-developer/odo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Pushing this to get some initial feedback on the structure \ of the test cases. * The tests are writting using ginkgo so that it is easier to \ manage the tests going forward * We aren't adhering to the standard requirements of BDD, but \ mapping usecases in ginkgo seems covenient * For starters, we have picked up Usecase redhat-developer#5
- Loading branch information
Showing
215 changed files
with
191,650 additions
and
52 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
#!/bin/sh | ||
|
||
# Config | ||
oc_bin_source='https://github.com/openshift/origin/releases/download/v3.7.1/openshift-origin-client-tools-v3.7.1-ab0f056-linux-64bit.tar.gz' | ||
|
||
wget $oc_bin_source -O /tmp/oc.tar.gz 2> /dev/null > /dev/null | ||
mkdir /tmp/ocdir && cd /tmp/ocdir && tar -xvvf /tmp/oc.tar.gz > /dev/null | ||
mv /tmp/ocdir/*/oc /usr/bin/ | ||
tmp=`mktemp` | ||
echo 'DOCKER_OPTS="$DOCKER_OPTS --insecure-registry 172.30.0.0/16"' > ${tmp} | ||
sudo mv ${tmp} /etc/default/docker | ||
sudo service docker restart | ||
oc cluster up |
Oops, something went wrong.