Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updating redis-exporter #55

Open
wants to merge 12 commits into
base: master
Choose a base branch
from
13 changes: 10 additions & 3 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
- name: Lint cookbook
run: bundle exec foodcritic --context --epic-fail any .
- name: Run rspec tests
run: bundle exec rspec -fd test/cookbooks/testrig/spec/chefspec.r
run: bundle exec rspec -fd test/cookbooks/testrig/spec/chefspec.rb

kitchen-test:
runs-on: ubuntu-20.04
Expand All @@ -42,7 +42,14 @@ jobs:
os:
- amazonlinux
- amazonlinux-2
- centos-8
- debian-8
- debian-9
- debian-10
- centos-7
- fedora-30
- fedora-31
- ubuntu-1604
- ubuntu-1804
- ubuntu-2004

steps:
Expand All @@ -63,4 +70,4 @@ jobs:
gem install bundler
bundle install
- name: Run Test Kitchen against chef-${{ matrix.chef-version}}-${{ matrix.os }}
run: bundle exec kitchen test chef-${{ matrix.chef-version}}-${{ matrix.os }}
run: bundle exec kitchen test chef-${{ matrix.chef-version}}-${{ matrix.os }} -l debug
4 changes: 2 additions & 2 deletions attributes/redis.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
default['prometheus_exporters']['redis']['version'] = '1.6.1'
default['prometheus_exporters']['redis']['version'] = '1.17.1'
default['prometheus_exporters']['redis']['url'] = "https://github.com/oliver006/redis_exporter/releases/download/v#{node['prometheus_exporters']['redis']['version']}/redis_exporter-v#{node['prometheus_exporters']['redis']['version']}.linux-amd64.tar.gz"
default['prometheus_exporters']['redis']['checksum'] = '9e0e75bdf246a13807d1a205075a711721a7b065dd32e921b5f55536dbc63600'
default['prometheus_exporters']['redis']['checksum'] = 'd424d0524867a1fc503e7335f0856d72f125a4331b759bc3c61cdcbbb80ae50e'
2 changes: 1 addition & 1 deletion metadata.rb
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
license 'Apache-2.0'
description 'Installs / configures Prometheus exporters'

version '0.17.3'
version '0.17.4'

chef_version '>= 12.11', '< 17.0'

Expand Down