diff --git a/docs/reference-implementation/integrations/localstack.md b/docs/reference-implementation/integrations/localstack.md index e85059ed..260a8276 100644 --- a/docs/reference-implementation/integrations/localstack.md +++ b/docs/reference-implementation/integrations/localstack.md @@ -11,8 +11,8 @@ Please use the below command to deploy an IDP reference implementation with an A ```bash idpbuilder create \ --use-path-routing \ - --package-dir https://github.com/cnoe-io/stacks//ref-implementation \ - --package-dir https://github.com/cnoe-io/stacks//localstack-integration + --package https://github.com/cnoe-io/stacks//ref-implementation \ + --package https://github.com/cnoe-io/stacks//localstack-integration ``` As you see above, this add-on to `idpbuilder` has a dependency on the [reference implementation](https://github.com/cnoe-io/stacks/tree/main/ref-implementation). This command primarily does the following: diff --git a/docs/reference-implementation/integrations/reference-impl.md b/docs/reference-implementation/integrations/reference-impl.md index 8474357c..966139ff 100644 --- a/docs/reference-implementation/integrations/reference-impl.md +++ b/docs/reference-implementation/integrations/reference-impl.md @@ -34,7 +34,7 @@ Run the following command from the root of this repository. ```bash idpbuilder create --use-path-routing \ - --package-dir https://github.com/cnoe-io/stacks//ref-implementation + --package https://github.com/cnoe-io/stacks//ref-implementation ``` This will take ~6 minutes for everything to come up. To track the progress, you can go to the [ArgoCD UI](https://cnoe.localtest.me:8443/argocd/applications). @@ -155,7 +155,7 @@ Once you click the create button, you will have a very similar setup as the basi The only difference is we now have a resource for a S3 Bucket which is managed by Crossplane. Note that Bucket is **not** created because Crossplane doesn't have necessary credentials to do so. -If you'd like it to actually create a bucket, update [the credentials secret file](https://github.com/cnoe-io/stacks/blob/main/crossplane-integrations/crossplane-providers/provider-secret.yaml), then run `idpbuilder create --package-dir examples/ref-implementation`. +If you'd like it to actually create a bucket, update [the credentials secret file](https://github.com/cnoe-io/stacks/blob/main/crossplane-integrations/crossplane-providers/provider-secret.yaml), then run `idpbuilder create --package examples/ref-implementation`. In this example, we used Crossplane to provision resources, but you can use other cloud resource management tools such as Terraform instead. Regardless of your tool choice, concepts are the same. We use Backstage as the templating mechanism and UI for users, then use Kubernetes API with GitOps to deploy resources. diff --git a/docs/reference-implementation/integrations/terraform/terraform.md b/docs/reference-implementation/integrations/terraform/terraform.md index 86896b48..564ecbc5 100644 --- a/docs/reference-implementation/integrations/terraform/terraform.md +++ b/docs/reference-implementation/integrations/terraform/terraform.md @@ -12,8 +12,8 @@ Use the below command to deploy `idpbuilder` to make sure backstage terraform in ```bash idpbuilder create \ --use-path-routing \ - --package-dir https://github.com/cnoe-io/stacks//ref-implementation \ - --package-dir https://github.com/cnoe-io/stacks//terraform-integrations + --package https://github.com/cnoe-io/stacks//ref-implementation \ + --package https://github.com/cnoe-io/stacks//terraform-integrations ``` As you see above, this add-on to `idpbuilder` has a dependency on the [reference implementation](https://github.com/cnoe-io/stacks/tree/main/ref-implementation). This command primarily does the following: