From e1b40c602caba3c6ad12e5dc97fb6f7810c4729c Mon Sep 17 00:00:00 2001 From: Crossplane Date: Fri, 9 Oct 2020 21:50:41 +0000 Subject: [PATCH] docs snapshot for crossplane version `v0.13` --- .../v0.13/cloud-providers/aws/aws-provider.md | 4 +-- .../v0.13/cloud-providers/gcp/gcp-provider.md | 2 +- .../getting-started/compose-infrastructure.md | 12 ++++---- .../getting-started/install-configure.md | 10 +++---- .../getting-started/package-infrastructure.md | 30 +++++++++---------- .../provision-infrastructure.md | 8 ++--- .../v0.13/getting-started/run-applications.md | 10 +++---- 7 files changed, 38 insertions(+), 38 deletions(-) diff --git a/docs/v0.13/cloud-providers/aws/aws-provider.md b/docs/v0.13/cloud-providers/aws/aws-provider.md index 6c2a8218..8918f2c8 100644 --- a/docs/v0.13/cloud-providers/aws/aws-provider.md +++ b/docs/v0.13/cloud-providers/aws/aws-provider.md @@ -28,8 +28,8 @@ Run `setup.sh` to read `aws` credentials and region, and create an `aws provider` instance in Crossplane: ```bash -curl -O https://raw.githubusercontent.com/crossplane/crossplane/master/docs/snippets/configure/aws/provider.yaml -curl -O https://raw.githubusercontent.com/crossplane/crossplane/master/docs/snippets/configure/aws/setup.sh +curl -O https://raw.githubusercontent.com/crossplane/crossplane/release-0.13/docs/snippets/configure/aws/provider.yaml +curl -O https://raw.githubusercontent.com/crossplane/crossplane/release-0.13/docs/snippets/configure/aws/setup.sh ./setup.sh [--profile aws_profile] ``` diff --git a/docs/v0.13/cloud-providers/gcp/gcp-provider.md b/docs/v0.13/cloud-providers/gcp/gcp-provider.md index 3ac5acfe..6ffe4e04 100644 --- a/docs/v0.13/cloud-providers/gcp/gcp-provider.md +++ b/docs/v0.13/cloud-providers/gcp/gcp-provider.md @@ -33,7 +33,7 @@ account will have access to the services and roles sufficient to run the Crossplane GCP examples. ```bash -curl -O https://raw.githubusercontent.com/crossplane/crossplane/master/docs/snippets/configure/gcp/credentials.sh +curl -O https://raw.githubusercontent.com/crossplane/crossplane/release-0.13/docs/snippets/configure/gcp/credentials.sh ./credentials.sh # ... EXAMPLE OUTPUT ONLY # export ORGANIZATION_ID=987654321 diff --git a/docs/v0.13/getting-started/compose-infrastructure.md b/docs/v0.13/getting-started/compose-infrastructure.md index 4afffe7f..a58e539d 100644 --- a/docs/v0.13/getting-started/compose-infrastructure.md +++ b/docs/v0.13/getting-started/compose-infrastructure.md @@ -143,7 +143,7 @@ spec: ``` ```console -kubectl apply -f https://raw.githubusercontent.com/crossplane/crossplane/master/docs/snippets/compose/claim-aws.yaml +kubectl apply -f https://raw.githubusercontent.com/crossplane/crossplane/release-0.13/docs/snippets/compose/claim-aws.yaml ``` @@ -167,7 +167,7 @@ spec: ``` ```console -kubectl apply -f https://raw.githubusercontent.com/crossplane/crossplane/master/docs/snippets/compose/claim-aws.yaml +kubectl apply -f https://raw.githubusercontent.com/crossplane/crossplane/release-0.13/docs/snippets/compose/claim-aws.yaml ``` @@ -190,7 +190,7 @@ spec: ``` ```console -kubectl apply -f https://raw.githubusercontent.com/crossplane/crossplane/master/docs/snippets/compose/claim-gcp.yaml +kubectl apply -f https://raw.githubusercontent.com/crossplane/crossplane/release-0.13/docs/snippets/compose/claim-gcp.yaml ``` @@ -213,7 +213,7 @@ spec: ``` ```console -kubectl apply -f https://raw.githubusercontent.com/crossplane/crossplane/master/docs/snippets/compose/claim-azure.yaml +kubectl apply -f https://raw.githubusercontent.com/crossplane/crossplane/release-0.13/docs/snippets/compose/claim-azure.yaml ``` @@ -236,7 +236,7 @@ spec: ``` ```console -kubectl apply -f https://raw.githubusercontent.com/crossplane/crossplane/master/docs/snippets/compose/claim-alibaba.yaml +kubectl apply -f https://raw.githubusercontent.com/crossplane/crossplane/release-0.13/docs/snippets/compose/claim-alibaba.yaml ``` @@ -332,7 +332,7 @@ spec: ``` ```console -kubectl apply -f https://raw.githubusercontent.com/crossplane/crossplane/master/docs/snippets/compose/pod.yaml +kubectl apply -f https://raw.githubusercontent.com/crossplane/crossplane/release-0.13/docs/snippets/compose/pod.yaml ``` This `Pod` simply connects to a PostgreSQL database and prints its name, so you diff --git a/docs/v0.13/getting-started/install-configure.md b/docs/v0.13/getting-started/install-configure.md index 4e8274f3..93c5aaf7 100644 --- a/docs/v0.13/getting-started/install-configure.md +++ b/docs/v0.13/getting-started/install-configure.md @@ -128,7 +128,7 @@ kubectl get all -n crossplane-system The Crossplane CLI extends `kubectl` with functionality to build, push, and install [Crossplane packages]: ```console -curl -sL https://raw.githubusercontent.com/crossplane/crossplane/master/install.sh | sh +curl -sL https://raw.githubusercontent.com/crossplane/crossplane/release-0.13/install.sh | sh ``` ## Select Provider @@ -147,7 +147,7 @@ Install and configure a provider for Crossplane to use for infrastructure provis ### Install AWS Provider ```console -kubectl crossplane install provider crossplane/provider-aws:master +kubectl crossplane install provider crossplane/provider-aws:v0.12.0 ``` ### Get AWS Account Keyfile @@ -194,7 +194,7 @@ kubectl apply -f provider.yaml ### Install GCP Provider ```console -kubectl crossplane install provider crossplane/provider-gcp:master +kubectl crossplane install provider crossplane/provider-gcp:v0.12.0 ``` ### Get GCP Account Keyfile @@ -259,7 +259,7 @@ kubectl apply -f provider.yaml ### Install Azure Provider ```console -kubectl crossplane install provider crossplane/provider-azure:master +kubectl crossplane install provider crossplane/provider-azure:v0.12.0 ``` ### Get Azure Principal Keyfile @@ -321,7 +321,7 @@ kubectl apply -f provider.yaml ### Install Alibaba Provider ```console -kubectl crossplane install provider crossplane/provider-alibaba:master +kubectl crossplane install provider crossplane/provider-alibaba:v0.3.0 ``` ### Create a Provider Secret diff --git a/docs/v0.13/getting-started/package-infrastructure.md b/docs/v0.13/getting-started/package-infrastructure.md index d6907b99..f8ba502c 100644 --- a/docs/v0.13/getting-started/package-infrastructure.md +++ b/docs/v0.13/getting-started/package-infrastructure.md @@ -108,7 +108,7 @@ spec: ``` ```console -curl -OL https://raw.githubusercontent.com/crossplane/crossplane/master/docs/snippets/package/aws/definition.yaml +curl -OL https://raw.githubusercontent.com/crossplane/crossplane/release-0.13/docs/snippets/package/aws/definition.yaml ``` @@ -153,7 +153,7 @@ spec: ``` ```console -curl -OL https://raw.githubusercontent.com/crossplane/crossplane/master/docs/snippets/package/aws-with-vpc/definition.yaml +curl -OL https://raw.githubusercontent.com/crossplane/crossplane/release-0.13/docs/snippets/package/aws-with-vpc/definition.yaml ``` @@ -198,7 +198,7 @@ spec: ``` ```console -curl -OL https://raw.githubusercontent.com/crossplane/crossplane/master/docs/snippets/package/gcp/definition.yaml +curl -OL https://raw.githubusercontent.com/crossplane/crossplane/release-0.13/docs/snippets/package/gcp/definition.yaml ``` @@ -243,7 +243,7 @@ spec: ``` ```console -curl -OL https://raw.githubusercontent.com/crossplane/crossplane/master/docs/snippets/package/azure/definition.yaml +curl -OL https://raw.githubusercontent.com/crossplane/crossplane/release-0.13/docs/snippets/package/azure/definition.yaml ``` @@ -288,7 +288,7 @@ spec: ``` ```console -curl -OL https://raw.githubusercontent.com/crossplane/crossplane/master/docs/snippets/package/alibaba/definition.yaml +curl -OL https://raw.githubusercontent.com/crossplane/crossplane/release-0.13/docs/snippets/package/alibaba/definition.yaml ``` @@ -368,7 +368,7 @@ spec: ``` ```console -curl -OL https://raw.githubusercontent.com/crossplane/crossplane/master/docs/snippets/package/aws/composition.yaml +curl -OL https://raw.githubusercontent.com/crossplane/crossplane/release-0.13/docs/snippets/package/aws/composition.yaml ``` @@ -533,7 +533,7 @@ spec: ``` ```console -curl -OL https://raw.githubusercontent.com/crossplane/crossplane/master/docs/snippets/package/aws-with-vpc/composition.yaml +curl -OL https://raw.githubusercontent.com/crossplane/crossplane/release-0.13/docs/snippets/package/aws-with-vpc/composition.yaml ``` @@ -587,7 +587,7 @@ spec: ``` ```console -curl -OL https://raw.githubusercontent.com/crossplane/crossplane/master/docs/snippets/package/gcp/composition.yaml +curl -OL https://raw.githubusercontent.com/crossplane/crossplane/release-0.13/docs/snippets/package/gcp/composition.yaml ``` @@ -669,7 +669,7 @@ spec: ``` ```console -curl -OL https://raw.githubusercontent.com/crossplane/crossplane/master/docs/snippets/package/azure/composition.yaml +curl -OL https://raw.githubusercontent.com/crossplane/crossplane/release-0.13/docs/snippets/package/azure/composition.yaml ``` @@ -718,7 +718,7 @@ spec: ``` ```console -curl -OL https://raw.githubusercontent.com/crossplane/crossplane/master/docs/snippets/package/alibaba/composition.yaml +curl -OL https://raw.githubusercontent.com/crossplane/crossplane/release-0.13/docs/snippets/package/alibaba/composition.yaml ``` @@ -756,7 +756,7 @@ metadata: ``` ```console -curl -OL https://raw.githubusercontent.com/crossplane/crossplane/master/docs/snippets/package/aws/crossplane.yaml +curl -OL https://raw.githubusercontent.com/crossplane/crossplane/release-0.13/docs/snippets/package/aws/crossplane.yaml # Set this to the Docker Hub username or OCI registry you wish to use. REG=my-package-repo @@ -780,7 +780,7 @@ metadata: ``` ```console -curl -OL https://raw.githubusercontent.com/crossplane/crossplane/master/docs/snippets/package/aws-with-vpc/crossplane.yaml +curl -OL https://raw.githubusercontent.com/crossplane/crossplane/release-0.13/docs/snippets/package/aws-with-vpc/crossplane.yaml # Set this to the Docker Hub username or OCI registry you wish to use. REG=my-package-repo @@ -803,7 +803,7 @@ metadata: ``` ```console -curl -OL https://raw.githubusercontent.com/crossplane/crossplane/master/docs/snippets/package/gcp/crossplane.yaml +curl -OL https://raw.githubusercontent.com/crossplane/crossplane/release-0.13/docs/snippets/package/gcp/crossplane.yaml # Set this to the Docker Hub username or OCI registry you wish to use. REG=my-package-repo @@ -826,7 +826,7 @@ metadata: ``` ```console -curl -OL https://raw.githubusercontent.com/crossplane/crossplane/master/docs/snippets/package/azure/crossplane.yaml +curl -OL https://raw.githubusercontent.com/crossplane/crossplane/release-0.13/docs/snippets/package/azure/crossplane.yaml # Set this to the Docker Hub username or OCI registry you wish to use. REG=my-package-repo @@ -849,7 +849,7 @@ metadata: ``` ```console -curl -OL https://raw.githubusercontent.com/crossplane/crossplane/master/docs/snippets/package/alibaba/crossplane.yaml +curl -OL https://raw.githubusercontent.com/crossplane/crossplane/release-0.13/docs/snippets/package/alibaba/crossplane.yaml # Set this to the Docker Hub username or OCI registry you wish to use. REG=my-package-repo diff --git a/docs/v0.13/getting-started/provision-infrastructure.md b/docs/v0.13/getting-started/provision-infrastructure.md index 2f234dbd..892becfc 100644 --- a/docs/v0.13/getting-started/provision-infrastructure.md +++ b/docs/v0.13/getting-started/provision-infrastructure.md @@ -49,7 +49,7 @@ spec: ``` ```console -kubectl apply -f https://raw.githubusercontent.com/crossplane/crossplane/master/docs/snippets/provision/aws.yaml +kubectl apply -f https://raw.githubusercontent.com/crossplane/crossplane/release-0.13/docs/snippets/provision/aws.yaml ``` Creating the above instance will cause Crossplane to provision an RDS instance @@ -97,7 +97,7 @@ spec: ``` ```console -kubectl apply -f https://raw.githubusercontent.com/crossplane/crossplane/master/docs/snippets/provision/gcp.yaml +kubectl apply -f https://raw.githubusercontent.com/crossplane/crossplane/release-0.13/docs/snippets/provision/gcp.yaml ``` Creating the above instance will cause Crossplane to provision a CloudSQL @@ -163,7 +163,7 @@ spec: ``` ```console -kubectl apply -f https://raw.githubusercontent.com/crossplane/crossplane/master/docs/snippets/provision/azure.yaml +kubectl apply -f https://raw.githubusercontent.com/crossplane/crossplane/release-0.13/docs/snippets/provision/azure.yaml ``` Creating the above instance will cause Crossplane to provision a PostgreSQL @@ -213,7 +213,7 @@ spec: ``` ```console -kubectl apply -f https://raw.githubusercontent.com/crossplane/crossplane/master/docs/snippets/provision/alibaba.yaml +kubectl apply -f https://raw.githubusercontent.com/crossplane/crossplane/release-0.13/docs/snippets/provision/alibaba.yaml ``` Creating the above instance will cause Crossplane to provision an RDS instance diff --git a/docs/v0.13/getting-started/run-applications.md b/docs/v0.13/getting-started/run-applications.md index 9d9c52f7..cb437cb3 100644 --- a/docs/v0.13/getting-started/run-applications.md +++ b/docs/v0.13/getting-started/run-applications.md @@ -76,7 +76,7 @@ Run the following command to add support for all the workloads and traits requir by this guide: ```console -kubectl apply -f https://raw.githubusercontent.com/crossplane/crossplane/master/docs/snippets/run/definitions.yaml +kubectl apply -f https://raw.githubusercontent.com/crossplane/crossplane/release-0.13/docs/snippets/run/definitions.yaml ``` ## Application Developer @@ -292,7 +292,7 @@ spec: ``` ```console -kubectl apply -f https://raw.githubusercontent.com/crossplane/crossplane/master/docs/snippets/run/components.yaml +kubectl apply -f https://raw.githubusercontent.com/crossplane/crossplane/release-0.13/docs/snippets/run/components.yaml ``` Each of the above components describes a particular kind of workload. The @@ -376,7 +376,7 @@ spec: ``` ```console -kubectl apply -f https://raw.githubusercontent.com/crossplane/crossplane/master/docs/snippets/run/appconfig.yaml +kubectl apply -f https://raw.githubusercontent.com/crossplane/crossplane/release-0.13/docs/snippets/run/appconfig.yaml ``` This application configuration names each of components the application @@ -464,8 +464,8 @@ If you also wish to delete the components, workload definitions, and trait definitions we created in this guide, run: ```console -kubectl delete -f https://raw.githubusercontent.com/crossplane/crossplane/master/docs/snippets/run/components.yaml -kubectl delete -f https://raw.githubusercontent.com/crossplane/crossplane/master/docs/snippets/run/definitions.yaml +kubectl delete -f https://raw.githubusercontent.com/crossplane/crossplane/release-0.13/docs/snippets/run/components.yaml +kubectl delete -f https://raw.githubusercontent.com/crossplane/crossplane/release-0.13/docs/snippets/run/definitions.yaml ``` [Open Application Model]: https://oam.dev/