Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/jeffhollan/azure-functions-porter


https://github.com/jeffhollan/azure-functions-porter

Last synced: 3 days ago
JSON representation

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