https://github.com/salaboy/backstage-for-k8s
https://github.com/salaboy/backstage-for-k8s
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/salaboy/backstage-for-k8s
- Owner: salaboy
- Created: 2023-05-11T13:35:28.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2023-11-25T07:54:50.000Z (over 1 year ago)
- Last Synced: 2025-03-24T22:51:12.433Z (2 months ago)
- Language: TypeScript
- Size: 512 KB
- Stars: 5
- Watchers: 3
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# [Backstage](https://backstage.io)
## Internal Developer Portal
In order to keep track of all of the new services, applications, documentation, resources, infrastructure, etc. that your teams will continue to create throughout the lifecycles of your intiatives - having an internal developer portal may be a very valuable addition to your platform
To simply check out backstage and see what it has to offer, run the following commands:
```sh
yarn install
yarn dev
```### Building a Backstage image for Kind Cluster
First we'll build the backstage image locally and make it available for the cluster
```
yarn build:backend
yarn build-image --tag backstage:1.0.0
kind load docker-image backstage:1.0.0 --name platform
```Now let's deploy Backstage.io onto the kind cluster
```
kubectl create namespace backstage
kubectl create serviceaccount backstage -n backstagekubectl apply -f backstage/kubernetes/rbac.yaml
kubectl apply -f backstage/kubernetes/backstage-secret.yaml
APISERVER=$(kubectl config view --minify -o jsonpath='{.clusters[0].cluster.server}')
kubectl create configmap backstage-cm -n backstage --from-literal=ENDPOINT=$APISERVERkubectl apply -f backstage/kubernetes/backstage-service.yaml
kubectl apply -f backstage/kubernetes/backstage.yaml
```We'll port forward in order to get to the Backstage UI
```
kubectl port-forward --namespace=backstage svc/backstage 5434:80
```Access http://localhost:5434/ on your browser and do some initial exploring.
Enjoy!
For more information visit https://www.salaboy.com/