2

Using r10k to deploy my puppet code. How do I use it to deploy a specific revision? Specifically, my :base repo.

Thanks!

cat pants
  • 2,273
  • 10
  • 35
  • 46

1 Answers1

4

Assuming that you use git repository:

A particular commit

mod "network",
  :git => 'git://github.com/example42/puppet-network.git',
  :ref => 'deb120e'

A particular tag

mod "zabbix",
  :git => "git://github.com/dj-wasabi/puppet-zabbix.git",
  :ref => '1.3.0'   
user9517
  • 115,471
  • 20
  • 215
  • 297