Skip to content

Commit

Permalink
Merge branch 'main' into botkube
Browse files Browse the repository at this point in the history
  • Loading branch information
siddhant-khisty authored Jun 8, 2023
2 parents de58947 + 63e49b5 commit 70df7ad
Show file tree
Hide file tree
Showing 3 changed files with 42 additions and 0 deletions.
Binary file added src/assets/webinars/zero-downtime.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/ZeroDowntimeKubeslice.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
import Poster from '@/assets/webinars/zero-downtime.png';

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

const ZeroDowmtime = {
header: IndividualWebinarCompletedPageHeader,
name: 'Zero RTO for Kubernetes Disaster Recovery with KubeSlice',
description:
'When you have an unexpected Kubernetes downtime, you want to keep your Recovery Time Objective (RTO) as low as possible, in order to prevent any major data loss. In this webinar, the speakers will share how you can achieve Zero RTO during the Kubernetes disaster recovery process using Kubeslice, and keep the damage to a minimum.',
poster: Poster,
//videoUrl: 'TBD',
takeaways: [
'What are some reasons for Kubernetes downtime?',
'What is a RTO and why should it matter?',
'Ways to reduce RTO to zero during the Kubernetes Disaster recovery process',
],
time: '23 June 2023 15:00:00 GMT',
speakers: [
{
name: 'Prasad Dorbala',
description: 'Chief Product Office at Avesha',
twitter: 'PrasadDorbala',
img: 'https://pbs.twimg.com/profile_images/1484711704248426500/Of4r_OuK_400x400.jpg',
},
],
register: 'Zerodowntime',
slug: 'kuberentes-disaster-recovery',
faq: IndividualWebinarPageFAQ,
};

export default ZeroDowmtime;
8 changes: 8 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 ZeroDowmtime from '@/content/Webinars/ZeroDowntimeKubeslice';

import BPFWebinar from './BPFWebinar';
import ChatOpsWebinar from './ChatOpsWebinar';
Expand Down Expand Up @@ -66,5 +67,12 @@ export const webinar = [
time: ChatOpsWebinar.time,
slug: ChatOpsWebinar.slug,
details: ChatOpsWebinar,
{
img: ZeroDowmtime.poster,
title: ZeroDowmtime.name,
description: ZeroDowmtime.description,
time: ZeroDowmtime.time,
slug: ZeroDowmtime.slug,
details: ZeroDowmtime,
},
];

0 comments on commit 70df7ad

Please sign in to comment.