Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .ruby-version
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
2.5.1
31 changes: 5 additions & 26 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,25 +1,17 @@
sudo: required

addons:
apt:
sources:
- chef-current-trusty
packages:
- chefdk

## Don't `bundle install` which takes about 1.5 mins
#install: echo "skip bundle install"

branches:
only:
- master

#services: docker
services:
- docker

env:
global:
- KITCHEN_YAML=.kitchen.yml
- KITCHEN_LOCAL_YAML=.kitchen.dokken.yml
- KITCHEN_YAML=kitchen.yml
- KITCHEN_LOCAL_YAML=kitchen.dokken.yml
- CHEF_LICENSE="accept-silent"
matrix:
- INSTANCE=default-centos-6
- INSTANCE=default-centos-7
Expand Down Expand Up @@ -67,17 +59,4 @@ env:
- INSTANCE=unit-incorrect-gpg-fingerprint-amazonlinux-2
- INSTANCE=unit-incorrect-gpg-fingerprint-fedora-29

before_script:
# - sudo iptables -L DOCKER || ( echo "DOCKER iptables chain missing" ; sudo iptables -N DOCKER )
# - eval "$(chef shell-init bash)"
- chef --version
- cookstyle --version
- foodcritic --version

script: kitchen verify ${INSTANCE}

#matrix:
# include:
# - script:
# - chef exec delivery local all
#env: UNIT_AND_LINT=1
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,10 @@

This file is used to list changes made in each version of the aws_cloudwatch cookbook.

## 1.0.2 (2019-04.07)
## 1.0.3 (2019-12-19)
- Fix gem versions

## 1.0.2 (2019-04-07)
- Ubuntu-18.04 support

## 1.0.1 (2019-01-14)
Expand Down
10 changes: 7 additions & 3 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
source 'https://rubygems.org'

gem 'rspec'
gem 'chefspec'
gem 'berkshelf'
gem 'rspec', '= 3.9.0'
gem 'chefspec', '= 9.0.0'
gem 'berkshelf', '= 7.0.8'
gem 'test-kitchen', '= 2.3.4'
gem 'kitchen-dokken', '= 2.8.1'
gem 'kitchen-vagrant', '= 1.6.0'
gem 'kitchen-inspec', '= 1.3.1'
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion metadata.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
maintainer 'Gennady Potapov'
license 'Apache-2.0'
description 'Provides aws_cloudwatch_agent resource'
version '1.0.2'
version '1.0.3'
chef_version '>= 12.14' if respond_to?(:chef_version)

supports 'ubuntu', '= 14.04'
Expand Down