Skip to content
This repository has been archived by the owner on Mar 20, 2023. It is now read-only.

Commit

Permalink
Add CentOS 8 and Debian 10 support
Browse files Browse the repository at this point in the history
- Drop support for Debian 9
  • Loading branch information
alfpark committed Mar 20, 2023
1 parent 241c199 commit 55c7a25
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 13 deletions.
2 changes: 1 addition & 1 deletion convoy/fleet.py
Original file line number Diff line number Diff line change
Expand Up @@ -2673,7 +2673,7 @@ def _adjust_settings_for_pool_creation(config):
shipyard_container_required = False
elif publisher == 'credativ':
if offer == 'debian':
if sku >= '9':
if sku >= '10':
allowed = True
elif publisher == 'openlogic':
if offer.startswith('centos'):
Expand Down
11 changes: 4 additions & 7 deletions docs/25-batch-shipyard-platform-image-support.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,23 +20,20 @@ container pools.
| Publisher | Offer | Sku | GPU | IB/RDMA | Native Only | Native Convert |
|-----------------------|-----------------------|-----|:---:|:-------:|:-----------:|:--------------:|
| microsoft-azure-batch | centos-container | 7-4 | X | | X | |
| microsoft-azure-batch | centos-container | 7-6 | X | | X | |
| microsoft-azure-batch | centos-container | 7-7 | X | | X | |
| microsoft-azure-batch | centos-container-rdma | 7-4 | X | X (4) | X | |
| microsoft-azure-batch | centos-container-rdma | 7-6 | X | X (5) | X | |
| microsoft-azure-batch | centos-container-rdma | 7-7 | X | X (5) | X | |
| OpenLogic | CentOS | 7.4 | X | | | X |
| OpenLogic | CentOS | 7.6 | X | | | X |
| OpenLogic | CentOS | 7.7 | X | | | X |
| OpenLogic | CentOS | 8.0 | X | | | |
| OpenLogic | CentOS-HPC | 7.4 | X | X (4) | | X |
| OpenLogic | CentOS-HPC | 7.6 | X | X (5) | | X |
| OpenLogic | CentOS-HPC | 7.7 | X | X (5) | | X |

### Debian

| Publisher | Offer | Sku | GPU | IB/RDMA | Native Only | Native Convert |
|-----------|--------|-----|:---:|:-------:|:-----------:|:--------------:|
| Credativ | Debian | 9 | | | | |
| Publisher | Offer | Sku | GPU | IB/RDMA | Native Only | Native Convert |
|-----------|-----------|-----|:---:|:-------:|:-----------:|:--------------:|
| Debian | Debian-10 | 10 | | | | |

### SLES

Expand Down
2 changes: 1 addition & 1 deletion scripts/shipyard_federation_bootstrap.sh
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ refresh_package_index() {
apt-get update
rc=$?
elif [ "$PACKAGER" == "yum" ]; then
yum makecache -y fast
yum makecache -y
rc=$?
elif [ "$PACKAGER" == "zypper" ]; then
zypper -n --gpg-auto-import-keys ref
Expand Down
2 changes: 1 addition & 1 deletion scripts/shipyard_monitoring_bootstrap.sh
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ refresh_package_index() {
apt-get update
rc=$?
elif [ "$PACKAGER" == "yum" ]; then
yum makecache -y fast
yum makecache -y
rc=$?
elif [ "$PACKAGER" == "zypper" ]; then
zypper -n --gpg-auto-import-keys ref
Expand Down
2 changes: 1 addition & 1 deletion scripts/shipyard_nodeprep.sh
Original file line number Diff line number Diff line change
Expand Up @@ -494,7 +494,7 @@ refresh_package_index() {
apt-get update
rc=$?
elif [ "$PACKAGER" == "yum" ]; then
yum makecache -y fast
yum makecache -y
rc=$?
elif [ "$PACKAGER" == "zypper" ]; then
zypper -n --gpg-auto-import-keys ref
Expand Down
2 changes: 1 addition & 1 deletion scripts/shipyard_slurm_computenode_nodeprep.sh
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ refresh_package_index() {
apt-get update
rc=$?
elif [ "$PACKAGER" == "yum" ]; then
yum makecache -y fast
yum makecache -y
rc=$?
elif [ "$PACKAGER" == "zypper" ]; then
zypper -n --gpg-auto-import-keys ref
Expand Down
2 changes: 1 addition & 1 deletion scripts/shipyard_slurm_master_bootstrap.sh
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@ refresh_package_index() {
apt-get update
rc=$?
elif [ "$PACKAGER" == "yum" ]; then
yum makecache -y fast
yum makecache -y
rc=$?
elif [ "$PACKAGER" == "zypper" ]; then
zypper -n --gpg-auto-import-keys ref
Expand Down

0 comments on commit 55c7a25

Please sign in to comment.