Skip to content

Commit e0b73c1

Browse files
Update changelog for version 0.9.14 (#1872)
Added details for version 0.9.14 including bug fixes and new features. <!-- This is an auto-generated comment: release notes by coderabbit.ai --> ## Summary by CodeRabbit * **New Features** * Expanded NodePool spec to support GPU counts and GPU-based autoscaling, plus an autoscaling example. * Added OpenStack provider support with example manifest guidance. * **Bug Fixes** * Corrected removal of taints, annotations, and labels. * Removed unnecessary no-op tasks that could delay cluster creation. <!-- end of auto-generated comment: release notes by coderabbit.ai --> --------- Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 71e0563 commit e0b73c1

File tree

1 file changed

+40
-0
lines changed

1 file changed

+40
-0
lines changed

docs/CHANGELOG/changelog-0.9.x.md

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -328,3 +328,43 @@ kubernetes:
328328

329329
## Bug fixes
330330
- Prometheus metric for currently deleted nodes has been fixed [#1849](https://github.com/berops/claudie/pull/1849)
331+
332+
## v0.9.14
333+
334+
## What's Changed
335+
- Correctly remove taints,annotations,labels [#1852](https://github.com/berops/claudie/pull/1852)
336+
- In some cases unnecessary tasks were spawned which would prolong the building of the cluster without any side-effect, these have been removed [#1856](https://github.com/berops/claudie/pull/1856)
337+
- Expand machine spec to contain number of GPUs [#1854](https://github.com/berops/claudie/pull/1854)
338+
Inside the NodePool specification it is now possible to specify the number of GPUs the instance has
339+
which is made use of when autoscaling based on GPU workload.
340+
```
341+
- name: autoscaled
342+
providerSpec:
343+
name: aws
344+
region: eu-central-1
345+
zone: eu-central-1a
346+
autoscaler:
347+
min: 0
348+
max: 20
349+
# GPU machine type name.
350+
serverType: g4dn.xlarge
351+
machineSpec:
352+
# explicitly specify how many GPU's the instance type provides.
353+
nvidiaGpu: 1
354+
image: ami-07eef52105e8a2059
355+
```
356+
357+
- Add support for OpenStack provider, with the main aim of supporting the openstack offering from [OVH](https://www.ovhcloud.com/en/) [#1857](https://github.com/berops/claudie/pull/1857)
358+
It is now possible to use an openstack provider within the InputManifest.
359+
The support for openstack has been added in the `v0.9.14` version of the claudie templates.
360+
```
361+
- name: ovh-1
362+
providerType: openstack
363+
templates:
364+
repository: "https://github.com/berops/claudie-config"
365+
tag: v0.9.14
366+
path: "templates/terraformer/openstack"
367+
secretRef:
368+
name: ovh-secret
369+
namespace: e2e-secrets
370+
```

0 commit comments

Comments
 (0)