Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,9 @@ terraform.rc

*.pem

# Terraform tfvars
k8s-training/terraform.tfvars

# IDE
.idea

Expand Down
11 changes: 7 additions & 4 deletions k8s-training/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,12 @@ To deploy a Kubernetes cluster, follow these steps:
terraform init
```

4. Replace the placeholder content
in `terraform.tfvars` with configuration values that meet your specific
requirements. See the details [below](#configuration-variables).
4. Copy the example variables file and fill in your values:
```bash
cp terraform.tfvars.example terraform.tfvars
```
Replace the placeholder content in `terraform.tfvars` with configuration
values that meet your specific requirements. See the details [below](#configuration-variables).

5. Preview the deployment plan:
```bash
Expand All @@ -67,7 +70,7 @@ To deploy a Kubernetes cluster, follow these steps:

## Configuration variables

These are the basic configurations required to deploy Kubernetes for training in Nebius AI. Edit the configurations as necessary in the `terraform.tfvars` file.
These are the basic configurations required to deploy Kubernetes for training in Nebius AI. Edit the configurations as necessary in your local `terraform.tfvars` file (copied from `terraform.tfvars.example`).

Additional configurable variables can be found in the `variables.tf` file.

Expand Down
File renamed without changes.