sensu-plugins-minio 1.0.0 → 1.1.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 144a116c5c586f1fa6d951dc893d8f184ee70cfc4c90ef2fbd0ada0e04d7e8dd
4
- data.tar.gz: 98fa400a4401388b7db16f015ab3e81bed2babb41459b5c0f7a7a13731100e6e
3
+ metadata.gz: e594af8003c16f54561385ea639b00cc9c8c4f8724a12bc923a0ea9b08616c9a
4
+ data.tar.gz: 8299f875412630ca49f3b6f48e7f9fb14956bd56a6f4ca882f28b15b5bdccf38
5
5
  SHA512:
6
- metadata.gz: 03e42dd27a201ba2c70b6086103c9515e08352625cc3785e83a51d0a01b1d1f374fde5eda47f81af3eaaacdd754425b1294e24fbf5a7b62fa72fcc3f1ee0e6f5
7
- data.tar.gz: f274315e2f90356e0491dd8896c8c63e6d6b24e2fb8fa53f8f4c308087a5c5c18bdaf0f0f2cca833371f88202828c8a3f29c06736b3fbf2fa66a7ba3c66feb80
6
+ metadata.gz: ad37b9db0265f265fb2a5edf11a2d207c2a27841d0f9d105cfcd73e2f0296f3f5e71d5015765a5107518cdbbe17b4dc63b705ce7d83c7488a56e3a17275fb7fe
7
+ data.tar.gz: 9c7a29f102d54b12109b4a09696e79a3972eef8a39b90871247dc33c636066a1163b9ac1ef327eb55b8533ca0e0eabdda129b5b54a2ad65605021471f4571f4e
@@ -13,16 +13,13 @@ jobs:
13
13
  test:
14
14
 
15
15
  runs-on: ubuntu-latest
16
- strategy:
17
- matrix:
18
- ruby-version: ['2.3.3', '2.5.1', '2.7.0']
19
16
 
20
17
  steps:
21
18
  - uses: actions/checkout@v3
22
19
  - name: Set up Ruby
23
20
  uses: ruby/setup-ruby@v1
24
21
  with:
25
- ruby-version: ${{ matrix.ruby-version }}
22
+ ruby-version: '2.7.0'
26
23
  bundler-cache: true # runs 'bundle install' and caches installed gems automatically
27
24
  - name: Lint
28
25
  run: bundle exec rubocop
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- sensu-plugins-minio (1.0.0)
4
+ sensu-plugins-minio (1.1.0)
5
5
  sensu-plugin (~> 2.1)
6
6
 
7
7
  GEM
@@ -15,7 +15,7 @@ GEM
15
15
  diff-lcs (1.5.0)
16
16
  hashdiff (1.0.1)
17
17
  jaro_winkler (1.5.4)
18
- json (2.6.2)
18
+ json (2.7.1)
19
19
  mixlib-cli (1.7.0)
20
20
  parallel (1.19.2)
21
21
  parser (3.1.2.0)
data/README.md CHANGED
@@ -24,9 +24,9 @@ Check if a the local minio version is in the most recent version
24
24
 
25
25
  ### Optional parameters
26
26
 
27
- Checks will check the default URL https://dl.min.io/server/minio/release
28
- and the default Platform linux-amd64 for updates. Adjust these optional
29
- parameters if you want to check a different platform or for whatever
27
+ Checks will check the default URL https://dl.min.io/server/minio/release
28
+ and the default Platform linux-amd64 for updates. Adjust these optional
29
+ parameters if you want to check a different platform or for whatever
30
30
  reason need to check a different URL.
31
31
 
32
32
  | Parameter | Description |
@@ -42,7 +42,20 @@ reason need to check a different URL.
42
42
 
43
43
  ## Development
44
44
 
