diff --git a/charts/shuffle/README.md b/charts/shuffle/README.md index 051687e0..495d2690 100644 --- a/charts/shuffle/README.md +++ b/charts/shuffle/README.md @@ -241,7 +241,7 @@ SHUFFLE_ENCRYPTION_MODIFIER: "MyShuffleEncryptionModifier" | `backend.serviceAccount.create` | Specifies whether a ServiceAccount should be created | `true` | | `backend.serviceAccount.name` | The name of the ServiceAccount to use. | `""` | | `backend.serviceAccount.annotations` | Additional Service Account annotations (evaluated as a template) | `{}` | -| `backend.serviceAccount.automountServiceAccountToken` | Automount service account token for the server service account | `true` | +| `backend.serviceAccount.automountServiceAccountToken` | Automount service account token for the backend service account | `true` | | `backend.serviceAccount.imagePullSecrets` | Add image pull secrets to the backend service account | `[]` | | `backend.rbac.create` | Specifies whether RBAC resources should be created | `true` | | `backend.networkPolicy.enabled` | Specifies whether a NetworkPolicy should be created | `true` | @@ -359,7 +359,7 @@ SHUFFLE_ENCRYPTION_MODIFIER: "MyShuffleEncryptionModifier" | `frontend.serviceAccount.create` | Specifies whether a ServiceAccount should be created | `true` | | `frontend.serviceAccount.name` | The name of the ServiceAccount to use. | `""` | | `frontend.serviceAccount.annotations` | Additional Service Account annotations (evaluated as a template) | `{}` | -| `frontend.serviceAccount.automountServiceAccountToken` | Automount service account token for the server service account | `true` | +| `frontend.serviceAccount.automountServiceAccountToken` | Automount service account token for the frontend service account | `true` | | `frontend.serviceAccount.imagePullSecrets` | Add image pull secrets to the frontend service account | `[]` | | `frontend.networkPolicy.enabled` | Specifies whether a NetworkPolicy should be created | `true` | | `frontend.networkPolicy.allowExternal` | Don't require server label for connections | `true` | @@ -466,7 +466,7 @@ SHUFFLE_ENCRYPTION_MODIFIER: "MyShuffleEncryptionModifier" | `orborus.serviceAccount.create` | Specifies whether a ServiceAccount should be created | `true` | | `orborus.serviceAccount.name` | The name of the ServiceAccount to use. | `""` | | `orborus.serviceAccount.annotations` | Additional Service Account annotations (evaluated as a template) | `{}` | -| `orborus.serviceAccount.automountServiceAccountToken` | Automount service account token for the server service account | `true` | +| `orborus.serviceAccount.automountServiceAccountToken` | Automount service account token for the orborus service account | `true` | | `orborus.serviceAccount.imagePullSecrets` | Add image pull secrets to the orborus service account | `[]` | | `orborus.rbac.create` | Specifies whether RBAC resources should be created | `true` | | `orborus.networkPolicy.enabled` | Specifies whether a NetworkPolicy should be created | `true` | @@ -485,7 +485,7 @@ SHUFFLE_ENCRYPTION_MODIFIER: "MyShuffleEncryptionModifier" | `worker.serviceAccount.create` | Specifies whether a ServiceAccount should be created | `true` | | `worker.serviceAccount.name` | The name of the ServiceAccount to use. | `""` | | `worker.serviceAccount.annotations` | Additional Service Account annotations (evaluated as a template) | `{}` | -| `worker.serviceAccount.automountServiceAccountToken` | Automount service account token for the server service account | `true` | +| `worker.serviceAccount.automountServiceAccountToken` | Automount service account token for the worker service account | `true` | | `worker.serviceAccount.imagePullSecrets` | Add image pull secrets to the worker service account | `[]` | | `worker.rbac.create` | Specifies whether RBAC resources should be created | `true` | | `worker.networkPolicy.enabled` | Specifies whether a NetworkPolicy should be created | `true` | @@ -501,7 +501,7 @@ SHUFFLE_ENCRYPTION_MODIFIER: "MyShuffleEncryptionModifier" | `app.serviceAccount.create` | Specifies whether a ServiceAccount should be created | `true` | | `app.serviceAccount.name` | The name of the ServiceAccount to use. | `""` | | `app.serviceAccount.annotations` | Additional Service Account annotations (evaluated as a template) | `{}` | -| `app.serviceAccount.automountServiceAccountToken` | Automount service account token for the server service account | `true` | +| `app.serviceAccount.automountServiceAccountToken` | Automount service account token for the app service account | `true` | | `app.serviceAccount.imagePullSecrets` | Add image pull secrets to the app service account | `[]` | | `app.rbac.create` | Specifies whether RBAC resources should be created | `true` | | `app.networkPolicy.enabled` | Specifies whether a NetworkPolicy should be created | `true` | @@ -605,5 +605,3 @@ SHUFFLE_ENCRYPTION_MODIFIER: "MyShuffleEncryptionModifier" ### Other Parameters - - diff --git a/charts/shuffle/values.schema.json b/charts/shuffle/values.schema.json index f7745e6e..7a85b9fa 100644 --- a/charts/shuffle/values.schema.json +++ b/charts/shuffle/values.schema.json @@ -713,7 +713,7 @@ }, "automountServiceAccountToken": { "type": "boolean", - "description": "Automount service account token for the server service account", + "description": "Automount service account token for the backend service account", "default": true }, "imagePullSecrets": { @@ -1402,7 +1402,7 @@ }, "automountServiceAccountToken": { "type": "boolean", - "description": "Automount service account token for the server service account", + "description": "Automount service account token for the frontend service account", "default": true }, "imagePullSecrets": { @@ -2021,7 +2021,7 @@ }, "automountServiceAccountToken": { "type": "boolean", - "description": "Automount service account token for the server service account", + "description": "Automount service account token for the orborus service account", "default": true }, "imagePullSecrets": { @@ -2119,7 +2119,7 @@ }, "automountServiceAccountToken": { "type": "boolean", - "description": "Automount service account token for the server service account", + "description": "Automount service account token for the worker service account", "default": true }, "imagePullSecrets": { @@ -2197,7 +2197,7 @@ }, "automountServiceAccountToken": { "type": "boolean", - "description": "Automount service account token for the server service account", + "description": "Automount service account token for the app service account", "default": true }, "imagePullSecrets": { diff --git a/charts/shuffle/values.yaml b/charts/shuffle/values.yaml index 60fde98d..35492f94 100644 --- a/charts/shuffle/values.yaml +++ b/charts/shuffle/values.yaml @@ -453,7 +453,7 @@ backend: ## @param backend.serviceAccount.annotations Additional Service Account annotations (evaluated as a template) ## annotations: {} - ## @param backend.serviceAccount.automountServiceAccountToken Automount service account token for the server service account + ## @param backend.serviceAccount.automountServiceAccountToken Automount service account token for the backend service account ## automountServiceAccountToken: true ## @param backend.serviceAccount.imagePullSecrets Add image pull secrets to the backend service account @@ -921,7 +921,7 @@ frontend: ## @param frontend.serviceAccount.annotations Additional Service Account annotations (evaluated as a template) ## annotations: {} - ## @param frontend.serviceAccount.automountServiceAccountToken Automount service account token for the server service account + ## @param frontend.serviceAccount.automountServiceAccountToken Automount service account token for the frontend service account ## automountServiceAccountToken: true ## @param frontend.serviceAccount.imagePullSecrets Add image pull secrets to the frontend service account @@ -1325,7 +1325,7 @@ orborus: ## @param orborus.serviceAccount.annotations Additional Service Account annotations (evaluated as a template) ## annotations: {} - ## @param orborus.serviceAccount.automountServiceAccountToken Automount service account token for the server service account + ## @param orborus.serviceAccount.automountServiceAccountToken Automount service account token for the orborus service account ## automountServiceAccountToken: true ## @param orborus.serviceAccount.imagePullSecrets Add image pull secrets to the orborus service account @@ -1399,7 +1399,7 @@ worker: ## @param worker.serviceAccount.annotations Additional Service Account annotations (evaluated as a template) ## annotations: {} - ## @param worker.serviceAccount.automountServiceAccountToken Automount service account token for the server service account + ## @param worker.serviceAccount.automountServiceAccountToken Automount service account token for the worker service account ## automountServiceAccountToken: true ## @param worker.serviceAccount.imagePullSecrets Add image pull secrets to the worker service account @@ -1461,7 +1461,7 @@ app: ## @param app.serviceAccount.annotations Additional Service Account annotations (evaluated as a template) ## annotations: {} - ## @param app.serviceAccount.automountServiceAccountToken Automount service account token for the server service account + ## @param app.serviceAccount.automountServiceAccountToken Automount service account token for the app service account ## NOTE: You likely want to allow access to cluster-proxies, e.g: ## extraEgress: ## - to: