Small edits

This commit is contained in:
revital 2025-06-03 07:36:54 +03:00
parent 9ca8f1cf82
commit 77e760bfa0
6 changed files with 13 additions and 13 deletions

View File

@ -34,7 +34,7 @@ It can only configure access for ClearML Tasks within its own namespace.
### Login
``` bash
```bash
helm repo add clearml-enterprise https://raw.githubusercontent.com/clearml/clearml-enterprise-helm-charts/gh-pages --username <GITHUB_TOKEN> --password <GITHUB_TOKEN>
```
@ -80,7 +80,7 @@ tcpSession:
The full list of supported configuration is available with the command:
``` bash
```bash
helm show readme clearml-enterprise/clearml-enterprise-app-gateway
```
@ -88,7 +88,7 @@ helm show readme clearml-enterprise/clearml-enterprise-app-gateway
To install the App Gateway component via Helm use the following command:
``` bash
```bash
helm upgrade --install <RELEASE_NAME> -n <WORKLOAD_NAMESPACE> clearml-enterprise/clearml-enterprise-app-gateway --version <CHART_VERSION> -f clearml-app-gateway-values.override.yaml
```

View File

@ -47,7 +47,7 @@ devicePlugin:
Install the `gpu-operator`:
``` bash
```bash
helm install -n gpu-operator gpu-operator nvidia/gpu-operator --create-namespace -f gpu-operator.override.yaml
```

View File

@ -203,7 +203,7 @@ This label is used by the CFGI to assign the correct portion of GPU resources to
Starting from version 1.3.0, there is no need to specify the resources field. You only need to set the labels:
``` yaml
```yaml
agentk8sglue:
createQueues: true
queues:

View File

@ -46,12 +46,12 @@ For optimal performance, a Kubernetes cluster with at least 3 nodes is recommend
Add the ClearML Helm repository:
``` bash
```bash
helm repo add clearml-enterprise https://raw.githubusercontent.com/clearml/clearml-enterprise-helm-charts/gh-pages --username <HELM_REPO_TOKEN> --password <HELM_REPO_TOKEN>
```
Update the local repository:
``` bash
```bash
helm repo update
```
@ -64,7 +64,7 @@ In the following configuration, replace the `<BASE_DOMAIN>` placeholders with a
pointing to the cluster's Ingress Controller. This will be the base domain for reaching your ClearML installation.
:::
``` yaml
```yaml
imageCredentials:
password: "<CLEARML_DOCKERHUB_TOKEN>"
clearml:
@ -126,7 +126,7 @@ Kubernetes.
If you need to define your own credentials to be used instead, replace the default key and secret values in `clearml-values.override.yaml`.
``` yaml
```yaml
clearml:
# Replace the following values to use custom internal credentials.
apiserverKey: ""
@ -140,7 +140,7 @@ clearml:
In a shell, if `openssl` is installed, you can use this simple command to generate random strings suitable as keys and secrets:
``` bash
```bash
openssl rand -hex 16
```
@ -151,7 +151,7 @@ installations. This is an optional step in case the SSO (Identity provider) conf
Please note that this setup is not ideal for multi-tenant setups as fixed users will only be associated with the default tenant.
``` yaml
```yaml
apiserver:
additionalConfigs:
apiserver.conf: |

View File

@ -287,7 +287,7 @@ For each group you define in the configuration, you need to specify the followin
| `name` | Display name for the group (should match `<GroupName>` used in the variable path) | `CLEARML__services__auth__default_groups__<GroupName>__name` | `"My Group Name"`, `"MLOps Team"` |
| `features` | JSON list of features to enable for this group . For the complete list of available features, see [Available Features](#available-features). Note that the features must be defined for the tenant or for the entire server in order to affect the group. By default, all the features of the tenant are available to all users. | `CLEARML__services__auth__default_groups__<GroupName>__features` | `'["applications", "experiments", "pipelines", "reports", "show_dashboard", "show_projects"]'` (Note the single quotes wrapping the JSON string if setting via YAML/environment variables). |
| `assignable` | Whether admins can assign users to this group from the ClearML Web UI (`true`/`false`). If `false`, group membership is managed externally or implicitly. | `CLEARML__services__auth__default_groups__<GroupName>__assignable` | `"false"` |
| `system` | Always set to `"false"` for custom groups | ``CLEARML__services__auth__default_groups__<GroupName>__system` | `"false"` |
| `system` | Always set to `"false"` for custom groups | `CLEARML__services__auth__default_groups__<GroupName>__system` | `"false"` |
##### Example Configuration

View File

@ -12,7 +12,7 @@ on a remote or local machine, from a remote repository and your local machine.
### Executing Code from a Remote Repository
``` bash
```bash
clearml-task --project keras_examples --name remote_test --repo https://github.com/clearml/events.git --branch master --script /webinar-0620/keras_mnist.py --args batch_size=64 epochs=1 --queue default
```