sensu-plugins-kubernetes-reactiveops 0.1.0 → 0.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 25b537379f6e02c1eeddab70d94520a43616d6c1
4
- data.tar.gz: bccba5e6690207a3b3bb71d5ec1427e3ac1303e0
3
+ metadata.gz: 1d5a7da5ac4de5b832c8d00e99b01cf1dc5fb47d
4
+ data.tar.gz: 9d4edd5716d249d8cdf6e539a8dfe39413557493
5
5
  SHA512:
6
- metadata.gz: 4f4673f8517e188270b429baf4a4f922359153a13dbe093e7b170ed0321c1873881aa6f40bfce8e3877babc02c03186da7c0e976dc8974fc7b259e6a660bf48b
7
- data.tar.gz: 5f501632b0e28e4a12500effa1ed51aa7602c3e0abcbe788112540e4b45655050fe13d7a515ad809018e367cff844654f03c2b420b8a6693b9788113923177d2
6
+ metadata.gz: 85aaccb9c28033209348ada3a82c6b02f7d92d26a984e80ab3c027d21fc3ebb97369e2c4bfcdc934c46ffa2437981ca0bff6d18f0d0b1a614a56b26c317f651e
7
+ data.tar.gz: 034dfde38a32a5d0e41eebddaf4ee680d3e604943cf273ac8a326d9e05d1ec60225e1223cf21ff765e485016c541637a3eb16f78081e46d35eace3cbd7c5659e
data/CHANGELOG.md CHANGED
@@ -1,14 +1,19 @@
1
- #Change Log
1
+ # Change Log
2
2
  This project adheres to [Semantic Versioning](http://semver.org/).
3
3
 
4
4
  This CHANGELOG follows the format listed at [Keep A Changelog](http://keepachangelog.com/)
5
5
 
6
6
  ## [Unreleased]
7
+
8
+ ## [1.0.0] - 2017-03-21
7
9
  ### Added
8
- - Added metrics-pods.rb that will output the number of running pods per service
9
- - Added check-kube-pods-running check
10
- - Split check-kube-pods-pending into two checks; the original still checks for
11
- pending pods, the restart count portion has been split into it's own check.
10
+ - Add `metrics-pods.rb` that will output the number of running pods per service (@mickfeech)
11
+ - Add `check-kube-pods-running` check (@nyxcharon)
12
+
13
+ ### Changed
14
+ - Update `kubeclient` to 2.3.0 (@jackfengji)
15
+ - Split `check-kube-pods-pending` into two checks; the original still checks for
16
+ pending pods, the restart count portion has been split into it's own check, `check-kube-pods-restarting`. (@nyxcharon)
12
17
 
13
18
  ## [0.1.2] - 2016-08-07
14
19
  ### Fixed
@@ -44,7 +49,8 @@ pending pods, the restart count portion has been split into it's own check.
44
49
  ### Added
45
50
  - initial release
46
51
 
47
- [Unreleased]: https://github.com/sensu-plugins/sensu-plugins-kubernetes/compare/0.1.2...HEAD
52
+ [Unreleased]: https://github.com/sensu-plugins/sensu-plugins-kubernetes/compare/1.0.0...HEAD
53
+ [1.0.0]: https://github.com/sensu-plugins/sensu-plugins-kubernetes/compare/0.1.2...1.0.0
48
54
  [0.1.2]: https://github.com/sensu-plugins/sensu-plugins-kubernetes/compare/0.1.1...0.1.2
49
55
  [0.1.1]: https://github.com/sensu-plugins/sensu-plugins-kubernetes/compare/0.1.0...0.1.1
50
56
  [0.1.0]: https://github.com/sensu-plugins/sensu-plugins-kubernetes/compare/0.0.1...0.1.0
@@ -1,8 +1,8 @@
1
1
  module SensuPluginsKubernetes
2
2
  module Version
3
- MAJOR = 0
4
- MINOR = 1
5
- PATCH = 2
3
+ MAJOR = 0
4
+ MINOR = 2
5
+ PATCH = 0
6
6
 
7
7
  VER_STRING = [MAJOR, MINOR, PATCH].compact.join('.')
8
8
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sensu-plugins-kubernetes-reactiveops
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Sensu-Plugins and contributors
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-01-12 00:00:00.000000000 Z
11
+ date: 2017-04-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: sensu-plugin
@@ -28,16 +28,16 @@ dependencies:
28
28
  name: kubeclient
29
29
  requirement: !ruby/object:Gem::Requirement
30
30
  requirements:
31
- - - '='
31
+ - - "~>"
32
32
  - !ruby/object:Gem::Version
33
- version: 1.1.3
33
+ version: '2.3'
34
34
  type: :runtime
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
- - - '='
38
+ - - "~>"
39
39
  - !ruby/object:Gem::Version
40
- version: 1.1.3
40
+ version: '2.3'
41
41
  - !ruby/object:Gem::Dependency
42
42
  name: activesupport
43
43
  requirement: !ruby/object:Gem::Requirement
@@ -213,7 +213,7 @@ homepage: https://github.com/reactiveops/sensu-plugins-kubernetes
213
213
  licenses:
214
214
  - MIT
215
215
  metadata:
216
- maintainer: reactiveops
216
+ maintainer: sensu-plugin
217
217
  development_status: active
218
218
  production_status: unstable - testing recommended
219
219
  release_draft: 'false'
@@ -235,7 +235,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
235
235
  version: '0'
236
236
  requirements: []
237
237
  rubyforge_project:
238
- rubygems_version: 2.5.1
238
+ rubygems_version: 2.6.10
239
239
  signing_key:
240
240
  specification_version: 4
241
241
  summary: Sensu plugins for kubernetes