From e8c17938198e78ede1a4f56dc2e2e9fa22358a78 Mon Sep 17 00:00:00 2001 From: Adam Harvey Date: Tue, 14 Sep 2021 19:04:52 -0400 Subject: [PATCH 1/4] Fix sidebar Signed-off-by: Adam Harvey --- docs/deployment/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/deployment/index.md b/docs/deployment/index.md index 86ad03d1ae..27db7af368 100644 --- a/docs/deployment/index.md +++ b/docs/deployment/index.md @@ -1,7 +1,7 @@ --- id: index title: Deploying Backstage -sidebar_title: Overview +sidebar_label: Overview description: Packaging Backstage and deploying to production --- From 6472a6fd4f7c1ddcb135437606d8b4e33e71941a Mon Sep 17 00:00:00 2001 From: Adam Harvey Date: Tue, 14 Sep 2021 19:05:50 -0400 Subject: [PATCH 2/4] Wrapping not needed with prettier-ignore for YAML frontmatter Signed-off-by: Adam Harvey --- .../software-templates/migrating-from-v1alpha1-to-v1beta2.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/docs/features/software-templates/migrating-from-v1alpha1-to-v1beta2.md b/docs/features/software-templates/migrating-from-v1alpha1-to-v1beta2.md index 28001cce0b..58d88e8e9e 100644 --- a/docs/features/software-templates/migrating-from-v1alpha1-to-v1beta2.md +++ b/docs/features/software-templates/migrating-from-v1alpha1-to-v1beta2.md @@ -2,8 +2,7 @@ id: migrating-from-v1alpha1-to-v1beta2 title: Migrating to v1beta2 templates # prettier-ignore -description: - How to move your old templates from v1alpha1 to the more declarative v1beta2 +description: How to move your old templates from v1alpha1 to the more declarative v1beta2 --- # What's new? From 23e4628206d9df3d90803568c2f36cea498d51cf Mon Sep 17 00:00:00 2001 From: Adam Harvey Date: Tue, 14 Sep 2021 19:15:04 -0400 Subject: [PATCH 3/4] Minor rewording Signed-off-by: Adam Harvey --- docs/deployment/docker.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/docs/deployment/docker.md b/docs/deployment/docker.md index 599c01a0ce..ba32706cc4 100644 --- a/docs/deployment/docker.md +++ b/docs/deployment/docker.md @@ -122,12 +122,12 @@ sometimes desired because Docker in Docker is not available in the build environment, or due to other requirements. The build is split into three different stages, where the first stage finds all -of the `package.json`s that are relevant for the initial install step enabling -us to cache the initial `yarn install` that installs all dependencies. The -second stage executes the build itself, and is similar to the steps we execute -on the host in the host build. The third and final stage then packages it all -together into the final image, and is similar to the `Dockerfile` of the host -build. +of the `package.json` files that are relevant for the initial install step +enabling us to cache the initial `yarn install` that installs all dependencies. +The second stage executes the build itself, and is similar to the steps we +execute on the host in the host build. The third and final stage then packages +it all together into the final image, and is similar to the `Dockerfile` of the +host build. The following `Dockerfile` executes the multi-stage build and should be added to the repo root: From 28a0003fa75d46fa05506ec37bc48ace2e95d095 Mon Sep 17 00:00:00 2001 From: Adam Harvey Date: Tue, 14 Sep 2021 19:15:15 -0400 Subject: [PATCH 4/4] Add missing period Signed-off-by: Adam Harvey --- docs/deployment/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/deployment/index.md b/docs/deployment/index.md index 27db7af368..621870ea6f 100644 --- a/docs/deployment/index.md +++ b/docs/deployment/index.md @@ -32,7 +32,7 @@ requires the first two steps. An example of deploying Backstage with a [Helm chart](helm.md), a common pattern in AWS, is also available. There is also a contrib guide to deploying Backstage with -[AWS Fargate and Aurora PostgreSQL](https://github.com/backstage/backstage/blob/master/contrib/docs/tutorials/aws-fargate-deployment.md) +[AWS Fargate and Aurora PostgreSQL](https://github.com/backstage/backstage/blob/master/contrib/docs/tutorials/aws-fargate-deployment.md). Please consider contributing other deployment guides if you get Backstage set up on common infrastructure, it would be a great benefit to the community.