summaryrefslogtreecommitdiff
path: root/doc/details/under-the-hood.md
diff options
context:
space:
mode:
authorMicah Anderson <micah@leap.se>2015-06-11 12:09:36 -0400
committerMicah Anderson <micah@leap.se>2015-06-11 12:09:36 -0400
commiteb4d0b2a81d5e83046d3cbf658804d9cd2f19921 (patch)
treea3293bd1ef94c2df67e6c16527ef110c8ced93a2 /doc/details/under-the-hood.md
parent0c12ab564590374c09ffe7a8049cab6d8c8b41fc (diff)
parentd9146415db0e6b7dd0c945039c0a4ed4fd054a7d (diff)
Merge tag '0.7.0' into develop
Releasing 0.7.0
Diffstat (limited to 'doc/details/under-the-hood.md')
-rw-r--r--doc/details/under-the-hood.md16
1 files changed, 15 insertions, 1 deletions
diff --git a/doc/details/under-the-hood.md b/doc/details/under-the-hood.md
index dcbddb3e..0bc4fe77 100644
--- a/doc/details/under-the-hood.md
+++ b/doc/details/under-the-hood.md
@@ -21,6 +21,20 @@ You can pass any combination of tags, i.e. use
* "--tags leap_service": Only deploy service(s) (useful for debugging/development)
* "--tags leap_base": Only deploy basic configuration (again, useful for debugging/development)
-See http://docs.puppetlabs.com/puppet/2.7/reference/lang_tags.html for puppet tag usage.
+### Doing faster partial deploys
+
+If you only change a tiny bit on the platform puppet recipes, you could achieve a
+*much* faster deploy specifying the resource tag you changed.
+i.e. you changed the way rsyslog config snippets for LEAP logfiles are created
+in `puppet/modules/leap/manifests/logfile.pp`. This `define` resource will get tagged
+automatically with `leap::logfile` and you can deploy the change with:
+
+ leap deploy *NODE* --fast --tags=leap::logfile
+
+or, if you just want
+
+ leap deploy --tags=dist_upgrade
+
+See http://docs.puppetlabs.com/puppet/2.7/reference/lang_tags.html for puppet tag usage.