Browse Source

Disable yum-cron by default on GCP

When using golden images, having an auto-update can be disruptive and
result in things like docker being installed and restarting all the
workload processes. This is a GCP specific issue since Red Hat doesn't
enable yum-cron update by default on most VMs.
Clayton Coleman 6 years ago
parent
commit
e07a3f699b
1 changed files with 5 additions and 0 deletions
  1. 5 0
      playbooks/gcp/openshift-cluster/build_base_image.yml

+ 5 - 0
playbooks/gcp/openshift-cluster/build_base_image.yml

@@ -111,6 +111,11 @@
     package:
     package:
       name: qemu-user-static
       name: qemu-user-static
       state: present
       state: present
+  - name: Disable yum-cron service (installed by Google Cloud by default)
+    systemd:
+      name: yum-cron
+      state: stopped
+      enabled: no
   - name: Start and enable systemd-binfmt service
   - name: Start and enable systemd-binfmt service
     systemd:
     systemd:
       name: systemd-binfmt
       name: systemd-binfmt