Skip to content

Commit c7abd89

Browse files
authored
Merge pull request #393 from sap-contributions/update-carvel-provider-and-docu
Update carvel terraform provider and documentation
2 parents c98ebec + f7e34c1 commit c7abd89

File tree

4 files changed

+4
-18
lines changed

4 files changed

+4
-18
lines changed

docs/concourse/README.md

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -209,20 +209,6 @@ terragrunt run-all destroy
209209

210210
Delete terraform state gcp bucket from GCP console or via `gsutil`
211211

212-
### Carvel kapp terraform provider not available for Apple M1
213-
https://github.com/vmware-tanzu/terraform-provider-carvel/issues/30#issuecomment-1311465417
214-
215-
To compile the provider locally, clone the repository https://github.com/carvel-dev/terraform-provider and run:
216-
```
217-
go mod tidy
218-
go build -o terraform-provider-carvel ./cmd/main.go
219-
```
220-
Then copy the binary into the local Terraform "plugins" folder:
221-
```
222-
cp ./terraform-provider-carvel ~/.terraform.d/plugins/registry.terraform.io/vmware-tanzu/carvel/0.11.0/darwin_arm64
223-
```
224-
In case of Terraform checksum mismatches, go to a Terraform module and run "terraform init" to fix the checksums.
225-
226212
### Plan/apply terragrunt for a specific component of the stack
227213

228214
```sh

docs/concourse/concourse_minor_version_upgrade.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Please note the process should be also useful for upgrading major versions.
1111
1. Connect to your GCP account
1212
```
1313
gcloud auth login && gcloud auth application-default login
14-
gcloud set project <your project name>
14+
gcloud config set project <your project name>
1515
```
1616

1717
2. `cd` to a folder with concourse folder with `config.yaml` file
@@ -34,7 +34,7 @@ Please note the process should be also useful for upgrading major versions.
3434

3535
6. Apply roll-out for new Concourse version
3636
```
37-
terragrunt run-all plan --terragrunt-source-update
37+
terragrunt run-all apply --terragrunt-source-update
3838
```
3939

4040
At this point depending on your use case:

terraform-modules/concourse/app/providers.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ terraform {
44
source = "hashicorp/google"
55
}
66
carvel = {
7-
source = "registry.terraform.io/vmware-tanzu/carvel"
7+
source = "registry.terraform.io/carvel-dev/carvel"
88
}
99
}
1010
}

terraform-modules/concourse/backend/providers.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ terraform {
44
source = "hashicorp/google"
55
}
66
carvel = {
7-
source = "registry.terraform.io/vmware-tanzu/carvel"
7+
source = "registry.terraform.io/carvel-dev/carvel"
88
}
99
kubectl = {
1010
source = "registry.terraform.io/gavinbunney/kubectl"

0 commit comments

Comments
 (0)