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
8 changes: 6 additions & 2 deletions .github/workflows/stackhpc-pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,9 @@ jobs:
kayobe_image: ${{ needs.build-kayobe-image.outputs.kayobe_image }}
os_distribution: rocky
neutron_plugin: ovs
vm_image: Rocky8
# NOTE: The current SMS lab Rocky8 image has moved ahead of our release
# train snapshots, causing failures installing some packages.
vm_image: Rocky8-2022-11-08
vm_interface: ens3
OS_CLOUD: sms-lab-release
secrets: inherit
Expand All @@ -89,7 +91,9 @@ jobs:
kayobe_image: ${{ needs.build-kayobe-image.outputs.kayobe_image }}
os_distribution: rocky
neutron_plugin: ovn
vm_image: Rocky8
# NOTE: The current SMS lab Rocky8 image has moved ahead of our release
# train snapshots, causing failures installing some packages.
vm_image: Rocky8-2022-11-08
vm_interface: ens3
OS_CLOUD: sms-lab-release
secrets: inherit
Expand Down
2 changes: 1 addition & 1 deletion etc/kayobe/cephadm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ cephadm_ceph_release: "pacific"
#cephadm_fsid:

# Ceph container image.
cephadm_image: "{{ stackhpc_docker_registry }}/ceph/ceph:{{ cephadm_image_tag }}"
cephadm_image: "{{ stackhpc_docker_registry if stackhpc_sync_ceph_images | bool else 'quay.io' }}/ceph/ceph:{{ cephadm_image_tag }}"

# Ceph container image tag.
cephadm_image_tag: "v16.2.5"
Expand Down
6 changes: 6 additions & 0 deletions etc/kayobe/dnf.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,12 @@
# file: myrepo
# gpgkey: http://gpgkey
# gpgcheck: yes
#dnf_custom_repos:

# A dict of custom repositories that point to the local Pulp server.
# To use these repos, set dnf_custom_repos to the value of stackhpc_dnf_repos.
# This is done by default for hosts in the overcloud group via a group_vars
# file.
stackhpc_dnf_repos: "{{ dnf_custom_repos_el8 | combine(lookup('vars', 'dnf_custom_repos_' ~ ansible_facts.distribution | lower )) }}"

# Custom repositories shared between all RHEL derivatives.
Expand Down
5 changes: 0 additions & 5 deletions etc/kayobe/environments/ci-aio/stackhpc-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,6 @@
# Docker namespace to use for Kolla images. Default is 'kolla'.
kolla_docker_namespace: stackhpc-dev

# Whether docker should be configured to use an insecure registry for Kolla
# images. Default is false, unless docker_registry_enabled is true and
# docker_registry_enable_tls is false.
kolla_docker_registry_insecure: "{{ 'https' not in stackhpc_repo_mirror_url }}"

###############################################################################
# Network configuration.

Expand Down
5 changes: 0 additions & 5 deletions etc/kayobe/environments/ci-builder/stackhpc-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,6 @@
# Docker namespace to use for Kolla images. Default is 'kolla'.
kolla_docker_namespace: stackhpc-dev

# Whether docker should be configured to use an insecure registry for Kolla
# images. Default is false, unless docker_registry_enabled is true and
# docker_registry_enable_tls is false.
kolla_docker_registry_insecure: "{{ 'https' not in stackhpc_repo_mirror_url }}"

# Kolla feature flag configuration.
kolla_enable_barbican: true
kolla_enable_central_logging: true
Expand Down
3 changes: 0 additions & 3 deletions etc/kayobe/environments/ci-multinode/cephadm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,6 @@
###############################################################################
# Cephadm deployment configuration.

# Ceph container image.
cephadm_image: "quay.io/ceph/ceph:v16.2.5"

# Ceph OSD specification.
cephadm_osd_spec:
service_type: osd
Expand Down
5 changes: 0 additions & 5 deletions etc/kayobe/environments/ci-multinode/stackhpc-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,6 @@
# Docker namespace to use for Kolla images. Default is 'kolla'.
kolla_docker_namespace: stackhpc-dev

# Whether docker should be configured to use an insecure registry for Kolla
# # images. Default is false, unless docker_registry_enabled is true and
# # docker_registry_enable_tls is false.
kolla_docker_registry_insecure: "{{ 'https' not in stackhpc_repo_mirror_url }}"

###############################################################################
# Network configuration.

Expand Down
2 changes: 1 addition & 1 deletion etc/kayobe/kolla.yml
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ kolla_docker_namespace: stackhpc
# Whether docker should be configured to use an insecure registry for Kolla
# images. Default is false, unless docker_registry_enabled is true and
# docker_registry_enable_tls is false.
#kolla_docker_registry_insecure:
kolla_docker_registry_insecure: "{{ 'https' not in stackhpc_repo_mirror_url }}"

# Username to use to access a docker registry. Default is not set, in which
# case the registry will be used without authentication.
Expand Down
2 changes: 2 additions & 0 deletions etc/kayobe/stackhpc-overcloud-dib.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,8 @@ stackhpc_overcloud_dib_env_vars:
stackhpc_overcloud_dib_packages:
- "logrotate"
- "net-tools"
- "{% if os_distribution == 'ubuntu' %}netbase{% endif %}"
- "{% if os_distribution == 'ubuntu' %}iputils-ping{% endif %}"

# StackHPC overcloud DIB image block device configuration.
# This image layout conforms to the CIS partition benchmarks.
Expand Down