From 0ea7f32fbe4a4e8944c53bfb614da31d5d1d060b Mon Sep 17 00:00:00 2001 From: Jacquelin_Han Date: Sun, 24 Sep 2023 20:55:41 +0000 Subject: [PATCH 1/4] Made changes to run.yaml file to support running bzip2 application Signed-off-by: Jacquelin_Han --- scripts/run.yaml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/scripts/run.yaml b/scripts/run.yaml index ae913d1..0b4147b 100644 --- a/scripts/run.yaml +++ b/scripts/run.yaml @@ -9,3 +9,8 @@ runs: command: /helloworld memory: 64 networking: False + - name: bzip2 + rootfs: ../dynamic-apps/bzip2 + command: /bin/bzip2 + memory: 64 + networking: False From b93a1929147d0b02ba9a81654dbd772ffd0b2c9a Mon Sep 17 00:00:00 2001 From: Jacquelin_Han Date: Sun, 24 Sep 2023 21:30:56 +0000 Subject: [PATCH 2/4] Add support for running redis by modifying run.yaml Signed-off-by: Jacquelin_Han --- scripts/run.yaml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/scripts/run.yaml b/scripts/run.yaml index 0b4147b..2d09ec8 100644 --- a/scripts/run.yaml +++ b/scripts/run.yaml @@ -14,3 +14,8 @@ runs: command: /bin/bzip2 memory: 64 networking: False + - name: redis + rootfs: ../dynamic-apps/redis + command: /usr/bin/redis-server + memory: 64 + networking: True From d8418f1c7fa2de476912d5ba2438925e119809f4 Mon Sep 17 00:00:00 2001 From: Jacquelin_Han Date: Sun, 24 Sep 2023 21:54:41 +0000 Subject: [PATCH 3/4] Added support for running echo by modifying run.yaml Signed-off-by: Jacquelin_Han --- scripts/run.yaml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/scripts/run.yaml b/scripts/run.yaml index 2d09ec8..9d9138b 100644 --- a/scripts/run.yaml +++ b/scripts/run.yaml @@ -19,3 +19,8 @@ runs: command: /usr/bin/redis-server memory: 64 networking: True + - name: echo + rootfs: ../dynamic-apps/echo + command: /bin/echo + memory: 64 + networking: True From 063e7c4d7da534da5243f8b670e68967818a7fa3 Mon Sep 17 00:00:00 2001 From: Jacquelin_Han Date: Sun, 24 Sep 2023 22:42:31 +0000 Subject: [PATCH 4/4] Added support for running redis7 by modifying run.yaml Signed-off-by: Jacquelin_Han --- scripts/run.yaml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/scripts/run.yaml b/scripts/run.yaml index 9d9138b..aa8d6a5 100644 --- a/scripts/run.yaml +++ b/scripts/run.yaml @@ -24,3 +24,8 @@ runs: command: /bin/echo memory: 64 networking: True + - name: redis7 + rootfs: ../dynamic-apps/redis7 + command: /usr/bin/redis-server + memory: 64 + networking: True