Skip to content
Draft
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
4 changes: 2 additions & 2 deletions etc/kayobe/environments/ci-tenks/automated-deployment.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@
set -eux

BASE_PATH=~
KAYOBE_BRANCH=stackhpc/2025.1
KAYOBE_CONFIG_REF=${KAYOBE_CONFIG_REF:-stackhpc/2025.1}
KAYOBE_BRANCH=stackhpc/2026.1
KAYOBE_CONFIG_REF=${KAYOBE_CONFIG_REF:-stackhpc/2026.1}
KAYOBE_ENVIRONMENT=${KAYOBE_ENVIRONMENT:-ci-tenks}

if [[ ! -f $BASE_PATH/vault-pw ]]; then
Expand Down
8 changes: 4 additions & 4 deletions etc/kayobe/seed.yml
Original file line number Diff line number Diff line change
Expand Up @@ -114,17 +114,17 @@ seed_pulp_container_enabled: true

seed_pulp_container:
pulp:
image: quay.io/pulp/pulp
image: "quay.io/pulp/pulp"
pre: "{{ kayobe_config_path }}/containers/pulp/pre.yml"
post: "{{ kayobe_config_path }}/containers/pulp/post.yml"
tag: "3.81.0"
tag: "3.105.12"
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, 12] | min }}"
PULP_API_WORKERS: "{{ [ansible_facts.processor_vcpus * 2 + 1, 12] | min }}"
PULP_CONTENT_WORKERS: "{{ [ansible_facts.processor_vcpus * 2 + 1, 12] | min | string }}"
PULP_API_WORKERS: "{{ [ansible_facts.processor_vcpus * 2 + 1, 12] | min | string }}"
PULP_HTTPS: "{{ 'true' if pulp_enable_tls | bool else 'false' }}"
volumes:
- /opt/kayobe/containers/pulp:/etc/pulp
Expand Down
Loading