E2E Test for provision recipe #2227
bsacharski
started this conversation in
General
Replies: 2 comments
-
I think we can make an option to disable configuring iptables, and test with |
Beta Was this translation helpful? Give feedback.
0 replies
-
Ok, I will proceed with that then |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I've looked into running E2E test for
provision
recipe in docker environment - while installing packages, setting users and so on is fine, the process fails during theprovision:firewall
step.The
ufw
is, from what I can tell, a sort of a nicer frontend toiptables
.iptables
is a kernel module, so unfortunately it does not work nicely with containerized environments that share kernel with the host OS.I think that at this point, it looks like for provision recipe E2E test to work, it would have to be executed against an environment with its own separate kernel, like a VM. At the same time I have no idea whether the GitHub Actions can spawn a dedicated VM with SSH access for free though.
Beta Was this translation helpful? Give feedback.
All reactions