Skip to content

Commit

Permalink
Merge pull request WeMakeDevs#657 from siddhant-khisty/Otterize
Browse files Browse the repository at this point in the history
Add: Access Control Webinar
  • Loading branch information
siddhant-khisty authored Jun 8, 2023
2 parents 6d45435 + 0a9c8ff commit 4cb742c
Show file tree
Hide file tree
Showing 3 changed files with 45 additions and 1 deletion.
Binary file added src/assets/webinars/access-control.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/AccessControlWebinar.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
import Poster from '@/assets/webinars/access-control.png';

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

const AccessControlWebinar = {
header: IndividualWebinarCompletedPageHeader,
name: 'Access control done right',
description:
"Kubernetes has become the de facto standard for container orchestration, and its adoption is growing rapidly. However, with great power comes great responsibility, and securing Kubernetes workloads has become more challenging as they grow in complexity. In this webinar, we will discuss best practices for securing Kubernetes clusters and workloads. We will cover topics such as cluster visibility, network policies (and why they are not so easy to use), secret management, and how you can use your developer's intent to achieve pod isolation and zero trust.",
poster: Poster,
//videoUrl: 'TBD',
takeaways: [
'Understand the importance of securing Kubernetes clusters and workloads',
'Get to know IBAC as a methodology to achieve secured access between pods and zero-trust network',
'Demo Otterize OSS capabilities and Otterize cloud',
'Real-life examples of problems Otterize can solve for users',
],
time: '22 June 2023 16:00:00 GMT',
speakers: [
{
name: 'Uri Sarid',
description: 'Co-founder and CPO at Otterize',
twitter: 'usarid',
img: 'https://media.licdn.com/dms/image/C4D03AQHouKvD9PVzLA/profile-displayphoto-shrink_800_800/0/1516247358912?e=1691625600&v=beta&t=uQTrfSpgN7l2MlsTRJKiSdMuFUonGbDN37d_JUFCZ_I',
},
],
register: 'AccessControlWebinar',
slug: 'access-control',
faq: IndividualWebinarPageFAQ,
};

export default AccessControlWebinar;
11 changes: 10 additions & 1 deletion src/content/Webinars/index.content.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import CostOptimizationWebinar from '@/content/Webinars/CostOptimizationWebinar';
import { IndividualWebinarPageFAQ } from '@/content/Webinars/IndividualWebinarPageContent';
import AccessControlWebinar from './AccessControlWebinar';
import SimplifiedDeploymentWebinar from '@/content/Webinars/SimplifiedDeployment';
import ZeroDowmtime from '@/content/Webinars/ZeroDowntimeKubeslice';
import BPFWebinar from './BPFWebinar';
Expand Down Expand Up @@ -60,7 +61,14 @@ export const webinar = [
slug: GopherWebinar.slug,
details: GopherWebinar,
},

{
img: AccessControlWebinar.poster,
title: AccessControlWebinar.name,
description: AccessControlWebinar.description,
time: AccessControlWebinar.time,
slug: AccessControlWebinar.slug,
details: AccessControlWebinar,
},
{
img: CostOptimizationWebinar.poster,
title: CostOptimizationWebinar.name,
Expand Down Expand Up @@ -92,5 +100,6 @@ export const webinar = [
time: ZeroDowmtime.time,
slug: ZeroDowmtime.slug,
details: ZeroDowmtime,

},
];

0 comments on commit 4cb742c

Please sign in to comment.