Skip to content

Commit

Permalink
Remove obsolete cos101 from PKB.
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 698581096
  • Loading branch information
pmkc authored and copybara-github committed Nov 21, 2024
1 parent c3bb28f commit c610200
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 13 deletions.
7 changes: 4 additions & 3 deletions CHANGES.next.md
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,7 @@
- Make Ubuntu 24 the default os_type.

### New features:

- Add support for TimescaleDB
- Add support for Omni
- Add support for systems running fedora36 and fedora37
Expand Down Expand Up @@ -172,7 +173,7 @@
- Add support for multi-network creation/attachment. PKB currently does not
handle subnet creation on an existing network.
- Add support for GCE Confidential VM's.
- Add cos-dev, cost109, cos105, and cos101 OS support for GCP.
- Add cos-dev, cost109, and cos105 OS support for GCP.
- Add --object_ttl_days flag for lifecycle management of created buckets.
- Add support for multi-NIC netperf throughput on AWS.
- Added AWS/GCP support for Data Plane Development Kit (DPDK) on Linux VM's to
Expand Down Expand Up @@ -204,8 +205,8 @@
- Use Artifact Registry instead of the deprecated Google Container Registry
- Add `--capture_vm_logs` flag, which prompts PKB to capture `syslog`,
`journalctl`, and `sos report` (if supported) logs from Linux test VMs.
- Add `--vm_log_bucket` flag, offering users the option to upload the
logs captured via the `--capture_vm_logs` flag to a GCS bucket.
- Add `--vm_log_bucket` flag, offering users the option to upload the logs
captured via the `--capture_vm_logs` flag to a GCS bucket.
- Add chromium_compile_benchmark.
- Add unmanaged_postgresql_sysbench benchmark.

Expand Down
6 changes: 2 additions & 4 deletions perfkitbenchmarker/os_types.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,10 @@
AMAZON_NEURON = 'amazon_neuron'
CENTOS_STREAM9 = 'centos_stream9'
CLEAR = 'clear'
COS = 'cos' # stable
COS = 'cos'
COS_DEV = 'cos_dev'
COS109 = 'cos109'
COS105 = 'cos105'
COS101 = 'cos101'
COS_DEV = 'cos_dev'
CORE_OS = 'core_os'
DEBIAN11 = 'debian11'
DEBIAN11_BACKPORTS = 'debian11_backports'
Expand Down Expand Up @@ -89,7 +88,6 @@
COS,
COS109,
COS105,
COS101,
COS_DEV,
]

Expand Down
6 changes: 0 additions & 6 deletions perfkitbenchmarker/providers/gcp/gce_virtual_machine.py
Original file line number Diff line number Diff line change
Expand Up @@ -1773,12 +1773,6 @@ class Cos105BasedGceVirtualMachine(BaseCosBasedGceVirtualMachine):
DEFAULT_ARM_IMAGE_FAMILY = 'cos-arm64-105-lts'


class Cos101BasedGceVirtualMachine(BaseCosBasedGceVirtualMachine):
OS_TYPE = os_types.COS101
DEFAULT_X86_IMAGE_FAMILY = 'cos-101-lts'
DEFAULT_ARM_IMAGE_FAMILY = 'cos-arm64-101-lts'


class CoreOsBasedGceVirtualMachine(
BaseLinuxGceVirtualMachine, linux_vm.CoreOsMixin
):
Expand Down

0 comments on commit c610200

Please sign in to comment.