https://github.com/asadhanif3188/backstage-on-kubernetes
https://github.com/asadhanif3188/backstage-on-kubernetes
Last synced: 19 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/asadhanif3188/backstage-on-kubernetes
- Owner: asadhanif3188
- Created: 2025-04-27T06:23:52.000Z (about 1 month ago)
- Default Branch: main
- Last Pushed: 2025-04-27T07:22:15.000Z (about 1 month ago)
- Last Synced: 2025-04-27T07:29:45.961Z (about 1 month ago)
- Size: 1.95 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Backstage-on-Kubernetes
To run the Backstage on Kubernetes, we need to perform following steps.
## Run Postgres
We are going to use Postgres Helm chart for deployment, it can be found [here](#https://artifacthub.io/packages/helm/bitnami/postgresql).
First of all we need to have create a `values.yaml` file with custom configurations.
```
global:
postgresql:
auth:
postgresPassword: "backstage"
username: "backstage"
password: "backstage"
database: "backstage"primary:
name: primary
resources:
requests:
memory: 256Mi
cpu: 100m
persistance:
enable: true
size: 2Gi```
**Commands to deploy Postgres**
```
helm repo add bitnami https://charts.bitnami.com/bitnamihelm install backstage-postgresql bitnami/postgresql --version 16.6.6 --namespace backstage --create-namespace --values postgres/values.yaml
```To uninstall
```
helm uninstall backstage-postgresql
```
## Run BackstageFollowing manifest file can be used to deploy the backstage itself on k8s.
```
```