Skip to content
This repository has been archived by the owner on Oct 15, 2022. It is now read-only.

Commit

Permalink
Merge pull request #41 from obfuscurity/release/0_9_15
Browse files Browse the repository at this point in the history
Bump to Graphite 0.9.15
  • Loading branch information
obfuscurity committed Nov 27, 2015
2 parents 1201c76 + 04542bd commit bf3d216
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ The resulting Graphite server __listens only on https port 443__ and has been co

## Provides

* Graphite 0.9.14 ([graphite-web](https://github.com/graphite-project/graphite-web), [carbon](https://github.com/graphite-project/carbon), [whisper](https://github.com/graphite-project/whisper))
* Graphite 0.9.15 ([graphite-web](https://github.com/graphite-project/graphite-web), [carbon](https://github.com/graphite-project/carbon), [whisper](https://github.com/graphite-project/whisper))
* StatsD ([statsite](https://github.com/armon/statsite))
* collectd agent

Expand Down Expand Up @@ -66,7 +66,7 @@ $ sudo python manage.py changepassword admin

## Upgrade

It's now possible to upgrade an existing Synthesize (e.g. Graphite 0.9.12) to the newest Graphite 0.9.14. You will need to checkout at least version 2.3.0 of Synthesize for this feature. Besides upgrading the Graphite components, it will also migrate the webapp database (`graphite.db`) to the newest fixtures version.
It's now possible to upgrade an existing Synthesize (e.g. Graphite 0.9.12) to the newest Graphite 0.9.15. You will need to checkout at least version 2.3.0 of Synthesize for this feature. Besides upgrading the Graphite components, it will also migrate the webapp database (`graphite.db`) to the newest fixtures version.

```
$ cd synthesize
Expand Down
2 changes: 1 addition & 1 deletion Vagrantfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
config.vm.network :forwarded_port, guest: 8125, host: 8125, protocol: 'udp'
config.vm.network :forwarded_port, guest: 2003, host: 22003
config.vm.network :forwarded_port, guest: 2004, host: 22004
graphite_version = ENV['GRAPHITE_RELEASE'].nil? ? '0.9.14' : ENV['GRAPHITE_RELEASE']
graphite_version = ENV['GRAPHITE_RELEASE'].nil? ? '0.9.15' : ENV['GRAPHITE_RELEASE']
config.vm.provision "shell", inline: "cd /vagrant; GRAPHITE_RELEASE=#{graphite_version} ./install"
end
2 changes: 1 addition & 1 deletion install
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ GRAPHITE_CONF="${GRAPHITE_HOME}/conf"
GRAPHITE_STORAGE="${GRAPHITE_HOME}/storage"

if [ -z $GRAPHITE_RELEASE ]; then
GRAPHITE_RELEASE='0.9.14'
GRAPHITE_RELEASE='0.9.15'
fi

if [[ ! $UBUNTU_RELEASE =~ 'Ubuntu 14.04' ]]; then
Expand Down
4 changes: 2 additions & 2 deletions upgrade
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/bin/bash
# Synthesize upgrade script for Graphite 0.9.14
# Synthesize upgrade script for Graphite 0.9.15
# Jason Dixon <[email protected]>

SYNTHESIZE_HOME=$( cd "$( dirname "$0" )" && pwd )
Expand All @@ -10,7 +10,7 @@ GRAPHITE_CONF="${GRAPHITE_HOME}/conf"
GRAPHITE_STORAGE="${GRAPHITE_HOME}/storage"

if [ -z $GRAPHITE_RELEASE ]; then
GRAPHITE_RELEASE='0.9.14'
GRAPHITE_RELEASE='0.9.15'
fi

if [[ ! $UBUNTU_RELEASE =~ 'Ubuntu 14.04' ]]; then
Expand Down

0 comments on commit bf3d216

Please sign in to comment.