The GitLab Cookbook has been moved to GitLab Cloud.
However, you can use this cookbook.
Chef to install The GitLab.
- GitLab: 6.6.4
- GitLab Shell: 1.8.0
- Ruby: 2.0.0
- Redis: 2.6.13
- Git: 1.7.12
- Nginx: 1.1.19
- PostgreSQL: 9.1.9
- MySQL: 5.5.31
- Ubuntu (12.04, 12.10)
- CentOS (6.4)
- Package
- User
- GitLab shell
- GitLab shell config
- GitLab hq
- GitLab hq config
- Gems
- Git
$ gem install berkshelf
$ vagrant plugin install vagrant-berkshelf
$ vagrant plugin install vagrant-omnibus
$ git clone https://github.com/ogom/cookbook-gitlab.git ./gitlab
$ cd ./gitlab/
$ vagrant up
Create instance.
$ gem install berkshelf
$ vagrant plugin install vagrant-berkshelf
$ vagrant plugin install vagrant-omnibus
$ vagrant plugin install vagrant-aws
$ vagrant box add dummy https://github.com/mitchellh/vagrant-aws/raw/master/dummy.box
$ git clone https://github.com/ogom/cookbook-gitlab.git ./gitlab
$ cd ./gitlab/
$ cp ./example/Vagrantfile_aws ./Vagrantfile
$ vagrant up --provider=aws
HostName setting.
$ vagrant ssh-config | awk '/HostName/ {print $2}'
$ editor ./Vagrantfile
$ vagrant provision
$ gem install berkshelf
$ gem install knife-solo
$ knife configure
$ knife solo init ./gitlab_chef
$ cd ./gitlab_chef/
$ echo 'cookbook "gitlab", github: "ogom/cookbook-gitlab"' >> ./Berksfile
$ berks install --path ./cookbooks
$ knife solo prepare vagrant@127.0.0.1 -p 2222 -i ~/.vagrant.d/insecure_private_key
$ editor ./nodes/127.0.0.1.json
$ knife solo cook vagrant@127.0.0.1 -p 2222 -i ~/.vagrant.d/insecure_private_key --no-chef-check
Example of node config.
{
"postfix": {
"mail_type": "client",
"myhostname": "mail.example.com",
"mydomain": "example.com",
"myorigin": "mail.example.com",
"smtp_use_tls": "no"
},
"postgresql": {
"password": {
"postgres": "psqlpass"
}
},
"mysql": {
"server_root_password": "rootpass",
"server_repl_password": "replpass",
"server_debian_password": "debianpass"
},
"gitlab": {
"host": "example.com",
"url": "http://example.com/",
"email_from": "gitlab@example.com",
"support_email": "support@example.com",
"database_adapter": "postgresql",
"database_password": "datapass",
"env": "production"
},
"run_list":[
"postfix",
"gitlab::initial",
"gitlab::install"
]
}
Set mysql
to database_adapter
.
{
...
"gitlab": {
"database_adapter": "mysql"
}
}
Add gitlab::update
to run_list
.
{
...
"run_list":[
"gitlab::update",
"gitlab::initial",
"gitlab::install"
]
}
http://localhost:8080/
or your server for your first GitLab login.
admin@local.host
5iveL!fe
- MIT