Skip to content
This repository has been archived by the owner on Sep 7, 2024. It is now read-only.

Commit

Permalink
Merge pull request #739 from siddhant-khisty/otterize
Browse files Browse the repository at this point in the history
feat: otterize webinar added
  • Loading branch information
siddhant-khisty authored Aug 14, 2023
2 parents 3d47285 + ab8e637 commit c0064c2
Show file tree
Hide file tree
Showing 3 changed files with 44 additions and 0 deletions.
Binary file added src/assets/webinars/bite-size-otterize.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
35 changes: 35 additions & 0 deletions src/content/Webinars/BiteSizeOtterize.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
import Poster from '@/assets/webinars/bite-size-otterize.png';

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

const BiteSizeOtterize = {
header: IndividualWebinarCompletedPageHeader,
name: 'Getting started with Bite-size Otterize',
description:
'With the release of Bite Size Otterize let us learn how to get started securing services within your cluster one service at a time, rather than having to start a huge project to roll out network policies across your infrastructure.',
poster: Poster,
videoUrl: null,
takeaways: [
'What is Otterize?',
'What is IBAC?',
'How to use Otterize and IBAC?',
'How to secure services in a Kubernetes cluster with Otterize and IBAC?',
],
time: '24 Augest 2023 14:30:00 GMT',
speakers: [
{
name: 'David G. Simmons',
description: 'Head of DevRel at Otterize',
twitter: 'davidgsIoT',
img: 'https://pbs.twimg.com/profile_images/1604595476468318212/-fLmZ9m9_400x400.jpg',
},
],
register: 'BiteSizedOtterizeWebinar',
slug: 'bite-sized-otterize',
faq: IndividualWebinarPageFAQ,
};

export default BiteSizeOtterize;
9 changes: 9 additions & 0 deletions src/content/Webinars/index.content.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import BiteSizeOtterize from '@/content/Webinars/BiteSizeOtterize';
import CostOptimizationWebinar from '@/content/Webinars/CostOptimizationWebinar';
import { IndividualWebinarPageFAQ } from '@/content/Webinars/IndividualWebinarPageContent';
import KafkaWebinar from '@/content/Webinars/KafkaWebinar';
Expand Down Expand Up @@ -38,6 +39,14 @@ const WebinarPageContent = {
export default WebinarPageContent;

export const webinar = [
{
img: BiteSizeOtterize.poster,
title: BiteSizeOtterize.name,
description: BiteSizeOtterize.description,
time: BiteSizeOtterize.time,
slug: BiteSizeOtterize.slug,
details: BiteSizeOtterize,
},
{
img: KafkaWebinar.poster,
title: KafkaWebinar.name,
Expand Down

0 comments on commit c0064c2

Please sign in to comment.