Open TuningYourCode opened 1 year ago
This PR provides a package provider to manage grafana plugins as the current grafana_plugin resource does not offer all functions like installation of specific plugin versions or keeping plugins up to date with ensure => latest.
grafana_plugin
ensure => latest
This functionality is now given by using
package { 'grafana-image-renderer': ensure => 'latest', provider => 'grafana', }
or
package { 'grafana-image-renderer': ensure => '2.0.0', provider => 'grafana', }
Fixes #178
Replaces https://github.com/voxpupuli/puppet-grafana/pull/263
Pull Request (PR) description
This PR provides a package provider to manage grafana plugins as the current
grafana_plugin
resource does not offer all functions like installation of specific plugin versions or keeping plugins up to date withensure => latest
.This functionality is now given by using
or
This Pull Request (PR) fixes the following issues
Fixes #178
Replaces https://github.com/voxpupuli/puppet-grafana/pull/263