diff --git a/src/assets/webinars/ManageK8Applications.jpg b/src/assets/webinars/ManageK8Applications.jpg new file mode 100644 index 00000000..3a6c55a0 Binary files /dev/null and b/src/assets/webinars/ManageK8Applications.jpg differ diff --git a/src/content/Webinars/ManageK8Applications.js b/src/content/Webinars/ManageK8Applications.js new file mode 100644 index 00000000..4aaee0b6 --- /dev/null +++ b/src/content/Webinars/ManageK8Applications.js @@ -0,0 +1,36 @@ +import Poster from '@/assets/webinars/ManageK8Applications.jpg'; + +import { + IndividualWebinarCompletedPageHeader, + IndividualWebinarPageFAQ, +} from './IndividualWebinarPageContent'; + +const ManageK8Applications = { + header: IndividualWebinarCompletedPageHeader, + name: 'How to Manage and Control Kubernetes Applications Without Kubernetes Expertise', + description: + 'Developers have a hard time managing applications deployed to Kubernetes. They need to understand how Kubernetes works, how to access clusters, and how to compose, monitor, and audit applications. As developers’ Kubernetes responsibilities keep growing, learning and maintaining all this takes precious time away from their main responsibility of delivering quality applications and producing business value.\n\nLens AppIQ is designed to help developers address these issues, giving them a platform where they can visualize and support their applications without a deep understanding of Kubernetes. It enables developers to take back control of their time and focus on application development.\n\n In this hands-on webinar, we will demonstrate how developers can use Lens AppIQ to manage their own applications, no matter what stage of the Kubernetes journey they’re in, and how they can take advantage of its app-centric approach.', + poster: Poster, + videoUrl: 'https://www.youtube.com/embed/3ILs0gRtlsU', + takeaways: [ + 'Import existing applications to Lens AppIQ', + 'Deploy new apps with just a Docker image', + 'Access logs and events for their apps', + ' Visualize the topology of an application in Kubernetes', + 'Set up alerts to monitor your app’s integrity', + 'Integrate with Lens Desktop', + ], + time: '28 November 2023 12:30:00 GMT', + speakers: [ + { + name: 'Daniel Echegaray M.', + description: 'Principal Engineer @Mirantis', + linkedin: 'danielechegaraym', + img: 'https://media.licdn.com/dms/image/C4E03AQGhtfNZAMZKaw/profile-displayphoto-shrink_800_800/0/1635704257100?e=1706745600&v=beta&t=i54L3NXmmVvqlxw5sbc91IkK2FBXmgUyD6K_F73v2eg', + }, + ], + slug: 'manage-k8-applications', + faq: IndividualWebinarPageFAQ, +}; + +export default ManageK8Applications; diff --git a/src/content/Webinars/index.content.js b/src/content/Webinars/index.content.js index ddc67a4b..53f4a916 100644 --- a/src/content/Webinars/index.content.js +++ b/src/content/Webinars/index.content.js @@ -7,6 +7,7 @@ import HeadlessBrowser from '@/content/Webinars/HeadlessBrowser'; import { IndividualWebinarPageFAQ } from '@/content/Webinars/IndividualWebinarPageContent'; import KafkaWebinar from '@/content/Webinars/KafkaWebinar'; import LivecycleWebinar from '@/content/Webinars/LivecycleWebinar'; +import ManageK8Applications from '@/content/Webinars/ManageK8Applications'; import ObservabilityDevOps from '@/content/Webinars/ObservabilityDevOps'; import SimplifiedDeploymentWebinar from '@/content/Webinars/SimplifiedDeployment'; import SurrealDBWebinar from '@/content/Webinars/SurrealDBWebinar'; @@ -46,6 +47,14 @@ const WebinarPageContent = { export default WebinarPageContent; export const webinar = [ + { + img: ManageK8Applications.poster, + title: ManageK8Applications.name, + description: ManageK8Applications.description, + time: ManageK8Applications.time, + slug: ManageK8Applications.slug, + details: ManageK8Applications, + }, { img: DatabaseGuardrails.poster, title: DatabaseGuardrails.name,