-
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 #377 from mlittlec/main
Add Use Operators Tutorial/Lab
- Loading branch information
Showing
2 changed files
with
44 additions
and
0 deletions.
There are no files selected for viewing
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,44 @@ | ||
--- | ||
title: "Use Operators" | ||
date: 2024-06-27 | ||
draft: false | ||
summary: "Learn to deploy and use Operators with Oracle Cloud Native Environment." | ||
tags: ["ocne", "lab", "tutorial", "ocne-install"] | ||
showDate: true | ||
--- | ||
|
||
## Links | ||
|
||
:crescent_moon: [Lab](https://luna.oracle.com/lab/6f5e5b2e-f478-4a0f-8671-98d78a34aaf6) | ||
|
||
:spiral_notepad: [Tutorial](https://docs.oracle.com/en/learn/ocne-operator) | ||
|
||
## Details | ||
|
||
A [Kubernetes operator](https://kubernetes.io/docs/concepts/extend-kubernetes/operator/) is a design pattern for writing code to automate tasks and extend Kubernetes. An operator is a set of concepts you can use to define a service for Kubernetes and helps to automate administrative services in Kubernetes. | ||
|
||
The [Operator Lifecycle Manager module](https://docs.oracle.com/en/operating-systems/olcne/1.9/olm/) installs an instance of [Operator Lifecycle Manager](https://olm.operatorframework.io/) into a Kubernetes cluster to manage the installation and lifecycle of the operators. The Operator Lifecycle Manager references a public upstream operator registry ([https://operatorhub.io](https://operatorhub.io)) to share Operators. | ||
|
||
This tutorial shows how to install the Operator Lifecycle Manager module into your Oracle Cloud Native Environment cluster, followed by an example showing how to install and use an Operator. | ||
|
||
### Objectives | ||
|
||
In this tutorial, you will learn: | ||
|
||
- To install the `operator-lifecycle-manager` module | ||
- Verify the installation of the Operator Manager | ||
- Install additional Operators | ||
|
||
### Prerequisites | ||
|
||
- Minimum of a 3-node Oracle Cloud Native Environment cluster: | ||
|
||
- Operator node | ||
- Kubernetes control plane node | ||
- Kubernetes worker node | ||
|
||
- Each system should have Oracle Linux installed and configured with: | ||
|
||
- An Oracle user account (used during the installation) with sudo access | ||
- Key-based SSH, also known as password-less SSH, between the hosts | ||
- Installation of Oracle Cloud Native Environment with the OCI Cloud Controller Manager |