Parker's DNS entries.
Modify the YAML file for the zone you'd like to update. The top-level key is the subdomain value, and its value is a Hash/Dictionary of values.
A record:
www:
type: CNAME
value: parkr.github.io.This will create a CNAME record at www.<your-zone> which points to
parkr.github.io. Easy, huh?
Before applying your change, test it:
$ script/cibuild || script/applyIt should print that there were mismatches and what it would do.
Once you're satisfied with your change, run:
$ script/apply --doitIf it complains about too many changes, be VERY CAREFUL! You can force
changes by adding the --force flag to your script/apply call.