From 2e2d6cbb262c46d474c5d2980a89bd5b748fae2e Mon Sep 17 00:00:00 2001 From: Crossplane Date: Thu, 19 Sep 2019 00:44:22 +0000 Subject: [PATCH] docs snapshot for crossplane version `v0.3` --- docs/v0.3/install-crossplane.md | 6 +++--- docs/v0.3/services/aws-services-guide.md | 4 ++-- docs/v0.3/services/azure-services-guide.md | 2 +- docs/v0.3/stacks-guide-aws.md | 2 +- docs/v0.3/stacks-guide-azure.md | 2 +- docs/v0.3/stacks-guide-gcp.md | 2 +- 6 files changed, 9 insertions(+), 9 deletions(-) diff --git a/docs/v0.3/install-crossplane.md b/docs/v0.3/install-crossplane.md index 2179cad7..49f2055b 100644 --- a/docs/v0.3/install-crossplane.md +++ b/docs/v0.3/install-crossplane.md @@ -72,7 +72,7 @@ metadata: name: stack-gcp namespace: gcp spec: - package: "crossplane/stack-gcp:master" + package: "crossplane/stack-gcp:v0.1.0" ``` Then you can install the GCP stack into Crossplane in the `gcp` namespace with the following command: @@ -97,7 +97,7 @@ metadata: name: stack-aws namespace: aws spec: - package: "crossplane/stack-aws:master" + package: "crossplane/stack-aws:v0.1.0" ``` Then you can install the AWS stack into Crossplane in the `aws` namespace with the following command: @@ -122,7 +122,7 @@ metadata: name: stack-azure namespace: azure spec: - package: "crossplane/stack-azure:master" + package: "crossplane/stack-azure:v0.1.0" ``` Then you can install the Azure stack into Crossplane in the `azure` namespace with the following command: diff --git a/docs/v0.3/services/aws-services-guide.md b/docs/v0.3/services/aws-services-guide.md index 63280868..db1e65dc 100644 --- a/docs/v0.3/services/aws-services-guide.md +++ b/docs/v0.3/services/aws-services-guide.md @@ -421,7 +421,7 @@ metadata: name: stack-aws namespace: crossplane-system spec: - package: "crossplane/stack-aws:master" + package: "crossplane/stack-aws:v0.1.0" EOF kubectl apply -f stack-aws.yaml @@ -838,7 +838,7 @@ kubectl delete -f app-project1-dev-namespace.yaml kubectl delete -f aws-infra-dev-namespace.yaml ``` -### AWS Resources +### AWS Resources We will also need to delete the resources that we created for the RDS database and EKS cluster: diff --git a/docs/v0.3/services/azure-services-guide.md b/docs/v0.3/services/azure-services-guide.md index 65af6cd7..de5bc29d 100644 --- a/docs/v0.3/services/azure-services-guide.md +++ b/docs/v0.3/services/azure-services-guide.md @@ -119,7 +119,7 @@ metadata: name: stack-azure namespace: crossplane-system spec: - package: "crossplane/stack-azure:master" + package: "crossplane/stack-azure:v0.1.0" EOF kubectl apply -f stack-azure.yaml diff --git a/docs/v0.3/stacks-guide-aws.md b/docs/v0.3/stacks-guide-aws.md index 84ce9d36..3b897246 100644 --- a/docs/v0.3/stacks-guide-aws.md +++ b/docs/v0.3/stacks-guide-aws.md @@ -68,7 +68,7 @@ infrastructure stack, we need to specify that it's cluster-scoped by passing the `--cluster` flag. ```bash -kubectl crossplane stack generate-install --cluster 'crossplane/stack-aws:master' stack-aws | kubectl apply --namespace ${INFRA_NAMESPACE} -f - +kubectl crossplane stack generate-install --cluster 'crossplane/stack-aws:v0.1.0' stack-aws | kubectl apply --namespace ${INFRA_NAMESPACE} -f - ``` The rest of the steps assume that you installed the AWS stack into the diff --git a/docs/v0.3/stacks-guide-azure.md b/docs/v0.3/stacks-guide-azure.md index 3e29f5b3..69c1f650 100644 --- a/docs/v0.3/stacks-guide-azure.md +++ b/docs/v0.3/stacks-guide-azure.md @@ -63,7 +63,7 @@ control over how the stack's installation is handled. Everything is a Kubernetes object! ``` -kubectl crossplane stack generate-install --cluster 'crossplane/stack-azure:master' stack-azure | kubectl apply --namespace crossplane-system -f - +kubectl crossplane stack generate-install --cluster 'crossplane/stack-azure:v0.1.0' stack-azure | kubectl apply --namespace crossplane-system -f - ``` If we wanted to use whatever the current namespace is, we could have diff --git a/docs/v0.3/stacks-guide-gcp.md b/docs/v0.3/stacks-guide-gcp.md index bf15335b..1360c4ff 100644 --- a/docs/v0.3/stacks-guide-gcp.md +++ b/docs/v0.3/stacks-guide-gcp.md @@ -63,7 +63,7 @@ a Kubernetes object! ``` kubectl create namespace gcp -kubectl crossplane stack generate-install --cluster 'crossplane/stack-gcp:master' stack-gcp | kubectl apply --namespace gcp -f - +kubectl crossplane stack generate-install --cluster 'crossplane/stack-gcp:v0.1.0' stack-gcp | kubectl apply --namespace gcp -f - ``` If we wanted to use whatever the current namespace is, we could have