Foreman/Katello deployment

Hello Foreman/Katello community

Smart proxy installation error, I will fallow that doc: Configuring Smart Proxies with a Load Balancer

Was able to install F3.1/K4.3
foreman-installer --scenario katello
-l DEBUG
–foreman-initial-organization="$ORGANIZATION"
–foreman-initial-location="$LOCATION"
–foreman-initial-admin-username="$ADMIN_USER"
–foreman-initial-admin-password="$ADMIN_PASSWORD"
–foreman-initial-admin-email="$ADMIN_EMAIL"
–foreman-proxy-dhcp=“false”
–foreman-proxy-dns=“false”
–foreman-proxy-tftp=“true”
–enable-foreman-plugin-bootdisk
–enable-foreman-plugin-templates
–foreman-plugin-tasks-automatic-cleanup=“true”
–foreman-proxy-content-enable-docker=“false”
–foreman-proxy-content-enable-ansible=“false”
–foreman-proxy-content-enable-deb=“false”

I generate certs on katello:
foreman-proxy-certs-generate
–foreman-proxy-fqdn $SMART_PROXY
–certs-tar $SMART_PROXY_CERTS_TAR
–foreman-proxy-cname $SMART_PROXY_CNAME

But when i trying to install foreman-proxy-content with default SSL without puppet:
foreman-installer --scenario foreman-proxy-content
-l DEBUG
–certs-tar-file="/root/$SMART_PROXY_CERTS_TAR"
–certs-cname="$SMART_PROXY_CNAME"
–foreman-proxy-puppetca=“true”
–puppet-server-ca=“true”
–puppet-ca-server="$SMART_PROXY"
–puppet-dns-alt-names="$SMART_PROXY_CNAME"
–puppet-server-foreman-url=“https://$KATELLO
–foreman-proxy-register-in-foreman=“true”
–foreman-proxy-foreman-base-url=“https://$KATELLO
–foreman-proxy-trusted-hosts="$KATELLO"
–foreman-proxy-trusted-hosts="$SMART_PROXY"
–foreman-proxy-oauth-consumer-key="$KATELLO_KEY"
–foreman-proxy-oauth-consumer-secret="$KATELLO_SECRET"
–foreman-proxy-dhcp=“false”
–foreman-proxy-dns=“false”
–foreman-proxy-tftp=“true”
–foreman-proxy-content-enable-docker=“false”
–foreman-proxy-content-enable-ansible=“false”
–foreman-proxy-content-enable-deb=“false”

I run into issue:
[configure] Could not set groups on user[foreman-proxy]: Execution of ‘/sbin/usermod -G puppet foreman-proxy’ returned 6: usermod: group ‘p
uppet’ does not exist

so i added that group and have another issue:

[configure] /Stage[main]/Foreman_proxy::Register/Foreman_smartproxy[sp1.lan]/features: change from [“Logs”, “Pulpcore”, “Registration”, “TFTP”, “Templates”] to [“Dynflow”, “Logs”, “Pulpcore”, “Puppet CA”, “Registration”, “TFTP”, “Templates”] failed: Proxy sp1.lan has failed to load one or more features (Puppet CA), check /var/log/foreman-proxy/proxy.log for configuration errors

Do I missing something? To have that working?