Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jeffhollan/azure-functions-porter
https://github.com/jeffhollan/azure-functions-porter
Last synced: 3 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/jeffhollan/azure-functions-porter
- Owner: jeffhollan
- Created: 2020-01-15T20:18:18.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2021-06-04T02:30:25.000Z (over 3 years ago)
- Last Synced: 2025-01-23T00:45:07.433Z (4 days ago)
- Language: Java
- Homepage:
- Size: 38.1 KB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Azure Functions Java Bundle Sample
## Pre-requisites
* Docker
* Porter## Building and deploying the bundle
```bash
# Clone the repo
git clone https://github.com/jeffhollan/azure-functions-porter# Platform:
# Navigate to platform bundle
cd .porter/platform
# Generate credentials
porter credentials generate AzFunctionEnvironment
# Install helm3 mixin
porter mixins install helm3 --url https://github.com/squillace/porter-helm3/releases/download --version v0.1.helm3-beta4
# Build the bundle
porter build
# Install the infra
porter install --param-file params.txt -c AzFunctionEnvironment# App:
# Navigate to app bundle
cd ../app
# Build the bundle
porter build
# Install the infra
porter install --param-file params.txt -c AzFunctionEnvironment
```