Commit Graph

24 Commits

Author SHA1 Message Date
ZhongShengping c24ff4d59a Fix Repository
Change-Id: I5ddfc3fada45eb2736842394df0dfc6a2eeefe2c
2019-04-21 12:59:08 +08:00
ZhongShengping e974dc6b3b Replace git.openstack.org with opendev.org/openstack
Change-Id: Ib7681bdcf3b09acb79dde33875e4158a0521aaac
2019-04-21 11:50:28 +08:00
ZhongShengping af02d14e48 Fix editorial problem
Use git.openstack.org instead of github.com since git.openstack.org is
the reference for OpenStack

Change-Id: Ibef1a33d21286306f1025070baa50362e39f6092
2018-12-24 14:02:27 +08:00
admin 400337d673 Add the missing 'Table of Contents' in README
Change-Id: Icb6f545f31169b03cb1210373ca677d50ca174e0
2018-08-27 22:59:29 +08:00
caoxufeng 23d4b816a7 Remove the unnecessay _
Change-Id: I535ccec57a98ee92a368fefb28cbc012f737c5e8
2018-07-25 11:14:31 +08:00
qingszhao 65190d7806 Add the project source code repository in README
Change-Id: Ic1bb0724afd2eaa63c1f32aacbd442165b8c0c4c
2018-07-20 15:17:04 +08:00
wangqi e9f0fbb205 add release note link in readme
Change-Id: I7f39f789f8484f05aca8207d024a890d1a6ce26a
2018-06-21 14:32:55 +00:00
huang.zhiping d6d2466673 fix error url
Change-Id: Idf6caf8da9669cbc2e264aab164d128198f5dac2
2018-04-28 16:28:03 +08:00
shangxiaobj 47c75ebe47 Update and replace http with https for doc links
1) Update doc links according to OpenStack document migration
2) Use https instead of http for docs links

Change-Id: I875157178613a2dce430b6be1edeb887fa6210fa
2017-09-20 19:00:52 -07:00
ZhongShengping a1f973592a Update URLs in documents according to document migration
Change-Id: I8b35b2af14e9689d4c32e642075f1298b3479a00
2017-07-14 11:51:22 +08:00
Flavio Percoco 95610457ab Show team and repo badges on README
This patch adds the team's and repository's badges to the README file.
The motivation behind this is to communicate the project status and
features at first glance.

For more information about this effort, please read this email thread:

http://lists.openstack.org/pipermail/openstack-dev/2016-October/105562.html

To see an example of how this would look like check:

https://gist.github.com/393a683988ff0e8ceafdde292df29864

Change-Id: If4511868f9df791d15c6c8b9cc22148eab7ea157
2016-11-25 17:26:45 +01:00
Matthew J. Black ace794b5fb Provide information related to haproxy and mysql
When using HA Proxy to front MySQL, the issue becomes that the way
the client/server handle the connection it will cause HA Proxy to
leave ports in TIME_WAIT and then exhaust all available TCP ports.
The information provided will give insight on the issue and also ways
to tune HA Proxy to handle the high connections to MySQL.

Change-Id: I427fa5ff8249387362911dd2637b4c5002e7177d
2016-09-13 16:30:31 -04:00
Jenkins 409b1d8e5c Merge "Change wiki to docs" 2016-06-03 14:18:24 +00:00
Iury Gregory Melo Ferreira f5aa6c91ca Change wiki to docs
Change-Id: I9a7bea64224b0ae3f8fa6382642e7248e105b6d5
2016-06-02 23:06:12 -03:00
Emilien Macchi 1a8c4858e1 Cleanup README
Change-Id: I40389f4e93c2063e9bf368e74ebe7d5011406279
2016-06-02 18:10:56 -04:00
Iury Gregory Melo Ferreira 9ec9f039ea Deprecate verbose option in logging
Option "verbose" from group "DEFAULT" is deprecated for removal.
The parameter has no effect.
-Deprecated verbose for logging and init
-Remove verbose in README Remove verbose from tests.

If this option is not set explicitly, there is no such warning.

Change-Id: I7056cd1cd965224d49e26520b310dfdfe748ec20
2016-05-19 09:12:08 -03:00
venkatamahesh bdfb31c36b Use uppercase 'S' in word "OpenStack"
Change-Id: Ibc59f48b992e82031348a365c41bf24838d919cd
2016-02-04 18:55:29 +05:30
Iury Gregory Melo Ferreira 2ec2bd0049 update Setup section
This patch update the Setup section:
-add Installing gnocchi
-add doc url

Change-Id: I62697f2929ac1b5ca4e789a6e552833fe8482798
2016-01-07 15:19:55 +00:00
Emilien Macchi f658ca8213 release: prepare 7.0.0 (liberty)
This patch prepares this Puppet module to be released in 7.x series (Liberty)
with 7.0.0.

Change-Id: Ic95dc71f9dfb2d06665f8de6b54a0fe1f113300c
2015-11-25 16:09:29 +01:00
Yanis Guenane eb5fe69efb Reflect provider change in puppet-openstacklib
With the creation of the new openstack_config provider, some processing
that was done in gnocchi_config has been centralized in
openstack_config.

Impacted methods are :

  * section
  * setting
  * separator

Also, this commit adds the fact that, when passing a specific string
(ensure_absent_val) the provider will behave as if ensure => absent was
specified. '<SERVICE DEFAULT>' is the default value for
ensure_absent_val.

The use case is the following :

gnocchi_config { 'DEFAULT/foo' : value => 'bar' } # will work as usual

gnocchi_config { 'DEFAULT/foo' : value => '<SERVICE DEFAULT>' } # will mean absent

That means that all the current :

if $myvar {
  gnocchi_config { 'DEFAULT/foo' : value => $myvar }
} else {
  gnocchi_config { 'DEFAULT/foo' : ensure => absent }
}

can be removed in favor of :

gnocchi_config { 'DEFAULT/foo' : value => $myvar }

If for any reason '<SERVICE DEFAULT>' turns out to be a valid value for
a specific parameter. One could by pass that doing the following :

gnocchi_config { 'DEFAULT/foo' : value => '<SERVICE DEFAULT>',
ensure_absent_val => 'foo' }

Change-Id: Ie8dce6e9d4c1027bd1f7d8653a4fa6fe28b696d9
Depends-On: I0eeebde3aac2662cc7e69bfad7f8d2481463a218
2015-08-19 11:00:21 +02:00
Xingchao Yu 610680e402 Update README.md for project namespace change
Change-Id: I60b981fdd5867bfa3a881f7ddb8d839fb72d8ec2
2015-06-28 20:17:27 +08:00
Colleen Murphy a75bac7aef Remove Release Notes section from README
When this module is released, the release notes will go in a separate
CHANGELOG.md file.

Change-Id: I59678fe504616acee2625656bb5f7f6b91bb9c22
2015-06-26 18:02:10 -07:00
Emilien Macchi 5b9d6a5bc6 Implement Gnocchi keystone resources
* Manage user, user/role, service and endpoints.
* Update the README with service description.
2014-12-29 14:06:15 +01:00
Emilien Macchi 32bfa8be33 First commit with basic structure
* Add fixtures
* Add gitignore
* Add gitreview
* Add Gemfile
* Add LICENSE
* Add README
* Add Rakefile
* Add metadata.json
2014-12-29 13:46:13 +01:00