I hereby claim:
- I am jlebon on github.
- I am jlebon (https://keybase.io/jlebon) on keybase.
- I have a public key whose fingerprint is A8B6 01C2 9DB5 7D90 2FF0 892F 936F 29E9 519C E313
To claim this, I am signing this object:
#!/bin/bash | |
set -euo pipefail | |
# hacky way to use rpm-ostree to perform a db diff | |
# requires ostree and rpm-ostree installed locally | |
if [ $# -eq 0 ]; then | |
echo "Usage: $0 <from_rpmdb_dir> <to_rpmdb_dir>" | |
exit 1 | |
fi |
# The current format is very simple and may change in the | |
# future as more features get added, though we will try to | |
# maintain backwards compatibility (or help projects migrate | |
# to the new format). | |
# REQUIRED | |
# All details about the host to provision go under the host | |
# key, though for now, 'distro' is the only handled child: | |
host: | |
# REQUIRED |
#!/bin/bash | |
set -euo pipefail | |
# This is a small compatibility script that ensures mock | |
# chroots are compatible with applications that expect / to | |
# be a mount point, such as bubblewrap. | |
cleanup() { | |
for mnt in sys proc; do | |
umount /mnt/mock-mount/$mnt |
I hereby claim:
To claim this, I am signing this object:
Setting up: | |
1. ostree remote add --set=gpg-verify=false centos-atomic-continuous https://ci.centos.org/artifacts/sig-atomic/rdgo/centos-continuous/ostree/repo/ | |
2. ostree pull centos-atomic-continuous:centos-atomic-host/7/x86_64/devel/continuous | |
3. ostree commit -b my-test-branch --tree=ref=centos-atomic-continuous:centos-atomic-host/7/x86_64/devel/continuous | |
(if your ostree has `refs --create`, then this can be shortened) | |
4. ostree admin deploy my-test-branch | |
5. reboot | |
Synthesizing an update: |
This gist is mostly based on the dnsmasq appendix from the openshift-training repo. However, I updated it and included fixes for the many gotchas I found along the way.
This is useful for folks who want to set up a DNS service as part of the cluster itself, either because they cannot easily change their DNS setup outside of the cluster, or just because they want to keep the cluster setup self-contained.