Skip to content

Commit

Permalink
Create building-a-secure-reliable-observable-idp-with-backstage.md (#…
Browse files Browse the repository at this point in the history
…1779)

* Create building-a-secure-reliable-observable-idp-with-backstage.md

Signed-off-by: Flynn <[email protected]>

* Add author & date

Signed-off-by: Flynn <[email protected]>

* Switch to embedded video and add thumbnail

Signed-off-by: Flynn <[email protected]>

* Switch social thumbnails to use featuredImage. Give the Backstage/Linkerd social preview a better featuredImage

Signed-off-by: Flynn <[email protected]>

* Clean up lint failure

Signed-off-by: Flynn <[email protected]>

* Comma for keywords

---------

Signed-off-by: Flynn <[email protected]>
Co-authored-by: Flynn <[email protected]>
  • Loading branch information
CathPag and kflynn committed May 24, 2024
1 parent 2b649f8 commit 2748933
Show file tree
Hide file tree
Showing 5 changed files with 35 additions and 4 deletions.
22 changes: 22 additions & 0 deletions linkerd.io/content/blog/2024/0524-backstage-and-linkerd.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
---
author: 'catherine'
date: 2024-05-23T00:00:00Z
title: Building a Secure, Reliable, Observable IDP with Backstage & Linkerd
tags:
- Backstage
- Video
description: This CNCF Cloud Native Live session explores building a rock-solid Internal Developer Platform (IDP) Backstage that empowers developers with self-service tools while streamlining security and observability.
keywords: [Backstage, Video]
thumbnail: '/uploads/2024/05/cnl-backstage-linkerd-thumbnail.png'
featuredImage: '/uploads/2024/05/cnl-backstage-linkerd-screenshot.png'
---
Smooth workflows are critical in the cloud-native world. This CNCF Cloud
Native Live session explores building a rock-solid Internal Developer
Platform (IDP) Backstage that empowers developers with self-service tools
while streamlining security and observability. Watch the recording with
Linkerd Tech Evangelist Flynn and Backstage Maintainer Ben Lambert as
they show you how a service mesh like Linkerd can supercharge your IDP,
ensuring seamless communication and clear visibility.

<!-- markdownlint-disable MD033 -->
<iframe style="width:800px; height:450px;" src="https://www.youtube.com/embed/43Yq24I0KNI?si=DAtnX3dNXZf2dDFI" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
4 changes: 3 additions & 1 deletion linkerd.io/layouts/partials/meta.html
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,9 @@
<meta property="og:type" content="website" />
<meta property="og:url" content="{{ .Page.RelPermalink | absURL }}" />

{{ if .Params.thumbnail }}
{{ if .Params.featuredImage }}
<meta property="og:image" content="{{ .Params.featuredImage| absURL | safeHTMLAttr }}" />
{{ else if .Params.thumbnail }}
<meta property="og:image" content="{{ .Params.thumbnail | absURL | safeHTMLAttr }}" />
{{ else }}
<meta property="og:image" content="https://linkerd.io/images/logo-only-200h.png" />
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
13 changes: 10 additions & 3 deletions linkerd.io/themes/buoyant/layouts/partials/twitter-cards.html
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
{{ with .Params.thumbnail }}
<meta name="twitter:card" content="summary_large_image"/>
<meta name="twitter:image" content="{{ . | absURL }}"/>
{{ if .Params.featuredImage }}
{{ with .Params.featuredImage }}
<meta name="twitter:card" content="summary_large_image"/>
<meta name="twitter:image" content="{{ . | absURL }}"/>
{{ end }}
{{ else if .Params.thumbnail }}
{{ with .Params.thumbnail }}
<meta name="twitter:card" content="summary_large_image"/>
<meta name="twitter:image" content="{{ . | absURL }}"/>
{{ end }}
{{ else }}
{{ $images := $.Resources.ByType "image" }}
{{ $featured := index $images 0 }}
Expand Down

0 comments on commit 2748933

Please sign in to comment.