diff --git a/docs/getting-started/create-configuration.md b/docs/getting-started/create-configuration.md index 72bd0dbe142..240a10734b0 100644 --- a/docs/getting-started/create-configuration.md +++ b/docs/getting-started/create-configuration.md @@ -92,7 +92,7 @@ spec: ``` ```console -curl -OL https://raw.githubusercontent.com/crossplane/crossplane/master/docs/snippets/package/definition.yaml +curl -OL https://raw.githubusercontent.com/crossplane/crossplane/release-1.2/docs/snippets/package/definition.yaml ``` > You might notice that the XRD we created specifies both "names" and "claim @@ -169,7 +169,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-1.2/docs/snippets/package/aws/composition.yaml ``` @@ -343,7 +343,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-1.2/docs/snippets/package/aws-with-vpc/composition.yaml ``` @@ -399,7 +399,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-1.2/docs/snippets/package/gcp/composition.yaml ``` @@ -485,7 +485,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-1.2/docs/snippets/package/azure/composition.yaml ``` @@ -535,7 +535,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-1.2/docs/snippets/package/alibaba/composition.yaml ``` @@ -578,7 +578,7 @@ spec: ``` ```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-1.2/docs/snippets/package/aws/crossplane.yaml kubectl crossplane build configuration ``` @@ -618,7 +618,7 @@ spec: ``` ```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-1.2/docs/snippets/package/aws-with-vpc/crossplane.yaml kubectl crossplane build configuration ``` @@ -657,7 +657,7 @@ spec: ``` ```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-1.2/docs/snippets/package/gcp/crossplane.yaml kubectl crossplane build configuration ``` @@ -696,7 +696,7 @@ spec: ``` ```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-1.2/docs/snippets/package/azure/crossplane.yaml kubectl crossplane build configuration ``` diff --git a/docs/getting-started/install-configure.md b/docs/getting-started/install-configure.md index 0c93177e421..df3fb12b3e1 100644 --- a/docs/getting-started/install-configure.md +++ b/docs/getting-started/install-configure.md @@ -119,7 +119,7 @@ kubectl create namespace crossplane-system helm repo add crossplane-stable https://charts.crossplane.io/stable helm repo update -helm install crossplane --namespace crossplane-system crossplane-stable/crossplane +helm install crossplane --namespace crossplane-system crossplane-stable/crossplane --version 1.2.0 ``` > Note that OAM is an alpha feature that is disabled by default. Make sure to @@ -247,7 +247,7 @@ provider that can satisfy a `PostgreSQLInstance`. Let's get started! > section. ```console -kubectl crossplane install configuration registry.upbound.io/xp/getting-started-with-aws:latest +kubectl crossplane install configuration registry.upbound.io/xp/getting-started-with-aws:v1.2.0 ``` Wait until all packages become healthy: @@ -288,7 +288,7 @@ spec: key: creds ``` ```console -kubectl apply -f https://raw.githubusercontent.com/crossplane/crossplane/master/docs/snippets/configure/aws/providerconfig.yaml +kubectl apply -f https://raw.githubusercontent.com/crossplane/crossplane/release-1.2/docs/snippets/configure/aws/providerconfig.yaml ``` @@ -301,7 +301,7 @@ kubectl apply -f https://raw.githubusercontent.com/crossplane/crossplane/master/ > section. ```console -kubectl crossplane install configuration registry.upbound.io/xp/getting-started-with-aws-with-vpc:latest +kubectl crossplane install configuration registry.upbound.io/xp/getting-started-with-aws-with-vpc:v1.2.0 ``` Wait until all packages become healthy: @@ -342,7 +342,7 @@ spec: key: creds ``` ```console -kubectl apply -f https://raw.githubusercontent.com/crossplane/crossplane/master/docs/snippets/configure/aws/providerconfig.yaml +kubectl apply -f https://raw.githubusercontent.com/crossplane/crossplane/release-1.2/docs/snippets/configure/aws/providerconfig.yaml ``` @@ -355,7 +355,7 @@ kubectl apply -f https://raw.githubusercontent.com/crossplane/crossplane/master/ > section. ```console -kubectl crossplane install configuration registry.upbound.io/xp/getting-started-with-gcp:latest +kubectl crossplane install configuration registry.upbound.io/xp/getting-started-with-gcp:v1.2.0 ``` Wait until all packages become healthy: @@ -425,7 +425,7 @@ spec: > section. ```console -kubectl crossplane install configuration registry.upbound.io/xp/getting-started-with-azure:latest +kubectl crossplane install configuration registry.upbound.io/xp/getting-started-with-azure:v1.2.0 ``` Wait until all packages become healthy: @@ -481,7 +481,7 @@ spec: key: creds ``` ```console -kubectl apply -f https://raw.githubusercontent.com/crossplane/crossplane/master/docs/snippets/configure/azure/providerconfig.yaml +kubectl apply -f https://raw.githubusercontent.com/crossplane/crossplane/release-1.2/docs/snippets/configure/azure/providerconfig.yaml ``` diff --git a/docs/getting-started/provision-infrastructure.md b/docs/getting-started/provision-infrastructure.md index d2bdb028470..8e0f3079180 100644 --- a/docs/getting-started/provision-infrastructure.md +++ b/docs/getting-started/provision-infrastructure.md @@ -66,7 +66,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-1.2/docs/snippets/compose/claim-aws.yaml ``` @@ -95,7 +95,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-1.2/docs/snippets/compose/claim-aws.yaml ``` @@ -118,7 +118,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-1.2/docs/snippets/compose/claim-gcp.yaml ``` @@ -141,7 +141,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-1.2/docs/snippets/compose/claim-azure.yaml ``` @@ -240,7 +240,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-1.2/docs/snippets/compose/pod.yaml ``` This `Pod` simply connects to a PostgreSQL database and prints its name, so you