sensu-plugins-kubernetes 2.0.0 → 3.0.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 +4 -4
- data/CHANGELOG.md +7 -2
- data/bin/check-kube-nodes-ready.rb +1 -1
- data/lib/sensu-plugins-kubernetes/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: fd22506c6a684c8f527e0d57ce2e5c8b5050f0af
|
|
4
|
+
data.tar.gz: 50daf53d48ae07b3dbf4ad30e09d2ffe39ef8bf4
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c2eebe712f8f1093c64dae0b0b39de8cf3fb611ad49360c6f64079f417a9a37aceeac43a8c212f2630cd6e56fbf8bfcb1d8790a669ef1830380663c87a1fbcf2
|
|
7
|
+
data.tar.gz: ade09a14955da1adbce1ff6c3333e582a15140b0e39380b2b223c3ef6d27b95aee115b30da00dbdd71c8dad1d8e513b9bc971dfe1b912fb4a93e2965931f1c8f
|
data/CHANGELOG.md
CHANGED
|
@@ -5,10 +5,14 @@ This CHANGELOG follows the format listed at [Keep A Changelog](http://keepachang
|
|
|
5
5
|
|
|
6
6
|
## [Unreleased]
|
|
7
7
|
|
|
8
|
+
## [3.0.0] - 2017-09-12
|
|
9
|
+
### Breaking Change
|
|
10
|
+
- check-kube-nodes-ready.rb no longer triggers an alert if an unschedulable node becomes NotReady (@tg90nor)
|
|
11
|
+
|
|
8
12
|
## [2.0.0] - 2017-08-28
|
|
9
13
|
### Added
|
|
10
14
|
- Add option to explicitly include specific namespaces (@simulalex)
|
|
11
|
-
|
|
15
|
+
|
|
12
16
|
### Breaking Change
|
|
13
17
|
- Drops support for Ruby-2.0, now requires Ruby >= 2.1.0 (@simulalex)
|
|
14
18
|
|
|
@@ -61,7 +65,8 @@ pending pods, the restart count portion has been split into it's own check, `che
|
|
|
61
65
|
### Added
|
|
62
66
|
- initial release
|
|
63
67
|
|
|
64
|
-
[Unreleased]: https://github.com/sensu-plugins/sensu-plugins-kubernetes/compare/
|
|
68
|
+
[Unreleased]: https://github.com/sensu-plugins/sensu-plugins-kubernetes/compare/3.0.0...HEAD
|
|
69
|
+
[3.0.0]: https://github.com/sensu-plugins/sensu-plugins-kubernetes/compare/2.0.0...3.0.0
|
|
65
70
|
[2.0.0]: https://github.com/sensu-plugins/sensu-plugins-kubernetes/compare/1.1.0...2.0.0
|
|
66
71
|
[1.1.0]: https://github.com/sensu-plugins/sensu-plugins-kubernetes/compare/1.0.0...1.1.0
|
|
67
72
|
[1.0.0]: https://github.com/sensu-plugins/sensu-plugins-kubernetes/compare/0.1.2...1.0.0
|
|
@@ -45,7 +45,7 @@ class AllNodesAreReady < Sensu::Plugins::Kubernetes::CLI
|
|
|
45
45
|
if item.nil?
|
|
46
46
|
warning "#{node.name} does not have a status"
|
|
47
47
|
elsif item.status != 'True'
|
|
48
|
-
failed_nodes << node.metadata.name
|
|
48
|
+
failed_nodes << node.metadata.name unless node.spec.unschedulable
|
|
49
49
|
end
|
|
50
50
|
end
|
|
51
51
|
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: sensu-plugins-kubernetes
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version:
|
|
4
|
+
version: 3.0.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-
|
|
11
|
+
date: 2017-09-17 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: sensu-plugin
|
|
@@ -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.
|
|
238
|
+
rubygems_version: 2.6.13
|
|
239
239
|
signing_key:
|
|
240
240
|
specification_version: 4
|
|
241
241
|
summary: Sensu plugins for kubernetes
|