Powering the Red Hat Developers site.
We recommend that Docker be used in development. This simplifies the setup, and makes your development environment consistent with other developers and our CI servers. The following sections cover the steps you need to do in order to setup your environment and get the site running for the first time.
There are some Common Issues you may encounter, check them out before seeking help.
Skip to the Site Build Setup section if you don't want to use Docker.
You should be running a bash shell (Linux or OSX) and you will require: git and curl.
If you are on a mac then brew is required to install some dependant packages. Brew is like apt-get or yum for mac. Follow their instructions and make sure that brew doctor
completes without error.
Follow the instructions to install the latest docker for your system [here] (https://docs.docker.com/installation/). It's unlikely you will want to use the packages provided by your system (e.g. from yum or apt) as they will be too far out of date.
OSX: Docker compose will have been installed as part of the docker toolbox.
Non-OSX:Follow the instructions to install the latest docker-compose [here] (https://github.com/docker/compose/releases)
At this point you need to and should be able to run the following commands without error:
docker run hello-world
docker-compose version
If you have trouble running either of these commands please refer back to docker installation instructions. At this point no project specific steps have been taken, so docker is the reference point for fixing issues. If there is anything missing in this guide please submit a PR.
In this project docker and docker-compose are managed through the ruby script found at _docker/control.rb
. In order to run this you will require ruby 2.1 or greater. The following instructions install ruby via rbenv. You can use other methods, but your mileage may vary. If you already have RVM installed you'll need to remove it to use rbenv.
OSX:
brew install openssl libyaml libffi
Ubuntu/Debian/Mint:
apt-get install autoconf bison build-essential libssl-dev libyaml-dev libreadline6-dev zlib1g-dev libncurses5-dev libffi-dev libgdbm3 libgdbm-dev
Centos/Fedora:
yum install -y gcc openssl-devel bzip2 libyaml-devel libffi-devel readline-devel zlib-devel gdbm-devel ncurses-devel
####OSX
git clone https://github.com/sstephenson/rbenv.git ~/.rbenv
echo 'export PATH="$HOME/.rbenv/bin:$PATH"' >> ~/.bash_profile
echo 'eval "$(rbenv init -)"' >> ~/.bash_profile
source ~/.bash_profile
####Linux
git clone https://github.com/sstephenson/rbenv.git ~/.rbenv
echo 'export PATH="$HOME/.rbenv/bin:$PATH"' >> ~/.bashrc
echo 'eval "$(rbenv init -)"' >> ~/.bashrc
source ~/.bashrc
git clone https://github.com/sstephenson/ruby-build.git ~/.rbenv/plugins/ruby-build
rbenv install 2.1.2
rbenv global 2.1.2
gem update --system
gem install bundler
rbenv rehash
Fork the project, then clone your fork and add the upstream repository (Please ensure you have current version of git installed).
git clone [email protected]:YOUR_USER_NAME/developers.redhat.com.git
cd developers.redhat.com
git remote add -f upstream [email protected]:redhat-developer/developers.redhat.com.git
Download the Searchisko data dump and copy to _docker/searchisko/overlay/searchisko.sql.zip
Add the host docker
to your /etc/hosts
file. If you are building on Linux, set the IP address to 127.0.0.1
. If you are on a Mac and thus using Docker-machine, you will need to set the IP address to that of your Boot2Docker image. You can discover this IP address by running docker-machine ip default
Run bundle install
from within the _docker
directory to download the necessary ruby gems.
###Docker-machine setup (OSX only)
You'll probably want to start docker with 'Docker quickstart terminal'. However to run docker commands in any shell, run:
eval "$(docker-machine env default)"
-
SSH in to the default docker machine :
docker-machine ssh default
-
Edit the boot2docker profile:
sudo vi /var/lib/boot2docker/profile
-
The DNS servers are specified using the
EXTRA_ARGS
variable. Some settings will not work without waiting for the Ethernet port to be ready. Replace the existing EXTRA_ARGS with the following:EXTRA_ARGS="--insecure-registry developer.redhat.com --dns=10.5.30.160 --dns=10.11.5.19 --dns=8.8.8.8"
-
After editing
/var/lib/boot2docker/profile
runsudo /etc/init.d/docker restart
-
exit the boot2docker image (just type
exit
in the terminal) -
Restart docker-machine
docker-machine restart default
We've found that left over containers from previously failed attempts can cause problems. Docker will give an output on how it reccomends you deal with this. Please follow the advice there.
###Run the stack! NOTE: You must be connected to the Red Hat VPN to build the Docker images.
NOTE: The first time to build and run the site will take a long time (15-45 minutes) as a lot of docker images need to be built.
Run the following commands to build the images and start the containers:
bundle exec ./control.rb --run-the-stack
This will take a while the first time. This starts all required services and then runs awestruct in preview mode. The script won't finish until you stop it with CTRL+C
. At the start of the build the script will output the ports the services are listening on for access outside of docker. Typically you'll only need to worry about awestruct and searchisko ports. Those will be available on host docker
and the corresponding port for that service.
NOTE: When preview
is run, you may see errors from guard/listen about a folder being watched already, as far I as I can tell this is harmless and you can ignore those.
###Important Control.rb commands
Run the unit tests (also available using guard
locally).
bundle exec ./control.rb -t
To build and start all services:
bundle exec ./control.rb --run-the-stack
To run the acceptance tests (where HOST_TO_TEST is the host you are interested in:
bundle exec ./control.rb --acceptance_test_target[=HOST_TO_TEST]
To run the acceptance tests against the locally running docker stack:
bundle exec ./control.rb --acceptance_test_docker
To build the docker images:
bundle exec ./control.rb -b
To restart the (non awestruct services)
bundle exec ./control.rb -r
To run awestruct in preview mode
bundle exec ./control.rb -p
To run with drupal enabled
bundle exec ./control.rb -u [-g, -p, -r, --run-the-stack]
This means that any of the previous commands may be run with drupal by using the -u
flag. The -b
flag does not need the -u
flag to build the drupal image.
-
Configure environment variables needed for the site.
-
Request the following values from the Red Hat Developers team:
vimeo_access_token_secret vimeo_client_secret vimeo_access_token dcp_user dcp_password google_api_key
-
Export the values in the appropriate startup script. For example:
export vimeo_access_token_secret=<VIMEO_ACCESS_TOKEN_SECRET> export vimeo_client_secret=<VIMEO_CLIENT_SECRET> export dcp_user=<DCP_USER> export dcp_password=<DCP_PASSWORD>
Alternatively, if you plan to do frequent development on the site, you can request access to the password vault. The password vault is checked in to git (so always contains an up to date version of all keys, passwords and usernames), and is encrypted using GPG. To request access from the Red Hat Developers team, send them the email address associated with your GPG key. To find out more about GPG (including how to create a key) read https://www.gnupg.org/gph/en/manual.html. If you are on Mac, we recommend GPGSuite which provides Keychain management for your GPG key.
-
-
Configure the software. NOTE: You must use a version of Ruby installed via RVM.
-
Install RVM from here http://rvm.io if you don't already have it.
-
Install the correct Ruby version (See here for details on why '--disable-binary' is needed):
rvm install ruby-2.1.2 --disable-binary
-
If you see the
Error running 'requirements_osx_brew_libs_install autoconf automake libtool pkg-config libyaml readline libksba openssl'
error message, you may need to run the following, and then retry the above install command:rvm requirements
-
Install any required supporting software. For example, on Fedora you may need to:
sudo yum install -y rubygem-nokogiri sudo yum install -y gcc ruby-devel libxml2 libxml2-devel libxslt libxslt-devel sudo sysctl fs.inotify.max_user_watches=524288 sudo sysctl -p
-
-
Bootstrap the environment (only needed the first time)
bundle install
-
Configure the environment:
rake setup
-
If using Docker, set the Drupal credentials:
export drupal_user=admin export drupal_password=admin
-
Build the site for display at http://localhost:4242 and http://docker:8081 (if using Docker)
rake clean preview
NOTE The site will take a long time to build for the first time (10 minutes+). Subsequent builds are much quicker.
If the build was successful, you should be able to visit the site here: http://localhost:4242 and http://docker:8081 (if using Docker).
Everything below is copied across verbatim from www.jboss.org. Proceed with caution.
New pages should be added to the root with the extension .html.slim
Updates to the DCP should happen automatically if the build is being done on the build server or if you are using docker, however, if it is down or there is another emergency situation and the site needs to be built and content pushed to the DCP for staging or production please contact Pete Muir, Jason Porter, Andrew Rubinger or Ray Ploski. Below are steps to setup the environment for pushing content to the DCP.
In order to update content in the DCP you must have the URL set in config.yaml and the following two environment variables set:
export dcp_user=jboss-developer
export dcp_password=<see one of the people above for this>
If these two variables are not set you will see a warning during the build:
Missing username and / or password for searchisko
You can then preview the staging site, which will also push data to the DCP staging server:
rake preview[staging]
Alternatively, you can preview/deploy to staging or production and the associated DCP server will also be updated.
Run rake deploy[staging]
or rake deploy[production]
To tag:
rake deploy[staging,tagname]
To run in Awestruct in development mode, execute:
rake
(this is the equivalent to rake preview
)
To clean the generated site before you build, execute:
rake clean preview
To deploy using the production profile, execute:
rake deploy
To run the smoke test features execute:
rake acceptance_test_target=http://host_you_want:8080
To get a list of all tasks, execute:
rake -T
Now you're Awestruct with rake!
Builds occur automatically when pull requests are submitted. Builds and deploys happen when pushes to the master branch occur.
The secrets.yaml.gpg
file is encrypted using GPG with multiple recipients. A plugin for vim such as vim-gnupg (https://github.com/jamessan/vim-gnupg) makes editing the file easy:
- Install vim and vim-gnupg e.g. using pathogen
- Open the file
_config/secrets.yaml.gpg
using vim - Use the command
:GPGEditRecipients
to open the recipient list - Add the email address for the relevant user to the bottom of the edit area
- Write and quit this edit area, and the main file using
:wq
and:wq
- Commit the updated
_config/secrets.yaml.gpg
In order to do this, you will need load the user's public key in to your keychain. You will need to add the key to your keychain using your preferred tool on your platform. For example, we recommend GPGSuite for Mac OS. In this case:
- load
GPG Keychain Access
application - Select
key
->Retreive rom key server
- Pass in the ID of the public key you need to add.
Minimally the following list of recipients is required to encrypt the file:
- Pete Muir [email protected] (ID: 0x6CE6E8FB45FE317D created at Mon 1 Sep 18:29:07 2014
- Jason Robert Porter (new key) [email protected] (ID: 0xBEDFCFB30FB72D11 created at Tue 24 Dec 06:51:51 2013)
- Wes Bos [email protected] (ID: 0x8C1F9282110E7CA0 created at Tue 2 Sep 17:13:12 2014)
- Rafael Benevides [email protected] (ID: 0x81C7CA49C57D4F5C created at Thu 2 Aug 20:14:57 2012)
- Daniel Coughlin [email protected] (ID: 0x91A225F08D1D811B created at Tue 2 Sep 17:19:02 2014)
- Paul Robinson [email protected] (ID: 0xBCE89FD63FBB22CF created at Wed 10 Sep 15:08:22 2014)
- Adela Arreola [email protected] (ID: 0xC946E35184EBDCF7 created at Tue 7 Oct 15:26:21 2014)
- Markus Eisele (myfear) [email protected] (ID: 0xBE0AACE30C6FAC25 created at Tue 16 Dec 13:11:42 2014)
- James Parenti (Red Hat Developer Site Key) [email protected] (ID: 0x21BF1DFDC7A143E0 created at Tue 10 Mar 14:33:51 2015)
- Ryszard Koźmik [email protected] (ID: 0x70E45BDE7C68C64D created at Mon 11 May 16:09:19 2015)
- Lukas Vlcek (Lukas Vlcek) [email protected] (ID: 0x3442A3D7BD324826 created at Fri 22 May 11:24:48 2015)
- Oliver Shaw [email protected] (ID: 0xD57A952A22E69562 created at Mon 27 Jul 11:10:09 2015)
- Ian Hamilton [email protected] (ID: 0xE48F54FDCAB257C5 created at Tue 6 Oct 15:16:26 2015)
- Libor Krzyžanek [email protected] (ID: 0x0C3FF1F29223684E created at Thu 22 Oct 11:37:43 2015)
- Vlastimil Elias [email protected] (ID: 0x1104635722CBE84A created at Fri 20 May 09:58:18 2011)
If you add a new recipient to the file, ensure you update the list above.
This area documents fixes to common issues:
There is an issue on older macs where docker compose will not run. The only way around this is to install docker-compose via pip (Python's package manager). This can be done as follows:
sudo easy_install pip
sudo pip install docker-compose
If you get an error with the message 'no address for docker (Resolv::ResolvError)' you need to ensure that the host 'docker' is added as an alias to localhost in your /etc/hosts file. Instructions for this are available in the Docker section of this document.
This can be caused by running out of file descriptors. Currently only seen on Macs. See the following for how to fix: http://superuser.com/questions/433746/is-there-a-fix-for-the-too-many-open-files-in-system-error-on-os-x-10-7-1
Same fix as "Too many open files"
If using GNU PGP, sometimes you're not presented with a popup asking for the passphrase. This will result in the following error being presented: Unable to decrypt vault (GPGME::Error::BadPassphrase)
.
To fix, use the instructions in the following url:
https://www.gnupg.org/documentation/manuals/gnupg/Invoking-GPG_002dAGENT.html
If you get this error, you may be seeing it because your SSL cert file is out of date. You can fix this by:
- Downloading http://curl.haxx.se/ca/cacert.pem
- Setting the environment variable SSL_CERT_FILE to the /path/to/file/cacert.pem
Alternatively, see the following for how to fix: http://railsapps.github.io/openssl-certificate-verify-failed.html