Skip to content

Commit

Permalink
Add: Simplify Cloud native deployment webinar
Browse files Browse the repository at this point in the history
  • Loading branch information
siddhant-khisty committed Jun 6, 2023
1 parent af9cb61 commit 734d7a2
Show file tree
Hide file tree
Showing 3 changed files with 43 additions and 0 deletions.
Binary file added src/assets/webinars/simplify-deployments.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
34 changes: 34 additions & 0 deletions src/content/Webinars/SimplifiedDeployment.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
import Poster from '@/assets/webinars/simplify-deployments.png';

import {
IndividualWebinarCompletedPageHeader,
IndividualWebinarPageFAQ,
} from './IndividualWebinarPageContent';

const SimplifiedDeploymentWebinar = {
header: IndividualWebinarCompletedPageHeader,
name: 'Simplified Cloud-native Application Deployment with Napptive Playground and KubeVela',
description:
'This webinar explores how the Napptive Playground leverages Kubernetes and KubeVela to simplify the process of deploying cloud-native applications. It introduces the Open Application Model and the role of KubeVela in creating easy-to-use applications for Kubernetes. Then, it demonstrates the unique features of Napptive Playground, allowing developers to launch applications quickly even without in-depth knowledge of Kubernetes.',
poster: Poster,
//videoUrl: 'TBD',
takeaways: [
'Introduction to the Open Application Model',
'How does the OAM model make deployments easier?',
'Learn how to use the Napptive Playground and Kubevela to simplify cloud-native deployments',
],
time: '17 March 2023 14:00:00 GMT',
speakers: [
{
name: 'Daniel Higuero',
description: 'CTO at Napptive',
twitter: 'dhiguero',
img: 'https://pbs.twimg.com/profile_images/647048995899068416/WtMnCepy_400x400.jpg',
},
],
register: 'SimplifiedDeploymentWebinar',
slug: 'simplify-cloud-native-deployments',
faq: IndividualWebinarPageFAQ,
};

export default SimplifiedDeploymentWebinar;
9 changes: 9 additions & 0 deletions src/content/Webinars/index.content.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import { IndividualWebinarPageFAQ } from '@/content/Webinars/IndividualWebinarPageContent';
import SimplifiedDeploymentWebinar from '@/content/Webinars/SimplifiedDeployment';

import BPFWebinar from './BPFWebinar';
import GopherWebinar from './GopherWebinar';
Expand Down Expand Up @@ -57,4 +58,12 @@ export const webinar = [
slug: GopherWebinar.slug,
details: GopherWebinar,
},
{
img: SimplifiedDeploymentWebinar.poster,
title: SimplifiedDeploymentWebinar.name,
description: SimplifiedDeploymentWebinar.description,
time: SimplifiedDeploymentWebinar.time,
slug: SimplifiedDeploymentWebinar.slug,
details: SimplifiedDeploymentWebinar,
},
];

0 comments on commit 734d7a2

Please sign in to comment.