From 2d0f733e265ee02947e9896174339ef8d56d6a80 Mon Sep 17 00:00:00 2001 From: shyamjesal Date: Wed, 12 Mar 2025 11:48:55 +0000 Subject: [PATCH 1/2] Add single function json in deployer --- tools/deployer/singleFunction.json | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 tools/deployer/singleFunction.json diff --git a/tools/deployer/singleFunction.json b/tools/deployer/singleFunction.json new file mode 100644 index 000000000..4d64c6059 --- /dev/null +++ b/tools/deployer/singleFunction.json @@ -0,0 +1,9 @@ +{ + "functions": [ + { + "name": "helloworld", + "file": "helloworld.yaml", + "count": 1 + } + ] +} From 4e256796f52e673f93705fbc54323a5c61da75b7 Mon Sep 17 00:00:00 2001 From: shyamjesal Date: Wed, 12 Mar 2025 11:50:31 +0000 Subject: [PATCH 2/2] Create twoFunctions.json --- tools/deployer/twoFunctions.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 tools/deployer/twoFunctions.json diff --git a/tools/deployer/twoFunctions.json b/tools/deployer/twoFunctions.json new file mode 100644 index 000000000..fb5972eb4 --- /dev/null +++ b/tools/deployer/twoFunctions.json @@ -0,0 +1,14 @@ +{ + "functions": [ + { + "name": "helloworld", + "file": "helloworld.yaml", + "count": 3 + }, + { + "name": "pyaes", + "file": "pyaes.yaml", + "count": 1 + } + ] +}