diff --git a/docs/pages/syncer/other_resources/generic_sync.mdx b/docs/pages/syncer/other_resources/generic_sync.mdx index 7cfce0d55..a5a49575f 100644 --- a/docs/pages/syncer/other_resources/generic_sync.mdx +++ b/docs/pages/syncer/other_resources/generic_sync.mdx @@ -15,3 +15,7 @@ You may find configuration examples in the ["generic-sync-examples" folder in th :::warning Alpha feature Generic sync feature is currently in an alpha state. This is an advanced feature that requires more permissions in the host cluster, and as a result, it can potentially cause significant disruption in the host cluster. ::: + +
+ +
diff --git a/docs/pages/using-vclusters/access.mdx b/docs/pages/using-vclusters/access.mdx index b3a86f3bf..f23ce97e0 100644 --- a/docs/pages/using-vclusters/access.mdx +++ b/docs/pages/using-vclusters/access.mdx @@ -302,3 +302,8 @@ export KUBECONFIG=./kubeconfig.yaml # Run any kubectl command kubectl get ns ``` + +
+ +
+ diff --git a/docs/pages/using-vclusters/kube-context.mdx b/docs/pages/using-vclusters/kube-context.mdx index 9ec95e428..77d01d58c 100644 --- a/docs/pages/using-vclusters/kube-context.mdx +++ b/docs/pages/using-vclusters/kube-context.mdx @@ -3,7 +3,7 @@ title: Accessing vCluster sidebar_label: Kube-Context --- -There are multiple ways how you can access a vCluster with an external application like `kubectl`. +There are multiple ways how you can access a vCluster with an external application like `kubectl`. ## Using the vCluster CLI @@ -158,3 +158,8 @@ Wait until the vCluster has started and you can retrieve the kube config via: ``` kubectl get secret vc-my-vcluster -n my-vcluster --template={{.data.config}} | base64 -D ``` + +
+ +
+ diff --git a/docs/src/css/custom.css b/docs/src/css/custom.css index c417eb4d8..d71a93314 100644 --- a/docs/src/css/custom.css +++ b/docs/src/css/custom.css @@ -709,3 +709,20 @@ body .markdown { visibility: visible; opacity:1; } + +/* YouTube player embed */ +.videoWrapper { + position: relative; + padding-bottom: 56.25%; + /* 16:9 */ + padding-top: 25px; + height: 0; +} + +.videoWrapper iframe { + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 100%; +}