Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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.

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
```