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,139
  • 10
  • 33
  • 44

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
  • 114,104
  • 20
  • 206
  • 289