Skip to content

Commit a05aea3

Browse files
committed
set pulp_enabled_plugins
1 parent 4a4b303 commit a05aea3

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

src/roles/pulp/defaults/main.yaml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,15 @@ pulp_pulp_url: "http://{{ ansible_fqdn }}:24817"
2020

2121
pulp_enable_analytics: false
2222

23+
pulp_default_plugins:
24+
- pulp_certguard
25+
- pulp_file
26+
- pulp_smart_proxy
27+
pulp_plugins:
28+
- pulp_container
29+
- pulp_rpm
30+
pulp_enabled_plugins: "{{ pulp_default_plugins + pulp_plugins }}"
31+
2332
pulp_database_name: pulp
2433
pulp_database_user: pulp
2534
pulp_database_host: localhost
@@ -34,6 +43,8 @@ pulp_settings_database_env:
3443
PULP_DATABASES__default__PORT: "{{ pulp_database_port }}"
3544
PULP_DATABASES__default__OPTIONS__sslmode: "{{ pulp_database_ssl_mode }}"
3645
PULP_DATABASES__default__OPTIONS__sslrootcert: "{{ pulp_database_ssl_ca }}"
46+
PULP_ENABLED_PLUGINS: >-
47+
{{ pulp_enabled_plugins }}
3748
3849
# The arrays (AUTH_BACKENDS, AUTH_CLASSES) need to be strings
3950
# that get parsed to array by dynaconf, so we're using block scalars for them

0 commit comments

Comments
 (0)