The Hawkular team is doing some work to develop a Hawkular Agent for running within an Open Shift environment. Since the Go Programming Language ("Go") seems to be the language de jour and many things within the Open Shift infrastructure is developed in Go, the first attempt at this new Hawkular Agent will also be implemented in Go.
Because of this, I needed to get a development environment up and running that included both Open Shift and Go. This blog is simply my notes on how I did this.
INSTALL "GO"
Go isn’t necessary to install and run Open Shift, but because I want to write a Go application, I need it.
INSTALL CORE GO SYSTEM
* Create the directory where Go is to be installed
mkdir $HOME/bin/go-install (this is where Go will be installed)
* Create the Go workspace (GOPATH will end up pointing to here)
mkdir $HOME/source/go
mkdir $HOME/source/go/bin
mkdir $HOME/source/go/pkg
mkdir $HOME/source/go/src
* Download go package from https://golang.org/dl/
cd /tmp
wget https://storage.googleapis.com/golang/go1.7.1.linux-amd64.tar.gz
* Unpack the tar in the $HOME/bin/go-install - should end up inside a subdirectory "go"
cd $HOME/bin/go-install
tar xzvf /tmp/go*.tar.gz
* Set up your shell environment so you can run Go
** Put the following Inside .bashrc
export GOROOT=${HOME}/bin/go-install/go
export PATH=${PATH}:${GOROOT}/bin
export GOPATH=${HOME}/source/go
* Make sure Go is working before going on - run “go version” to confirm. I like to log completely out and then back in again so my bash script gets loaded for all my shells.
INSTALL ADDITIONAL GO TOOLS
* Download and install guru
cd $HOME/bin/go-install/go/bin
go get golang.org/x/tools/cmd/guru
go build golang.org/x/tools/cmd/guru
** The above puts the "guru" executable in your current directory (which should be $HOME/bin/go-install/go/bin)
* Download and install gocode
cd $HOME/bin/go-install/go/bin
go get github.com/nsf/gocode
go build github.com/nsf/gocode
** The above puts the "gocode" executable in your current directory (which should be $HOME/bin/go-install/go/bin)
* Download and install godef
cd $HOME/bin/go-install/go/bin
go get github.com/rogpeppe/godef
go build github.com/rogpeppe/godef
** The above puts the "godef" executable in your current directory (which should be $HOME/bin/go-install/go/bin)
* Download and install godep
cd $HOME/bin/go-install/go/bin
go get github.com/tools/godep
go build github.com/tools/godep
** The above puts the "godep" executable in your current directory (which should be $HOME/bin/go-install/go/bin)
* If you use Eclipse, install GoClipse:
** Plugin Site: http://goclipse.github.io/releases/
** Make sure the GoClipse configuration knows where your Go installation is along with your guru, gocode, and godef executables. See the Go configuration settings in Eclipse preferences.
INSTALL OPEN SHIFT
These instructions will install Open Shift in a virtual machine. So you need to get Vagrant and VirtualBox first before doing anything. And of course Vagrant needs Ruby 2 so you need that before anything. Then you install the Open Shift image.
Note that you may have to change your BIOS settings to enable virtualization. To avoid a VERR_VMX_MSR_ALL_VMX_DISABLED error, I had to do this on my Lenovo laptop in the Security->Virtualization section of the BIOS settings.
These notes follow the instructions found at https://www.openshift.org/vm
(October 5, 2016: Note that the instructions there tell you to not use Vagrant 1.8.5 nor VirtualBox 5.1 - unfortunately, they tell you this all the way at the bottom after the instructions. So if you start at the top and work your way down, you will be frustrated beyond belief until you decide to skip all the way to the bottom and realize this. I emailed the folks maintaining that page to put those notices at the top so people can see these warnings before they start downloading the wrong stuff.)
INSTALL RUBY
If you already have Ruby 2+ installed, you can skip this. This will install RVM and then use that to install Ruby 2. If you skip this step, make sure you have a Ruby 2 installation available before going on to installing and running Vagrant.
* Download and install RVM and Ruby
** You need to accept the GPG key for RVM and install RVM
gpg2 --keyserver hkp://keys.gnupg.net --recv-keys 409B6B1796C275462A1703113804BB82D39DC0E3
curl -L https://get.rvm.io | bash -s stable
rvm autolibs packages
** Now install Ruby 2
rvm install 2.3.0
rvm use --default 2.3.0
ruby -v
INSTALL VAGRANT
* Download and install Vagrant .rpm
** https://releases.hashicorp.com/vagrant/
cd /tmp
wget https://releases.hashicorp.com/vagrant/1.8.4/vagrant_1.8.4_x86_64.rpm
rpm -i vagrant_*.rpm
vagrant version
INSTALL VIRTUAL BOX
* Download and install Virtual Box
** https://www.virtualbox.org/wiki/Downloads
** https://www.virtualbox.org/wiki/Download_Old_Builds
** You must grab it from the Oracle yum repo - we first must add that repo to our system:
sudo wget -P /etc/yum.repos.d http://download.virtualbox.org/virtualbox/rpm/fedora/virtualbox.repo
** If anything goes wrong during the install, you'll want to update your system and reboot - so you may want to do this now:
dnf update
** Make sure the kernel version is expected - these should output the same version string - otherwise, reboot
rpm -qa kernel | sort -V | tail -n 1
uname -r
** Install VirtualBox now
dnf install VirtualBox-5.0
I ran into some problems when I tried to run VirtualBox before I realized I needed to download VirtualBox from the Oracle yum repo. If you download from, say, RPMFusion, these instructions may not work (they did not for me). If you run into problems, you might have to install some additional packages via dnf (such as kernel-devel, kernel-headers, dkms) and perform some additional magic which I do not know which explains why I received a Dreadful grade on my O.W.L. exam.
INSTALL THE OPEN SHIFT IMAGE
* Go to an empty directory where you want to prepare your Vagrantfile
mkdir ${HOME}/openshift
cd ${HOME}/openshift
* Create a Vagrant file that initializes the OpenShift image.
vagrant init openshift/origin-all-in-one
* Run Open Shift inside a VM within VirtualBox
vagrant up --provider=virtualbox
At this point you should have an OpenShift environment running. If any errors occur, a log message should tell you how you can proceed.
You will want to download the Open Shift command line client "oc". Rather than regurgitate the instructions here, simply log into Open Shift using the default "admin" user (password "admin") and go to https://10.2.2.2:8443/console/command-line and follow the instructions there to download, install, and use "oc".
Note that you can SSH into your VM by executing "vagrant ssh"
The Open Shift self-signed certificate found at "/var/lib/origin/openshift.local.config/master/ca.crt" can be used to authenticate clients.
UPGRADE OPEN SHIFT
Should you wish to upgrade the Open Shift VM in the future, the following steps should do it.
* Go to the directory where you ran the VM:
cd ${HOME}/openshift
* Update the image
vagrant box update --box openshift/origin-all-in-one
* Destroy and re-create the VM environment
vagrant destroy --force
vagrant up --provider=virtualbox
REMOVE OPEN SHIFT
Should you wish to remove the Open Shift VM in the future, the following steps should do it.
* Go to the directory where your Vagrantfile is
cd ${HOME}/openshift
* Remove Open Shift VM
vagrant halt
vagrant destroy --force
vagrant box remove --force openshift/origin-all-in-one
Subscribe to:
Post Comments (Atom)
To save yourself a lot of headaches, you should really have a separate GOPATH for each and every GO project you work on. Having a global one for everything is really not a good idea. Managing dependencies in Go is tricky enough without mixing them up with each and every project you have ever worked on :)
ReplyDeleteProjects uses vendor and manage with godep or glide, so there's no problem in use one global gopath. I work in many projects a long time and never had problem. Many gopaths is not a good practice
Delete