From 41841cd579224f81e1afefbe1d163734389d78ef Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?B=E1=B4=87=CA=80=C9=B4=E1=B4=85=20S=E1=B4=84=CA=9C?= =?UTF-8?q?=E1=B4=8F=CA=80=C9=A2=E1=B4=87=CA=80s?= Date: Fri, 12 Mar 2021 19:58:51 +0100 Subject: [PATCH] [intel-gpu-plugin] Fix casing (#659) * [intel-gpu-plugin] Fix casing * Fix README --- charts/intel-gpu-plugin/Chart.yaml | 2 +- charts/intel-gpu-plugin/README.md | 15 +++++++++++---- .../intel-gpu-plugin/README_CHANGELOG.md.gotmpl | 7 +++++++ charts/intel-gpu-plugin/templates/daemonset.yaml | 2 +- charts/intel-gpu-plugin/values.yaml | 2 +- 5 files changed, 21 insertions(+), 7 deletions(-) diff --git a/charts/intel-gpu-plugin/Chart.yaml b/charts/intel-gpu-plugin/Chart.yaml index c7ac5658..565da16c 100644 --- a/charts/intel-gpu-plugin/Chart.yaml +++ b/charts/intel-gpu-plugin/Chart.yaml @@ -1,6 +1,6 @@ apiVersion: v2 name: intel-gpu-plugin -version: 1.1.0 +version: 1.2.0 appVersion: 0.19.0 description: The Intel GPU plugin facilitates offloading the processing of computation intensive workloads to GPU hardware keywords: diff --git a/charts/intel-gpu-plugin/README.md b/charts/intel-gpu-plugin/README.md index 03122c87..ea13778f 100644 --- a/charts/intel-gpu-plugin/README.md +++ b/charts/intel-gpu-plugin/README.md @@ -1,6 +1,6 @@ # intel-gpu-plugin -![Version: 1.1.0](https://img.shields.io/badge/Version-1.1.0-informational?style=flat-square) ![AppVersion: 0.19.0](https://img.shields.io/badge/AppVersion-0.19.0-informational?style=flat-square) +![Version: 1.2.0](https://img.shields.io/badge/Version-1.2.0-informational?style=flat-square) ![AppVersion: 0.19.0](https://img.shields.io/badge/AppVersion-0.19.0-informational?style=flat-square) The Intel GPU plugin facilitates offloading the processing of computation intensive workloads to GPU hardware @@ -90,7 +90,7 @@ affinity: | fullnameOverride | string | `""` | | | image.pullPolicy | string | `"IfNotPresent"` | Image pull policy | | image.repository | string | `"intel/intel-gpu-plugin"` | Image repository | -| image.tag | string | `"0.18.1"` | Image tag. Possible values listed [here](https://hub.docker.com/r/intel/intel-gpu-plugin/tags) | +| image.tag | string | `"0.19.0"` | Image tag. Possible values listed [here](https://hub.docker.com/r/intel/intel-gpu-plugin/tags) | | imagePullSecrets | list | `[]` | | | nameOverride | string | `""` | | | nodeSelector | object | `{}` | | @@ -101,7 +101,7 @@ affinity: | serviceAccount.annotations | object | `{}` | | | serviceAccount.create | bool | `true` | | | serviceAccount.name | string | `""` | | -| shared_device_number | int | 1 | Number of containers sharing the same GPU device | +| sharedDeviceNumber | int | 1 | Number of containers sharing the same GPU device | | strategyType | string | `"Recreate"` | Specifies the strategy used to replace old Pods by new ones | | tolerations | list | `[]` | | @@ -111,6 +111,12 @@ All notable changes to this application Helm chart will be documented in this fi The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +### [1.2.0] + +#### Fixed + +- Renamed the `shared_device_number` value to `sharedDeviceNumber`. + ### [1.1.0] #### Added @@ -139,6 +145,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), - N/A +[1.2.0]: #1.2.0 [1.1.0]: #1.1.0 [1.0.1]: #1.0.1 @@ -150,4 +157,4 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), - Join our [Discord](https://discord.gg/sTMX7Vh) community ---------------------------------------------- -Autogenerated from chart metadata using [helm-docs v1.5.0](https://github.com/norwoodj/helm-docs/releases/v1.5.0) +Autogenerated from chart metadata using [helm-docs v1.5.0](https://github.com/norwoodj/helm-docs/releases/v1.5.0) \ No newline at end of file diff --git a/charts/intel-gpu-plugin/README_CHANGELOG.md.gotmpl b/charts/intel-gpu-plugin/README_CHANGELOG.md.gotmpl index d6152069..23a01739 100644 --- a/charts/intel-gpu-plugin/README_CHANGELOG.md.gotmpl +++ b/charts/intel-gpu-plugin/README_CHANGELOG.md.gotmpl @@ -9,6 +9,12 @@ All notable changes to this application Helm chart will be documented in this fi The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +### [1.2.0] + +#### Fixed + +- Renamed the `shared_device_number` value to `sharedDeviceNumber`. + ### [1.1.0] #### Added @@ -38,6 +44,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), - N/A +[1.2.0]: #1.2.0 [1.1.0]: #1.1.0 [1.0.1]: #1.0.1 {{- end -}} diff --git a/charts/intel-gpu-plugin/templates/daemonset.yaml b/charts/intel-gpu-plugin/templates/daemonset.yaml index ed7a3894..439661f7 100644 --- a/charts/intel-gpu-plugin/templates/daemonset.yaml +++ b/charts/intel-gpu-plugin/templates/daemonset.yaml @@ -38,7 +38,7 @@ spec: fieldPath: spec.nodeName args: - -shared-dev-num - - {{ .Values.shared_device_number | quote }} + - {{ .Values.sharedDeviceNumber | quote }} volumeMounts: - name: devfs mountPath: /dev/dri diff --git a/charts/intel-gpu-plugin/values.yaml b/charts/intel-gpu-plugin/values.yaml index 0940784c..ee6ea7da 100644 --- a/charts/intel-gpu-plugin/values.yaml +++ b/charts/intel-gpu-plugin/values.yaml @@ -26,7 +26,7 @@ serviceAccount: # -- Number of containers sharing the same GPU device # @default -- 1 -shared_device_number: 1 +sharedDeviceNumber: 1 # -- Key-value pairs to add as pod annotations podAnnotations: {}