The older katello-configure included options to configure Katello and associated components to setup the Satellite to access the internet via a proxy: --proxy-url=PROXY_URL --proxy-port=PROXY_PORT --proxy-user=PROXY_USER HTTP Proxy user (proxy username, if auth is required) --proxy-pass=PROXY_PASS HTTP Proxy pass (proxy password, if auth is required) if you look at katello-installer we no longer have these options exposed: # katello-installer --help |grep proxy --capsule-foreman-proxy-port Port on which will foreman proxy listen (default: 9090) --capsule-register-in-foreman Register proxy back in Foreman (default: true) we definitely need these a good percentage (guessing 25%+) use a proxy to access the internet.
downstream issue http://projects.theforeman.org/issues/5639 Eric, do you know what they would likely look like?
Note that the proxy is set in 4 places, and ideally would be a single parameter for all 4: yum_importer iso_importer puppet_importer cdn_proxy in katello.yml
See https://bugzilla.redhat.com/show_bug.cgi?id=985106 for more info (although i would ignore the first parts of the bz) For iso importer: cat /etc/pulp/server/plugins.conf.d/iso_importer.json { "proxy_host" : "http://localhost", "proxy_port" : 8118, "proxy_username": 'admin', "proxy_password": 'password' } For yum importer: cat /etc/pulp/server/plugins.conf.d/yum_importer.json { "proxy_host" : "http://localhost", "proxy_port" : 8118, "proxy_username": 'admin', "proxy_password": 'password' } and there would be one for puppet_importer too. Here's the PR that added the yum importer originally https://github.com/Katello/katello-installer-legacy/pull/58/files
Also, tips on testing: https://fedorahosted.org/katello/wiki/ProxyTesting
Created redmine issue http://projects.theforeman.org/issues/6132 from this bug
Connecting redmine issue http://projects.theforeman.org/issues/5639 from this bug
*** Bug 985106 has been marked as a duplicate of this bug. ***
*** Bug 1031161 has been marked as a duplicate of this bug. ***
https://github.com/Katello/katello-installer/pull/74
Tested this in SNAP10, works fine.
This was delivered with 6.0.3, which is the Satellite 6 Beta.
This was delivered with Satellite 6.0 which was released on 10 September 2014.