Skip to content

Commit

Permalink
Update to Grafana 1.8.1 and bump cookbook version to 1.5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
JonathanTron committed Oct 8, 2014
1 parent 2065a30 commit 000f762
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 6 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

This file is used to list changes made in each version of grafana.

## 1.5.1:

* Update `Grafana` to `1.8.1`

## 1.5.0:

* Update `Grafana` to `1.8.0`
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@ As with most cookbooks I write, this one is hopefully flexible enough to be wrap
| `node['grafana']['git']['url']` | `'https://github.com/grafana/grafana'` | The url for the git repo to use for Grafana |
| `node['grafana']['git']['branch']` | `'master'` | The sha or branch name to use |
| `node['grafana']['file']['type']` | `'tar.gz'` | the type of archive file. `zip` or `tar.gz`. |
| `node['grafana']['file']['version']` | `'1.8.0-rc1'` | the version to install. |
| `node['grafana']['file']['url']` | `'http://grafanarel.s3.amazonaws.com/grafana-1.8.0-rc1.tar.gz'` | The file URL for the latest Grafana build |
| `node['grafana']['file']['checksum']` | `'984a6f79a930b87d9132ab1f77be5d6efb8d91181c8b29c1e45383cb04e05650'`| The sha256 of the Grafana file |
| `node['grafana']['file']['version']` | `'1.8.1'` | the version to install. |
| `node['grafana']['file']['url']` | `'http://grafanarel.s3.amazonaws.com/grafana-1.8.1.tar.gz'` | The file URL for the latest Grafana build |
| `node['grafana']['file']['checksum']` | `'08a923508d1a0ef2af4c23827e715e438240d3e348f85f9ffd968709a91370d4'`| The sha256 of the Grafana file |
| `node['grafana']['install_path']` | `'/srv/apps'` | The root directory where Grafana will be installed |
| `node['grafana']['install_dir']` | `'/srv/apps/grafana'` | The directory to checkout into. A `current` symlink will be created in this directory as well. |
| `node['grafana']['es_server']` | `'127.0.0.1'` | The ipaddress or hostname of your elasticsearch server |
Expand Down
4 changes: 2 additions & 2 deletions attributes/default.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@
default['grafana']['git']['branch'] = 'master'
default['grafana']['git']['type'] = 'sync' # checkout | sync
default['grafana']['file']['type'] = 'tar.gz' # tar.gz | zip
default['grafana']['file']['version'] = '1.8.0'
default['grafana']['file']['version'] = '1.8.1'
f = node['grafana']['file']
default['grafana']['file']['url'] = "http://grafanarel.s3.amazonaws.com/grafana-#{f['version']}.#{f['type']}"
default['grafana']['file']['checksum'] = 'ef14a6e652347105b6bdc10b788bdd6d681ada69abb5bc1de805c3dab3c25352' # sha256 ( shasum -a 256 FILENAME )
default['grafana']['file']['checksum'] = '08a923508d1a0ef2af4c23827e715e438240d3e348f85f9ffd968709a91370d4' # sha256 ( shasum -a 256 FILENAME )
default['grafana']['webserver'] = 'nginx'
default['grafana']['install_path'] = '/srv/apps'
default['grafana']['install_dir'] = "#{node['grafana']['install_path']}/grafana"
Expand Down
2 changes: 1 addition & 1 deletion metadata.rb
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
license 'Apache 2.0'
description 'Installs/Configures grafana'
long_description IO.read(File.join(File.dirname(__FILE__), 'README.md'))
version '1.5.0'
version '1.5.1'

depends 'git'
depends 'ark', '>= 0.7.2'
Expand Down

0 comments on commit 000f762

Please sign in to comment.