Skip to content
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

Update glossary.md #311

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 13 additions & 1 deletion glossary.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Glossary
# Glossary
Write a paragraph explaining the term below, including 2-3 relevent links to more information about the topic.

## Front end Developer
Expand Down Expand Up @@ -166,7 +166,19 @@ Oracle VM VirtualBox is cross-platform virtualization software. It allows users


## Kubernetes / K8s
Kubernetes is an open-source software that helps to containerize applications. It makes it easier to manage if a company uses a ton of applications, you can run them in containers.

- It also takes cares of deploying a new container in case one goes down. So using Kubernetes provides less downtime than managing all of your own containers on your own
- Highly scalable and provides load balancing so the network is not overrun.

![image](https://github.com/user-attachments/assets/e1e838e8-7cd8-4ceb-9ad1-824479d91d64)
The image above shows the development of how applications were run in a system

- Traditional is just an application running on your computer
- Virtualized shows an application running in a virtual machine
- Containerized shows how one app can run in an isolated software, but not take up as many resources as a virtual machine does while still being isolated from the host machine

[Overview of Kubernetes](https://kubernetes.io/docs/concepts/overview/)

## Accessibility / A11y

Expand Down