Skip to content

Commit eaf1a4f

Browse files
committed
Fix lists
Signed-off-by: Alex Ellis (OpenFaaS Ltd) <[email protected]>
1 parent 89a1baa commit eaf1a4f

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

_posts/2025-07-09-irsa-functions.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -285,10 +285,10 @@ This is required step to push new images to an AWS ECR registry, and could form
285285

286286
With a few simple steps, you can take code in the form of a plain files, a zip file, tar file, or Git repository, and turn it into a function.
287287

288-
1) Create a tenant namespace using the [OpenFaaS Gateway's REST API](https://docs.openfaas.com/reference/rest-api/#create-a-namespace) i.e. `tenant`
289-
2) Create a repository for the tenant's new function you want to build i.e. `tenant/fn1`
290-
3) Use the [Function Builder's API](https://docs.openfaas.com/openfaas-pro/builder/) to publish the image to the full ARN path i.e. `ACCOUNT_NUMBER.dkr.ecr.eu-west-1.amazonaws.com/tenant1/fn1:TAG`
291-
3) Post a request to the pOpenFaaS Gateway's REST API](https://docs.openfaas.com/reference/rest-api/#deploy-a-function) to deploy the function to the `tenant1` namespace
288+
1. Create a tenant namespace using the [OpenFaaS Gateway's REST API](https://docs.openfaas.com/reference/rest-api/#create-a-namespace) i.e. `tenant`
289+
2. Create a repository for the tenant's new function you want to build i.e. `tenant/fn1`
290+
3. Use the [Function Builder's API](https://docs.openfaas.com/openfaas-pro/builder/) to publish the image to the full ARN path i.e. `ACCOUNT_NUMBER.dkr.ecr.eu-west-1.amazonaws.com/tenant1/fn1:TAG`
291+
4. Post a request to the pOpenFaaS Gateway's REST API](https://docs.openfaas.com/reference/rest-api/#deploy-a-function) to deploy the function to the `tenant1` namespace
292292

293293
Highlights of this approach:
294294

@@ -298,8 +298,8 @@ Highlights of this approach:
298298

299299
To take things further, consider authentication options for the function.
300300

301-
1) [Built-in Function Authentication using OpenFaaS IAM](https://docs.openfaas.com/openfaas-pro/iam/function-authentication/).
302-
2) Your own code in the handler to process an Authorization header with a static key or JWT token.
301+
1. [Built-in Function Authentication using OpenFaaS IAM](https://docs.openfaas.com/openfaas-pro/iam/function-authentication/).
302+
2. Your own code in the handler to process an Authorization header with a static key or JWT token.
303303

304304
We wrote to the AWS API directly, however you can use the [Event Connectors for AWS SQS or SNS](https://docs.openfaas.com/openfaas-pro/sqs-events/) to receive events from other AWS services such as S3, DynamoDB, etc.
305305

0 commit comments

Comments
 (0)