From 33f24b3e202f5d6bd143e054f31477870dcdaa68 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Javier=20J=2E=20Salmer=C3=B3n-Garc=C3=ADa?= Date: Mon, 15 Jan 2024 13:02:08 +0100 Subject: [PATCH] [bitnami/deepspeed] fix: :lock: Do not use the default service account (#21991) * [bitnami/deepspeed] fix: :lock: Do not use the default service account Signed-off-by: Javier Salmeron Garcia * test: :white_check_mark: Change branch for the examples Signed-off-by: Javier Salmeron Garcia --------- Signed-off-by: Javier Salmeron Garcia --- .vib/deepspeed/runtime-parameters.yaml | 2 +- bitnami/deepspeed/Chart.yaml | 2 +- bitnami/deepspeed/README.md | 4 ++-- bitnami/deepspeed/values.yaml | 4 ++-- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.vib/deepspeed/runtime-parameters.yaml b/.vib/deepspeed/runtime-parameters.yaml index 5737c6e552..0b69b99ce4 100644 --- a/.vib/deepspeed/runtime-parameters.yaml +++ b/.vib/deepspeed/runtime-parameters.yaml @@ -2,7 +2,7 @@ source: type: "git" git: repository: https://github.com/microsoft/DeepSpeedExamples - revision: master + revision: add-benchmarks client: podSecurityContext: enabled: true diff --git a/bitnami/deepspeed/Chart.yaml b/bitnami/deepspeed/Chart.yaml index 6bc1e9b574..232542fd68 100644 --- a/bitnami/deepspeed/Chart.yaml +++ b/bitnami/deepspeed/Chart.yaml @@ -35,4 +35,4 @@ name: deepspeed sources: - https://github.com/bitnami/charts/tree/main/bitnami/deepspeed - https://github.com/bitnami/charts/tree/main/bitnami/pytorch -version: 1.3.5 +version: 1.3.6 diff --git a/bitnami/deepspeed/README.md b/bitnami/deepspeed/README.md index 2f2513d603..fa12cd15bd 100644 --- a/bitnami/deepspeed/README.md +++ b/bitnami/deepspeed/README.md @@ -182,7 +182,7 @@ The command removes all the Kubernetes components associated with the chart and | `client.networkPolicy.enabled` | Enable creation of NetworkPolicy resources | `false` | | `client.networkPolicy.extraIngress` | Add extra ingress rules to the NetworkPolicy | `[]` | | `client.networkPolicy.extraEgress` | Add extra ingress rules to the NetworkPolicy | `[]` | -| `client.serviceAccount.create` | Enable creation of ServiceAccount for Client pods | `false` | +| `client.serviceAccount.create` | Enable creation of ServiceAccount for Client pods | `true` | | `client.serviceAccount.name` | The name of the ServiceAccount to use | `""` | | `client.serviceAccount.automountServiceAccountToken` | Allows auto mount of ServiceAccountToken on the serviceAccount created | `false` | | `client.serviceAccount.annotations` | Additional custom annotations for the ServiceAccount | `{}` | @@ -297,7 +297,7 @@ The command removes all the Kubernetes components associated with the chart and | `worker.externalAccess.service.labels` | Additional custom labels for Worker service | `{}` | | `worker.externalAccess.service.annotations` | Additional custom annotations for Worker service | `{}` | | `worker.externalAccess.service.extraPorts` | Extra ports to expose in the Worker service | `[]` | -| `worker.serviceAccount.create` | Enable creation of ServiceAccount for Data Coordinator pods | `false` | +| `worker.serviceAccount.create` | Enable creation of ServiceAccount for Data Coordinator pods | `true` | | `worker.serviceAccount.name` | The name of the ServiceAccount to use | `""` | | `worker.serviceAccount.automountServiceAccountToken` | Allows auto mount of ServiceAccountToken on the serviceAccount created | `false` | | `worker.serviceAccount.annotations` | Additional custom annotations for the ServiceAccount | `{}` | diff --git a/bitnami/deepspeed/values.yaml b/bitnami/deepspeed/values.yaml index 3ca1b4a3df..cb18cf727a 100644 --- a/bitnami/deepspeed/values.yaml +++ b/bitnami/deepspeed/values.yaml @@ -467,7 +467,7 @@ client: serviceAccount: ## @param client.serviceAccount.create Enable creation of ServiceAccount for Client pods ## - create: false + create: true ## @param client.serviceAccount.name The name of the ServiceAccount to use ## If not set and create is true, a name is generated using the common.names.fullname template ## @@ -858,7 +858,7 @@ worker: serviceAccount: ## @param worker.serviceAccount.create Enable creation of ServiceAccount for Data Coordinator pods ## - create: false + create: true ## @param worker.serviceAccount.name The name of the ServiceAccount to use ## If not set and create is true, a name is generated using the common.names.fullname template ##