[bitnami/deepspeed] fix: 🔒 Do not use the default service account (#21991)

* [bitnami/deepspeed] fix: 🔒 Do not use the default service account

Signed-off-by: Javier Salmeron Garcia <jsalmeron@vmware.com>

* test:  Change branch for the examples

Signed-off-by: Javier Salmeron Garcia <jsalmeron@vmware.com>

---------

Signed-off-by: Javier Salmeron Garcia <jsalmeron@vmware.com>
This commit is contained in:
Javier J. Salmerón-García
2024-01-15 13:02:08 +01:00
committed by GitHub
parent 7c6365aaaf
commit 33f24b3e20
4 changed files with 6 additions and 6 deletions

View File

@@ -2,7 +2,7 @@ source:
type: "git"
git:
repository: https://github.com/microsoft/DeepSpeedExamples
revision: master
revision: add-benchmarks
client:
podSecurityContext:
enabled: true

View File

@@ -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

View File

@@ -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 | `{}` |

View File

@@ -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
##