At SURFsara we have developed a general library to generate files from templates. In our setup we can easily specify the default values and override them in other json file(s) or via def.cf/json. The goal is to set up an global repository for mustache templates.
For all bundles the mustache/json file(s) will be copied to the local node directory ($(def.node_template_dir)
:
- The json and template file(s) are copied from the policy hub shortcut:
templates/$(bundle_name)
- The copies are placed in the local node directory:
$(def.node_template_dir)/$(bundle_name)
- The following json must always be present and will always be copied: default.json
- Extra json file(s) can be specified in def.cf/json:
$(bundle_name)[json_files]
- Scripts can generate json file(s) on a host/node. The json file must be copied into:
$(def.node_template_dir)/$(bundle_name)
- The generated file(s) are specified in def.cf/json:
$(bundle_name)[local_generated_json_files]
- You can override values via def.json, Note: This one always wins.
- CFEngine variables are expanded.
Both senarios will be described in the subsection below. For both senarios you can specifiy multiple json files. The files will be merged and the last one wins if the same variable name is used,eg:
- a.json defines:
a : 1
- b.json defines:
a : 2
If the order is { "b.json", "a.json" }
the value of a would be 1
The merge strategy is::
default.json
def.<bundle_name>[json_files]
if defineddef.<bundle_name>_json_files
if defineddef.<bundle_name>[local_generated_json_files]
if defineddef.<bundle_name>_local_generated_json_files
if defineddef.<bundle_name>
if defined in def.json or: * lib/surfsara/def.cf MPF setup * your own file with variable scopedef
there are two options
- Include it in the Master Policy Framework (MPF)
- Include it in your own framework
The def.node_template_dir
variable is set in lib/surfsara/def.cf
, but can also be set
set in def.json
. The def.json wins, eg:
vars:
{
"node_template_dir" : "/etc/node_status/templates"
}
default value is: /var/cfengine/surfsara_templates
For older versions you have to manually add the shorcut templates
to controls/cf_serverd.cf
"$(sys.workdir)/templates"
handle => "server_access_grant_access_templates",
shortcut => "templates",
comment => "Grant access to templates directory",
admit => { @(def.acl) };
- Login on your policy server.
./mpf_installation
- Enable autorun, if you have not done it, by adding this class to your
def.json
file
{
"classes" :
{
"services_autorun" : "any"
}
}
You can test your installation with
cf-agent -Kv | grep surfsara_autorun
You can run the same script it will detect that its an update mpf_installation
. This script will overwrite:
- surfsara library files:
masterfiles/lib/surfsara
- surfsara services files:
masterfiles/services/surfsara
- mustache template files and default.json files:
/var/cfengine/templates
- Login on your policy server.
- cp -a masterfiles/lib/surfsara
<masterfiles>/lib/surfsara
- cp -a examples/templates $(sys.workdir)/templates
- include
/lib/surfsara/stdlib.cf
in your inputs
body common control
{
inputs => {
...
"lib/surfsara/stdlib.cf",
...
};
}
See above to add templates shortcut
to cf-serverd.
There are several template setups for different services included with inline documentation. These setups are used in production at SURFsara.
- services/check_space.cf
- services/cron.cf
- services/dhclient.cf
- services/node_exporter.cf
- services/nscd.cf
- services/ntp.cf
- services/nvidia_gpu_prometheus_exporter.cf
- services/pam.cf
- services/pam_radius.cf
- services/postfix.cf
- services/resolv.cf
- services/sudo.cf
- services/sara_user_consume_resources.cf
- services/singularity.cf
- services/slurm_prometheus_exporter.cf
- services/ssh.cf
- services/systemd.cf
- services/tcpwrappers.cf
- services/tripwire.cf
- services/yum.cf
To enable the template on your system:
- MPF:
- The prefered way is to use
def.sara_services_enabled
method in def.cf/def.json. - Copy a setup to the
masterfiles/services/autorun
directory
- Own Framework:
def_sara_services_enabled
method- usebundle:
- ntp_autorun()
- tcpwrappers_autorun()
This is the prefered method for MPF and your own frameork. With this method you can contol which services are run and which file are included, eg: def.json
"vars": {
"sara_services_enabled": [
"ntp",
"resolv"
]
}
This will include the surfsara services file ntp.cf
and resolv.cf
and run all bundles that have the meta tag
template_ntp
and template_resolv
. The bundle run can be protected by an class statement, default is any
, eg:
"ntp": {
"run_class": "debian|centos"
}
This will only run on debian or centos hosts.
In this file you can override settings for the templates. When the json data is merged. This one wins, eg:
"vars": {
"ntp" : {
"server": [ "<your_ip_server1>", "<your_ip_server2>" ]
}
}
You can also specify json setup files:
"vars": {
"tcpwrappers": {
"json_files": [ "allow_ssh.json", "allow_http.json" ]
}
}
For every service you dynamically set classes in the bundle data, eg:
"vars": {
"dhclient": {
"classes": {
"RESOLV_CONF": [ "r24n2" ]
}
}
}
This will set the class DHCLIENT_RESOLV_CONF
on host/node r24n2
You can also override settings in this file, eg:
- One variable:
vars:
"ntp" data => parsejson( '{ "server" : [ "<your_ip_server1>" ] }' );
- json file:
vars:
"tcpwrappers" data => parsejson( '{ "json_files": [ "allow_ssh.json", "allow_http.json" ] '} );
If you defined your own def.cf
and do not want the one included in this framework you can set the following class:
SURFSARA_SKIP_DEF_CF_INCLUDE
The SURFsara CFEngine library also checks for some classes:
- To test with a local
templates
directory. This directory must be one level higher than your policy files directory (../templates): -DTEMPLATE_LOCAL_COPY
: Copy from local directory the mustache and json file(s).-DMUSTACHE_LOCAL_COPY
: Copy from local directory the mustache file(s)-DJSON_LOCAL_COPY
: Copy from local directory the json file(s)- To test local mustache/json changes in
$(def.node_template_dir)
, the copy of the json/mustache file(s) from the policy server can be skipped by: -DTEMPLATE_SKIP_COPY
: Skip copying of mustache and json files-DMUSTACHE_SKIP_COPY
: Skip copying of the mustache files-DJSON_SKIP_COPY
: Skip copying of the json files- To debug the mustache setup:
-DDEBUG_MUSTACHE
(all service bundles) - To debug mustache for a service bundle, eg
-DDEBUG_ntp