Docker 1.13 changed the default FORWARD policy from ACCEPT to DENY that prevents services of type NodePort from working.
Workaround is appears to be:
/sbin/iptables -I FORWARD 1 -o docker0 -j ACCEPT -m comment --comment "docker subnet"
on all the nodes in the cluster.
If you follow the Getting Started guide on the Project Atomic website and do the steps manually (ansible include the fix) you'll get a configuration where NodePort doesn't work. That leads to hair pulling and substantial frustration.
The Getting Started docs should be updated to explain this step until a more proper fix is deployed.