in website/src/pages/events/kubecon-india-24.js [254:325]
function Demos() {
return (
<section>
<div className="container margin-top--lg margin-bottom--lg">
<div className="row">
<div className="col margin-top--md text--center">
<h2 className={styles['gradient-header']}>Booth Demos</h2>
</div>
</div>
{/* Row container for cards */}
<div className="row">
<div className="col col--6 card-col">
<div
className="card"
style={{
display: "flex",
flexDirection: "column",
justifyContent: "space-between",
height: "100%",
}}
>
<div className="card-body" style={{ flexGrow: 1 }}>
<div className="text--left">
<h3>Wednesday 11 December</h3>
<ul>
<li>Running LLMs on Azure Kubernetes Service with KAITO</li>
<li>Partner demo: Cost optimization for AI on Kubernetes with CAST AI</li>
<li>Persistent storage options for Kubernetes deployment</li>
<li>Azure Linux for AKS</li>
<li>Azure Backup for AKS</li>
<li>Managed Prometheus and Grafana for AKS</li>
<li>Application security in Kubernetes</li>
<li>Enhance the security of your Container images with Continuous Patching</li>
<li>Partner demo: Ultra-fast testing with HyperExecute on AKS</li>
</ul>
</div>
</div>
</div>
</div>
<div className="col col--6 card-col">
<div
className="card"
style={{
display: "flex",
flexDirection: "column",
justifyContent: "space-between",
height: "100%",
}}
>
<div className="card-body" style={{ flexGrow: 1 }}>
<div className="text--left">
<h3>Thursday 12 December</h3>
<ul>
<li>End-to-end developer experience with AKS Automatic</li>
<li>Application Gateway for Containers</li>
<li>Partner demo: Choreo Internal Developer Platform</li>
<li>Azure Container Networking Services</li>
<li>Workload Identity at scale with Spinkube on AKS</li>
<li>Securing AKS deployments with Azure Firewall</li>
<li>AKS add-ons: KEDA, dapr, NAP and more</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
);
}