Relevant commands of this repository:
# Get into the agent container
nerdctl run -it --rm --network puppet-net --platform linux/amd64 ghcr.io/betadots/pdc:latest bash
# Now we're in the container:
puppet agent -t
puppet apply -e 'file { "/tmp/adhoc": content => "Written by Puppet" }'
# On each node:
apt-get update
# On server node:
puppet apply /etc/puppetlabs/code/environments/production/manifests/site.pp
# On agent node:
puppet agent -t
# Other tests
puppet module install puppetlabs-ntp