Skip to content

Commit

Permalink
Add: Access Control 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 5b8f08a
Show file tree
Hide file tree
Showing 3 changed files with 44 additions and 0 deletions.
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;
9 changes: 9 additions & 0 deletions src/content/Webinars/index.content.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import { IndividualWebinarPageFAQ } from '@/content/Webinars/IndividualWebinarPageContent';

import AccessControlWebinar from './AccessControlWebinar';
import BPFWebinar from './BPFWebinar';
import GopherWebinar from './GopherWebinar';
import NoCodeApproachWebianr from './NoCodeApproachWebianr';
Expand Down Expand Up @@ -57,4 +58,12 @@ 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,
},
];

0 comments on commit 5b8f08a

Please sign in to comment.