Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/cmwylie19/gloo-portal-demo
Tasks backend service with OpenAPI v3 doc that stores tasks in NoSQL database.
https://github.com/cmwylie19/gloo-portal-demo
golang mongodb openapi3
Last synced: 21 days ago
JSON representation
Tasks backend service with OpenAPI v3 doc that stores tasks in NoSQL database.
- Host: GitHub
- URL: https://github.com/cmwylie19/gloo-portal-demo
- Owner: cmwylie19
- Created: 2021-06-29T12:34:52.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2021-06-30T13:16:13.000Z (over 3 years ago)
- Last Synced: 2024-11-22T14:12:12.502Z (3 months ago)
- Topics: golang, mongodb, openapi3
- Language: Go
- Homepage:
- Size: 15.6 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Install Gloo Portal
## Add the helm repo
```
helm repo add dev-portal https://storage.googleapis.com/dev-portal-helm
helm repo update
```## Create helm values override
```
cat << EOF > gloo-values.yaml
gloo:
enabled: true # Enables integration with Gloo Edge Enterprise
licenseKey:
secretRef:
name: license
namespace: gloo-system
key: license-key
EOF
```## Create the namespace and install the helm chart
```
k create ns dev-portal
helm install dev-portal dev-portal/dev-portal -n dev-portal --values gloo-values.yaml
```