45
- After checking out the repo, run `bin/setup` to install dependencies. You can
45
+ Install rbenv and ruby-build to get a ruby 2.7.x on your system (running on ubuntu 20.04).
46
+
47
+ yay -S rbenv ruby-build
48
+
49
+ Add the rbenv shell extension (`eval "$(rbenv init -)"`) to your shell config (e.g. `~/.zshrc`) and install ruby 2.7.0
50
+
51
+ rbenv install 2.7.0
52
+
53
+ After checking out the repo verify, that your system is using the 2.7.0 ruby:
54
+
55
+ # rbenv version
56
+ 2.7.0 (set by ..../sensu-plugins-minio/.ruby-version)
57
+
58
+ Run `bin/setup` to install dependencies. You can
46
59
  also run `bin/console` for an interactive prompt that will allow you to
47
60
  experiment.
48
61
 
@@ -72,7 +72,7 @@ class CheckMinioUpdate < Sensu::Plugin::Check::CLI
72
72
  def local_version
73
73
  @local_version ||= begin
74
74
  stdout, stderr, status = Open3.capture3(
75
- { 'PATH' => ENV['PATH'] }, 'minio --version', unsetenv_others: true
75
+ { 'PATH' => ENV['PATH'] }, 'journalctl --boot --unit minio | grep "Version: RELEASE" | tail -n 1', unsetenv_others: true # rubocop:disable Layout/LineLength
76
76
  )
77
77
 
78
78
  unless status.success?
data/bin/setup CHANGED
@@ -3,6 +3,7 @@ set -euo pipefail
3
3
  IFS=$'\n\t'
4
4
  set -vx
5
5
 
6
- bundle install --path vendor/bundle
6
+ bundle config set path vendor/bundle
7
+ bundle install
7
8
 
8
9
  # Do any other automated setup that you need to do here
@@ -3,7 +3,7 @@
3
3
  module Sensu
4
4
  module Plugins
5
5
  module Minio
6
- VERSION = '1.0.0'
6
+ VERSION = '1.1.0'
7
7
  end
8
8
  end
9
9
  end
@@ -0,0 +1,3 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'sensu/plugins/minio/version'
@@ -8,7 +8,7 @@ Gem::Specification.new do |spec|
8
8
  spec.name = 'sensu-plugins-minio'
9
9
  spec.version = Sensu::Plugins::Minio::VERSION
10
10
  spec.licenses = ['MIT']
11
- spec.authors = ['Hauke Altmann', 'Jonathan Schlue']
11
+ spec.authors = ['Hauke Altmann', 'Jonathan Schlue', 'Benjamin Meichsner']
12
12
  spec.email = ['info@aboutsource.net']
13
13
 
14
14
  spec.summary = 'Check if there are updates for the local '\
metadata CHANGED
@@ -1,15 +1,16 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sensu-plugins-minio
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Hauke Altmann
8
8
  - Jonathan Schlue
9
+ - Benjamin Meichsner
9
10
  autorequire:
10
11
  bindir: bin
11
12
  cert_chain: []
12
- date: 2022-07-18 00:00:00.000000000 Z
13
+ date: 2024-03-26 00:00:00.000000000 Z
13
14
  dependencies:
14
15
  - !ruby/object:Gem::Dependency
15
16
  name: sensu-plugin
@@ -121,6 +122,7 @@ files:
121
122
  - bin/check-minio-update.rb
122
123
  - bin/console
123
124
  - bin/setup
125
+ - lib/sensu/plugins/minio.rb
124
126
  - lib/sensu/plugins/minio/version.rb
125
127
  - sensu-plugins-minio.gemspec
126
128
  homepage: https://github.com/aboutsource/sensu-plugins-minio
@@ -142,7 +144,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
142
144
  - !ruby/object:Gem::Version
143
145
  version: '0'
144
146
  requirements: []
145
- rubygems_version: 3.3.15
147
+ rubygems_version: 3.1.2
146
148
  signing_key:
147
149
  specification_version: 4
148
150
  summary: Check if there are updates for the local minio server instance