From 2c19e9026b929e1d08404916b0e95196db5bc2f0 Mon Sep 17 00:00:00 2001 From: Matt Spencer Date: Thu, 16 Jun 2022 12:20:47 +0100 Subject: [PATCH 1/2] Add cloud native dev blog post Abstract taken from the post Enable blockquote in hugo config Add styling for blockquote Signed-off-by: Matt Spencer --- config.toml | 4 +++ .../blog/2022/getting_started_cloud_native.md | 27 +++++++++++++++++++ content/blog/2022/high_perf_realtime.md | 2 +- themes/soafee/assets/sass/styles.scss | 8 ++++++ 4 files changed, 40 insertions(+), 1 deletion(-) create mode 100644 content/blog/2022/getting_started_cloud_native.md diff --git a/config.toml b/config.toml index 84fc2c8..154346b 100644 --- a/config.toml +++ b/config.toml @@ -7,6 +7,10 @@ googleAnalytics = "GTM-WLHTXFF" [Author] name = "J. Sickmeyer" +[markup.goldmark.parser.attribute] + block = true + title = true + [privacy] [privacy.disqus] diff --git a/content/blog/2022/getting_started_cloud_native.md b/content/blog/2022/getting_started_cloud_native.md new file mode 100644 index 0000000..f36c2a7 --- /dev/null +++ b/content/blog/2022/getting_started_cloud_native.md @@ -0,0 +1,27 @@ +--- +Title: Getting Started with Cloud-Native Automotive Software Development +Description: An Automotive Software Development workshop with Arm and AWS +Date: 2022-06-16 +Banner: + Active: true + Title: Getting Started with Cloud-Native Automotive Software Development + Description: A workshop introducing an automotive-native development infrastructure for containerized workloads with environmental parity across cloud and edge + Background: banner/banner1.jpg +--- + +# Getting Started with Cloud-Native Automotive Software Development + +This workshop will introduce a novel automotive-native software development infrastructure able to execute the same containerized workload - with __environmental parity__ - in all the targeted compute elements: an [AWS EC2 Graviton2](https://aws.amazon.com/ec2/graviton/) instance, a [Raspberry Pi](https://www.raspberrypi.org/products/raspberry-pi-4-model-b/), and an [AVA Developer Platform](https://www.adlinktech.com/en/soafee). + +As defined by [Kevin Hoffman in his book](https://www.oreilly.com/content/environment-parity-for-rapidly-deployed-cloud-native-apps/): + +> The purpose of [...] environment parity is to give your team and your entire organization the confidence that the application will work everywhere. + +This is a major element in achieving the objective of [_automotive_ cloud-native software-defined vehicles](https://community.arm.com/developer/ip-products/system/b/embedded-blog/posts/cloud-native-approach-to-the-software-defined-car). + +You will learn how to utilize AWS to create a CI/CD pipeline that builds, containerizes, evaluates, and enables deployment - at scale in the cloud and on embedded devices - of a perception network, [YOLO](https://pjreddie.com/darknet/yolo/). This network is used as a stand-in for any automotive application workload to demonstrate the design paradigm. The specific version of YOLO used in this workshop is the [one implemented in the Autoware stack](https://github.com/autowarefoundation/modelzoo/tree/master/perception/camera_obstacle_detection/yolo_v2_tiny/tensorflow_fp32_coco) (YOLOv2-Tiny), running on Ubuntu Linux 20.04. + + +The full System Under Test (SUT) stack will include the Operating System (a Yocto-Linux distribution) and Arm's [Edge Workload Abstraction and Orchestration Layer (EWAOL)](https://ewaol.sites.arm.com/meta-ewaol/overview.html). + +{{< button url="https://catalog.us-east-1.prod.workshops.aws/workshops/12f31c93-5926-4477-996c-d47f4524905d/en-US/" text="Continue to the Workshop">}} diff --git a/content/blog/2022/high_perf_realtime.md b/content/blog/2022/high_perf_realtime.md index c686cbf..5b14b8b 100644 --- a/content/blog/2022/high_perf_realtime.md +++ b/content/blog/2022/high_perf_realtime.md @@ -4,7 +4,7 @@ Description: A white paper from Arm that explores how to create High-Performance Date: "2022-05-24" Banner: Active: true - Title: High-Performance Real-Time Systems Design from Cloud to Embedded Edge + Title: High-Performance Real-Time Systems Design Description: A white paper from Arm that explores how to create High-Performance Real-Time Systems Design from Cloud to Embedded Edge Background: banner/banner1.jpg --- diff --git a/themes/soafee/assets/sass/styles.scss b/themes/soafee/assets/sass/styles.scss index 2814c20..e8342ab 100644 --- a/themes/soafee/assets/sass/styles.scss +++ b/themes/soafee/assets/sass/styles.scss @@ -182,4 +182,12 @@ img { // Button styling .s-button { margin-bottom: 10px; +} + +// Blockquote styling +blockquote { + border-left-style: solid; + border-left-width: medium; + padding-left: 20px; + font-style: italic; } \ No newline at end of file -- GitLab From 9d6ffcbd3f39c0126289e49b04faa427a61bc1d9 Mon Sep 17 00:00:00 2001 From: Matt Spencer Date: Thu, 16 Jun 2022 12:22:09 +0100 Subject: [PATCH 2/2] Remove old banner Signed-off-by: Matt Spencer --- content/blog/2022/high_perf_realtime.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/blog/2022/high_perf_realtime.md b/content/blog/2022/high_perf_realtime.md index 5b14b8b..003292f 100644 --- a/content/blog/2022/high_perf_realtime.md +++ b/content/blog/2022/high_perf_realtime.md @@ -3,7 +3,7 @@ Title: High-Performance Real-Time Systems Design from Cloud to Embedded Edge Description: A white paper from Arm that explores how to create High-Performance Real-Time Systems Design from Cloud to Embedded Edge Date: "2022-05-24" Banner: - Active: true + Active: false Title: High-Performance Real-Time Systems Design Description: A white paper from Arm that explores how to create High-Performance Real-Time Systems Design from Cloud to Embedded Edge Background: banner/banner1.jpg -- GitLab