-
Notifications
You must be signed in to change notification settings - Fork 1.9k
CQA WLC-1: OpenShift Overviews and Editions #114761
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
mburke5678
wants to merge
1
commit into
openshift:main
Choose a base branch
from
mburke5678:cqa-wlc-1
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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,18 @@ | ||
| // Module included in the following assemblies: | ||
| // | ||
| // * getting_started/kubernetes-overview.adoc | ||
|
|
||
| :_mod-docs-content-type: CONCEPT | ||
| [id="kubernetes-architecture_{context}"] | ||
| = Kubernetes architecture | ||
|
|
||
| [role="_abstract"] | ||
| You can run Kubernetes containers across various machines and environments. | ||
|
|
||
| A cluster is a single computational unit consisting of multiple nodes in a cloud environment. A Kubernetes cluster includes a control plane and compute nodes. | ||
|
|
||
| The control plane node controls and maintains the state of a cluster. You can run the Kubernetes application by using compute nodes. You can use the Kubernetes namespace to differentiate cluster resources in a cluster. Namespace scoping is applicable for resource objects, such as deployments, services, and pods. You cannot use namespace for cluster-wide resource objects such as storage classes, nodes, and persistent volumes. | ||
|
|
||
| .Architecture of Kubernetes | ||
| image::247_OpenShift_Kubernetes_Overview-2.png[] | ||
|
|
||
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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,21 @@ | ||
| // Text snippet included in the following modules: | ||
| // | ||
| // * modules/troubleshooting-windows-container-workload-issues.adoc | ||
| // * modules/windows-containers-troubleshooting.adoc | ||
|
|
||
| :_mod-docs-content-type: SNIPPET | ||
|
|
||
| What if I have text here? | ||
|
|
||
| include::modules/wmco-does-not-install.adoc[leveloffset=+1] | ||
|
|
||
| include::modules/investigating-why-windows-machine-compute-node.adoc[leveloffset=+1] | ||
|
|
||
| include::modules/accessing-windows-node.adoc[leveloffset=+1] | ||
| include::modules/accessing-windows-node-using-ssh.adoc[leveloffset=+2] | ||
| include::modules/accessing-windows-node-using-rdp.adoc[leveloffset=+2] | ||
|
|
||
| include::modules/collecting-kube-node-logs-windows.adoc[leveloffset=+1] | ||
| include::modules/collecting-windows-application-event-logs.adoc[leveloffset=+1] | ||
| include::modules/collecting-containerd-logs-windows.adoc[leveloffset=+1] | ||
|
|
This file contains hidden or 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 |
|---|---|---|
|
|
@@ -6,7 +6,10 @@ include::_attributes/common-attributes.adoc[] | |
|
|
||
| toc::[] | ||
|
|
||
| Kubernetes is an open source container orchestration tool developed by Google. You can run and manage container-based workloads by using Kubernetes. The most common Kubernetes use case is to deploy an array of interconnected microservices, building an application in a cloud native way. You can create Kubernetes clusters that can span hosts across on-premise, public, private, or hybrid clouds. | ||
| [role="_abstract"] | ||
| You can run and manage container-based workloads by using Kubernetes, an open source container orchestration tool developed by Google. | ||
|
|
||
| The most common Kubernetes use case is to deploy an array of interconnected microservices, building an application in a cloud native way. You can create Kubernetes clusters that can span hosts across on-premise, public, private, or hybrid clouds. | ||
|
|
||
| Traditionally, applications were deployed on top of a single operating system. With virtualization, you can split the physical host into several virtual hosts. Working on virtual instances on shared resources is not optimal for efficiency and scalability. Because a virtual machine (VM) consumes as many resources as a physical machine, providing resources to a VM such as CPU, RAM, and storage can be expensive. Also, you might see your application degrading in performance due to virtual instance usage on shared resources. | ||
|
|
||
|
|
@@ -27,9 +30,6 @@ include::modules/kubernetes-components.adoc[leveloffset=+1] | |
|
|
||
| include::modules/kubernetes-resources.adoc[leveloffset=+1] | ||
|
|
||
| .Architecture of Kubernetes | ||
| image::247_OpenShift_Kubernetes_Overview-2.png[] | ||
|
|
||
| A cluster is a single computational unit consisting of multiple nodes in a cloud environment. A Kubernetes cluster includes a control plane and worker nodes. You can run Kubernetes containers across various machines and environments. The control plane node controls and maintains the state of a cluster. You can run the Kubernetes application by using worker nodes. You can use the Kubernetes namespace to differentiate cluster resources in a cluster. Namespace scoping is applicable for resource objects, such as deployment, service, and pods. You cannot use namespace for cluster-wide resource objects such as storage class, nodes, and persistent volumes. | ||
| include::modules/kubernetes-architecture.adoc[leveloffset=+1] | ||
|
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Moved the text into the kubernetes-architecture.adoc module. |
||
|
|
||
| include::modules/kubernetes-conceptual-guidelines.adoc[leveloffset=+1] | ||
| include::modules/kubernetes-conceptual-guidelines.adoc[leveloffset=+1] | ||
This file contains hidden or 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
This file contains hidden or 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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Created a new module for text that came after an include. See kubernetes-overview.adoc, line 30