Skip to content

Commit 3bbba3f

Browse files
Merge branch 'master' into openapi-response-format
2 parents 90c6fa8 + 434377b commit 3bbba3f

File tree

151 files changed

+298
-1264
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

151 files changed

+298
-1264
lines changed

.github/full-logo-black.svg

Lines changed: 15 additions & 0 deletions
Loading

.github/full-logo-white.svg

Lines changed: 20 additions & 0 deletions
Loading

README.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
<a href="https://cast.ai">
2-
<img src="https://cast.ai/wp-content/themes/cast/img/cast-logo-dark-blue.svg" align="right" height="100" />
2+
<picture>
3+
<source media="(prefers-color-scheme: dark)" srcset=".github/full-logo-white.svg">
4+
<source media="(prefers-color-scheme: light)" srcset=".github/full-logo-black.svg">
5+
<img src=".github/full-logo-black.svg" alt="Cast AI logo" title="Cast AI" align="right" height="50">
6+
</picture>
37
</a>
48

59
Terraform Provider for CAST AI

castai/sdk/api.gen.go

Lines changed: 10 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

examples/aks/aks_cluster/README.MD

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,19 +7,19 @@ Example configuration should be analysed in the following order:
77
3. Create CAST AI related resources to connect AKS cluster to CAST AI - `castai.tf`
88

99
# Usage
10-
1. Rename `tf.vars.example` to `tf.vars`
11-
2. Update `tf.vars` file with your cluster name, cluster region and CAST AI API token.
10+
1. Copy `terraform.tfvars.example` to `terraform.tfvars`
11+
2. Update `terraform.tfvars` file with your cluster name, cluster region and CAST AI API token.
1212
3. Initialize Terraform. Under example root folder run:
1313
```
1414
terraform init
1515
```
1616
4. Run Terraform apply:
1717
```
18-
terraform apply -var-file=tf.vars
18+
terraform apply
1919
```
2020
5. To destroy resources created by this example:
2121
```
22-
terraform destroy -var-file=tf.vars
22+
terraform destroy
2323
```
2424

2525
Please refer to this guide if you run into any issues https://docs.cast.ai/docs/terraform-troubleshooting

examples/aks/aks_cluster/castai.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ provider "helm" {
2020
# Configure AKS cluster connection to CAST AI using CAST AI aks-cluster module.
2121
module "castai-aks-cluster" {
2222
source = "castai/aks/castai"
23-
version = "~> 9.0"
23+
version = "~> 10.3"
2424

2525
api_url = var.castai_api_url
2626
castai_api_token = var.castai_api_token
File renamed without changes.

examples/aks/aks_cluster_arm_template/README.MD

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,19 +7,19 @@ Example configuration should be analysed in the following order:
77
3. Create CAST AI related resources to connect AKS cluster to CAST AI, configure Autoscaler and Node Configurations - `castai.tf`
88

99
# Usage
10-
1. Rename `tf.vars.example` to `tf.vars`
11-
2. Update `tf.vars` file with your cluster name, cluster region and CAST AI API token.
10+
1. Copy `terraform.tfvars.example` to `terraform.tfvars`
11+
2. Update `terraform.tfvars` file with your cluster name, cluster region and CAST AI API token.
1212
3. Initialize Terraform. Under example root folder run:
1313
```
1414
terraform init
1515
```
1616
4. Run Terraform apply:
1717
```
18-
terraform apply -var-file=tf.vars
18+
terraform apply
1919
```
2020
5. To destroy resources created by this example:
2121
```
22-
terraform destroy -var-file=tf.vars
22+
terraform destroy
2323
```
2424

2525
Please refer to this guide if you run into any issues https://docs.cast.ai/docs/terraform-troubleshooting

examples/aks/aks_cluster_arm_template/castai.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ provider "helm" {
2020
# Configure AKS cluster connection to CAST AI using CAST AI aks-cluster module.
2121
module "castai-aks-cluster" {
2222
source = "castai/aks/castai"
23-
version = "~> 9.0"
23+
version = "~> 10.3"
2424

2525
api_url = var.castai_api_url
2626
castai_api_token = var.castai_api_token

examples/aks/aks_cluster_arm_template/tf.vars.example renamed to examples/aks/aks_cluster_arm_template/terraform.tfvars.example

File renamed without changes.

0 commit comments

Comments
 (0)