Ewoud Kohl van Wijngaarden
Ewoud Kohl van Wijngaarden
I can confirm that the current develop branch is broken on python 3.4. Like https://docs.python.org/3/library/http.html#http.HTTPStatus mentions it is new in 3.5. I don't think the current code is really the...
Having looked into it I'd recommend the following: ```python try: # Python 3.5+ from http import HTTPStatus as StatusCodes except ImportError: try: # Python 3 from http import client as...
This is indeed a duplicate of https://github.com/actions/labeler/issues/12 > * I see no differenve form a forked and a not forked repo in this sense. The action runs from the org...
That's a limitation of Github Actions and AFAIK not something you can control. My guess is that they chose to do this because of security reasons.
I think I've said it in some discussion, but I plan to revisit this once we've dropped Pulp 2. Refactoring those entry points is complicated and things will be much...
I think my information is outdated and I actually solved the limitation: https://github.com/theforeman/kafo/commit/3b154b57768545d0a5044df36c5b1ccefe53fa65 was my start to making Puppet optional. I just never found the time to actually benefit from...
So to clarify: right now I think this does work for fresh installations. However, for runtime switching (i.e., from existing medium to large) it won't change the answers. It'll be...
I think I found it. It's in this bit here: https://github.com/theforeman/foreman-installer/blob/9e4d03cb917fde319bf3414c36a036d4c3ffdcad/config/foreman-proxy-content.migrations/200616155948-disable-pulp-3-proxying.rb#L11-L13
Oh, and I also thought about dropping a bunch of migrations instead but that's also a big task that I didn't want to start until I had time to finish...
> Boot happens only after migrations, and that is why I chose it rather than actual migrations (https://github.com/theforeman/kafo/blob/master/lib/kafo/kafo_configure.rb#L140). I did not want this to happen during package upgrade as that...