Upgrading
This guide documents our recommendation on how to upgrade an existing installation of CFEngine Community 3.7 and CFEngine Enterprise 3.7 to CFEngine 3.8.
We reccomend upgrading the Masterfiles Policy Framework first so that you can verify that the new policy will work with your old clients across the infrastructure. Once the latest policy has been deployed successfully we reccomend upgrading the Policy Server and finally the remote agents.
Upgrade masterfiles and Policy Server (3.8.X to 3.8.X+1)
If you are doing a minor-minor 3.8 upgrade (e.g. from 3.8.0 to 3.8.1), the upgrade is easier.
We would however still recommend to perform a masterfiles upgrade (ideally in a test environment first) to get all the enhancements and fixes.
The Masterfiles Policy Framework is available in the hub package and separately on the download page
Normally most files can be replaced with new ones, the only ones that are likely changed by you are def.cf and promises.cf. For these two files, we would need to do a diff between your version and the new version and integrate the diff instead of replacing the whole file.
For more detailed information on how to upgrade masterfiles please see Prepare masterfiles for upgrade section below.
When the new masterfiles have been created and cf-promises promises.cf and cf-promises update.cf succeeds, you are ready to upgrade the Policy Server. That entails to
- replace /var/cfengine/masterfiles with your new integrated masterfiles
- stop the CFEngine services
- upgrade the hub package
- replace (or merge with your changes) /var/cfengine/state/pg/data/postgresql.conf with /var/cfengine/share/postgresql/postgresql.conf.cfengine to update your database configuration.
- restart the CFEngine services
Check the version with /var/cfengine/bin/cf-promises -V, and if you are running Enterprise, the Mission Portal About page.
If your clients get promise failures (not kept) similar to "Can't stat file '/var/cfengine/master_software_updates/cf-upgrade/linux.x86_64/cf-upgrade' on '
If everything looks good, you are ready to upgrade the clients, please skip to Prepare Client upgrade (all versions) followed by Complete Client upgrade (all versions) below.
Upgrade Policy Server (3.7 to 3.8.X)
Make a backup of the Policy Server, a full backup of
/var/cfengine
(or yourWORKDIR
equivalent) is recommended.cp -r /var/cfengine/ppkeys/ /root/3.7/ppkeys
tar cvzf /root/3.7/cfengine.tar.gz /var/cfengine
Save the list of hosts currently connecting to the Policy Server.
cf-key -s > /root/3.7/hosts
Prepare masterfiles folowing instrusctions in Prepare masterfiles for upgrade section below.
Copy the merged masterfiles from the perparation you did above.
rm -rf /var/cfengine/masterfiles/*
cp /root/3.8/masterfiles/* /var/cfengine/masterfiles/
On your existing Policy Server, stop the CFEngine services.
service cfengine3 stop
- Verify that the output of
ps -e | grep cf
is empty.
Note: Clients will continue to execute the policy that they have.
Install the new CFEngine Policy Server package (you may need to adjust the package name based on CFEngine edition, version and distribution).
rpm -U cfengine-nova-hub-3.8.2-1.x86_64.rpm
# Red Hat based distributiondpkg --install cfengine-nova-hub_3.8.2-1_amd64.deb
# Debian based distribution
Bootstrap the Policy Server to itself (this step might not be needed if Policy Server is reporting correctly).
/var/cfengine/bin/cf-agent -B <POLICY-SERVER-IP>
Any error messages regarding processes can be corrected by running
cf-agent -f update.cf -IK
Take the Policy Server online.
- Verify with
cf-key -s
that connections from all clients have been established within 5-10 minutes. - Select some clients to confirm that they have received the new policy and are running it without error.
- Verify with
Prepare masterfiles for upgrade
- Merge your masterfiles with the CFEngine 3.8 policy framework on an infrastructure separate from your existing CFEngine installation.
- Identify existing modifications to the masterfiles directory. If patches from version control are unavailable or require verification, a copy of /var/cfengine/masterfiles from a clean installation of your previous version can help identify changes which will need to be applied to a new 3.8 install.
- The 3.8 masterfiles can be found in a clean installation of CFEngine (hub package on Enterprise), under /var/cfengine/masterfiles. Apply any customizations against a copy of the 3.8 masterfiles in a well-known location, e.g.
/root/3.8/masterfiles
. - Use
cf-promises
to verify that the policy runs with 3.8, by runningcf-promises /root/3.8/masterfiles/promises.cf
andcf-promises /root/3.8/masterfiles/update.cf
. - Use
cf-promises
to verify that the policy runs with you previous version of CFEngine (e.g. 3.7), by running the same commands as above on a node with that CFEngine version. - The merged masterfiles should now be based on the 3.8 framework, include your policies and work on both the version you are upgrading from and with 3.8.
Prepare Client upgrade (all versions)
- Make client packages available on the Policy Server in
/var/cfengine/master_software_updates
, under the appropriate directories for the OS distributions you use. Turn on the auto-upgrade policy by setting the
trigger_upgrade
class. Setmasterfiles/controls/VER/update_def.cf
or theaugments_file
also known asdef.json
for a small set of clients. For example in the appropriateupdate_def.cf
file(s) change!any
to an appropriate class like an IP networkipv4_10_10_1|ipv4_10_10_2
or indef.json
Verify that the selected hosts are upgrading successfully.
As an Enterprise user, confirm that the hosts start appearing in Mission Portal after 5-10 minutes. Otherwise, log manually into a set of hosts to confirm the successful upgrade.
Complete Client upgrade (all versions)
- Widen the group of hosts on which the
trigger_upgrade
class is set. - Continue to verify from
cf-key -s
or in the Enterprise Mission Portal that hosts are upgraded correctly and start reporting in. - Verify that the list of hosts you captured before the upgrade, e.g. in
/root/3.7/hosts
correspond to what you see is now reporting in.