-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #391 from bgraef/main
mv kind, add clip for image builder, add ocne yt playlist
- Loading branch information
Showing
15 changed files
with
111 additions
and
39 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
--- | ||
title: "Understand Kubernetes Terminology" | ||
date: 2022-04-08 | ||
draft: false | ||
summary: "Unsure what the various Kubernetes terms you hear being used mean? Then take a couple of minutes out, and this will introduce the basic Kubernetes Resource terms and provide context for their use." | ||
tags: ["ocne", "video", "ocne-k8s"] | ||
showDate: true | ||
--- | ||
|
||
{{< youtube id="e5m3TlvM4y4" title="A Quick Tour of Kubernetes on Oracle Linux" >}} | ||
|
||
## Details | ||
|
||
Unsure what the various Kubernetes terms you hear being used mean? Then take a couple of minutes out, and this will introduce the basic Kubernetes Resource terms and provide context for their use. |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
--- | ||
title: "Manage Namespaces with kubectl" | ||
date: 2024-05-27 | ||
draft: false | ||
summary: "This video introduces the kubectl commands used to create, delete and list namespaces." | ||
tags: ["ocne", "video", "clips", "ocne-k8s"] | ||
showDate: true | ||
--- | ||
|
||
{{< youtube id="MTh850Oro0g" title="Manage Namespaces with kubectl" >}} | ||
|
||
## Details | ||
|
||
This video demonstrates how to manage Kubernetes namespaces. Learn how to create and delete namespaces, and use a configuration file to manage namespaces. |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
--- | ||
title: "Install Minikube" | ||
date: 2022-05-03 | ||
draft: false | ||
summary: "This video provides the steps required in order to install Minikube and configure it to use Podman on Oracle Linux." | ||
tags: ["ocne", "video", "ocne-k8s"] | ||
showDate: true | ||
--- | ||
|
||
{{< youtube id="u1qY8ax0U44" title="Install Minikube on Oracle Linux" >}} | ||
|
||
## Details | ||
|
||
This video provides the steps required in order to install Minikube and configure it to use Podman on Oracle Linux. |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
--- | ||
title: "Kubernetes Concepts" | ||
date: 2022-03-25 | ||
draft: false | ||
summary: "This video provides a high-level overview/introduction to what Kubernetes is and introduces a few basic concepts to you." | ||
tags: ["ocne", "video", "ocne-k8s"] | ||
showDate: true | ||
--- | ||
|
||
{{< youtube id="syBe1H-qe8U" title="A Quick Tour of Kubernetes on Oracle Linuxx" >}} | ||
|
||
## Details | ||
|
||
This video provides a high-level overview/introduction to what Kubernetes is and introduces a few basic concepts to you. |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
--- | ||
title: "Install kind" | ||
date: 2023-08-07 | ||
draft: false | ||
summary: "Learn to install a local Kubernetes cluster using kind on Oracle Linux to develop for Cloud Native environments." | ||
tags: ["ocne", "video", "ocne-k8s"] | ||
showDate: true | ||
--- | ||
|
||
## Links | ||
|
||
:crescent_moon: [Lab](https://luna.oracle.com/lab/30610e81-95e7-4c54-85bc-efcb5e757e04) | ||
|
||
:spiral_notepad: [Tutorial](https://docs.oracle.com/en/learn/ol-kind) | ||
|
||
## Details | ||
|
||
[*kind*](https://kind.sigs.k8s.io/) is an open-source tool for running a locally hosted Kubernetes cluster using Podman containers as the cluster nodes. It provides a way for both developers and DevOps administrators to quickly create a Kubernetes cluster on a single machine without requiring the usual complicated and lengthy setup that would entail. | ||
|
||
### Objectives | ||
|
||
In this tutorial, you'll learn how to: | ||
|
||
- Install `kubectl` | ||
- Install *kind* | ||
- Use *kind* to start a single-node Kubernetes cluster | ||
|
||
### Prerequisites | ||
|
||
- Minimum of a single Oracle Linux 9 or later system | ||
|
||
- Each system should have Oracle Linux installed and configured with: | ||
- A non-root user account with sudo access | ||
- Podman and cURL packages | ||
- Cgroups v2 |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
--- | ||
title: "Install Image Builder on Oracle Linux" | ||
date: 2024-07-19 | ||
draft: false | ||
summary: "Learn how to install Image Builder on Oracle Linux." | ||
tags: ["ol", "video", "clips", "ol-install"] | ||
showDate: true | ||
--- | ||
|
||
{{< youtube id="O_R5m_Q27Yk" title="Install Image Builder on Oracle Linux" >}} | ||
|
||
## Details | ||
|
||
This video demonstrates how to install Image Builder on Oracle Linux. |
This file was deleted.
Oops, something went wrong.
Binary file not shown.