Files
kubernetes/cluster/gce/templates
Justin Santa Barbara 05d4aea3bf Copy download-or-bust helper from gce to aws
During a push, we were wget-ing to <filename>.1, .2, etc, which wasn't working
2015-03-04 16:30:11 -05:00
..
2014-11-10 13:09:58 -08:00

Updating Salt debs

We are caching all of the salt debs in GCS for speed and reliability.

To update them, follow this simple N step process:

  1. Start up a new base image without salt installed. SSH into this image.
  2. Install salt via their recommended method: curl -L https://bootstrap.saltstack.com | sudo sh -s -- -M -X
  3. Find and download the debs that originated at the saltstack.com repo: aptitude search --disable-columns -F "%p %V" "?installed?origin(saltstack.com)" | xargs aptitude download
  4. Upload these to GCS: gsutil cp *.deb gs://kubernetes-release/salt/
  5. Make sure that everything is publicly readable: gsutil acl ch -R -g all:R gs://kubernetes-release/salt/
  6. Test things well :)