You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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>
- 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.
0 commit comments