Skip to content

Commit 6173a41

Browse files
committed
Fix embedded video player
1 parent 65cfc70 commit 6173a41

File tree

5 files changed

+7
-5
lines changed

5 files changed

+7
-5
lines changed

website/docs/automation/gitops/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@ What is GitOps? Coined by Weaveworks CEO, Alexis Richardson, GitOps is an operat
1212

1313
Watch a video walk-through of the GitOps section with one of the module maintainers, Carlos Santana (AWS) here:
1414

15-
<ReactPlayer controls url="https://www.youtube-nocookie.com/embed/dONzzCc0oHo" /> <br />
15+
<ReactPlayer controls src="https://www.youtube-nocookie.com/embed/dONzzCc0oHo" width={640} height={360} /> <br />

website/docs/introduction/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,4 @@ These labs are designed in a way that you can pick any combination of modules th
2020

2121
To learn about the basics of Amazon EKS, watch this short ~10 minute video:
2222

23-
<ReactPlayer controls url="https://www.youtube-nocookie.com/embed/E956xeOt050" /> <br />
23+
<ReactPlayer controls src="https://www.youtube-nocookie.com/embed/E956xeOt050" width={640} height={360} /> <br />

website/docs/networking/vpc-cni/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Pod networking, also called cluster networking, is the center of Kubernetes netw
99

1010
Watch a video walk-through of the networking module by one of the module maintainers, Sheetal Joshi (AWS) here:
1111

12-
<ReactPlayer controls url="https://www.youtube-nocookie.com/embed/EAZnXII9NTY" /> <br />
12+
<ReactPlayer controls src="https://www.youtube-nocookie.com/embed/EAZnXII9NTY" width={640} height={360} /> <br />
1313

1414
Amazon EKS uses Amazon VPC to provide networking capabilities to worker nodes and Kubernetes Pods. An EKS cluster consists of two VPCs: an AWS managed VPC that hosts the Kubernetes control plane and a second customer-managed VPC that hosts the Kubernetes worker nodes where containers run, as well as other AWS infrastructure (like load balancers) used by a cluster. All worker nodes need the ability to connect to the managed API server endpoint. This connection allows the worker node to register itself with the Kubernetes control plane and to receive requests to run application pods.
1515

website/docs/observability/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ In this chapter, we'll cover how you can use AWS observability solutions integra
1515

1616
Watch a video walk-through of the observability module with one of the module maintainers, Nirmal Mehta (AWS) here:
1717

18-
<ReactPlayer controls url="https://www.youtube-nocookie.com/embed/ajPe7HVypxg" /> <br />
18+
<ReactPlayer controls src="https://www.youtube-nocookie.com/embed/ajPe7HVypxg" width={640} height={360} /> <br />
1919

2020
:::info
2121
To dive deeper into AWS Observability features take a look at the [One Observability Workshop](https://catalog.workshops.aws/observability/en-US)

website/src/components/HomepageVideo/index.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,9 @@ export default function HomepageVideo() {
99
<div className={styles.video}>
1010
<ReactPlayer
1111
controls
12-
url="https://www.youtube-nocookie.com/embed/E956xeOt050"
12+
src="https://www.youtube-nocookie.com/embed/E956xeOt050"
13+
width={640}
14+
height={360}
1315
/>
1416
</div>
1517
</div>

0 commit comments

Comments
 (0)