Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions etc/kayobe/containers/pulp/settings.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
CONTENT_ORIGIN='{{ pulp_url }}'
ANALYTICS=False
ANSIBLE_API_HOSTNAME='{{ pulp_url }}'
ANSIBLE_CONTENT_HOSTNAME='{{ pulp_url }}/pulp/content'
TOKEN_AUTH_DISABLED=True
Expand Down
5 changes: 4 additions & 1 deletion etc/kayobe/seed.yml
Original file line number Diff line number Diff line change
Expand Up @@ -106,11 +106,14 @@ seed_pulp_container:
image: pulp/pulp
pre: "{{ kayobe_config_path }}/containers/pulp/pre.yml"
post: "{{ kayobe_config_path }}/containers/pulp/post.yml"
tag: "{{ '3.21-https' if pulp_enable_tls | bool else '3.21' }}"
tag: "{{ '3.22-https' if pulp_enable_tls | bool else '3.22' }}"
network_mode: host
# Override deploy_containers_defaults.init == true to ensure
# s6-overlay-suexec starts as pid 1
init: false
env:
PULP_CONTENT_WORKERS: "{{ ansible_facts.processor_vcpus * 2 + 1 }}"
PULP_API_WORKERS: "{{ ansible_facts.processor_vcpus * 2 + 1 }}"
volumes:
- /opt/kayobe/containers/pulp:/etc/pulp
- pulp_storage:/var/lib/pulp
Expand Down
7 changes: 7 additions & 0 deletions releasenotes/notes/update-pulp-3.22-aa485b7e619cd380.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
---
features:
- Upgrades Pulp from ``3.21`` to ``3.22``.
- Disables Pulp analytics.
- |
Sets Pulp worker based on available CPU cores. This may improve performance
when pulling container images to many hosts simultaneously.