backend-and-orchestration-t.../kubernetes
dependabot[bot] e07af3a88e
Bump jsdom, @aws-cdk/assert and jest
Removes [jsdom](https://github.com/jsdom/jsdom). It's no longer used after updating ancestor dependencies [jsdom](https://github.com/jsdom/jsdom), [@aws-cdk/assert](https://github.com/aws/aws-cdk/tree/HEAD/packages/@aws-cdk/assert) and [jest](https://github.com/facebook/jest/tree/HEAD/packages/jest). These dependencies need to be updated together.


Removes `jsdom`

Updates `@aws-cdk/assert` from 1.12.0 to 1.184.1
- [Release notes](https://github.com/aws/aws-cdk/releases)
- [Changelog](https://github.com/aws/aws-cdk/blob/main/CHANGELOG.v2.md)
- [Commits](https://github.com/aws/aws-cdk/commits/v1.184.1/packages/@aws-cdk/assert)

Updates `jest` from 24.9.0 to 29.3.1
- [Release notes](https://github.com/facebook/jest/releases)
- [Changelog](https://github.com/facebook/jest/blob/main/CHANGELOG.md)
- [Commits](https://github.com/facebook/jest/commits/v29.3.1/packages/jest)

---
updated-dependencies:
- dependency-name: jsdom
  dependency-type: indirect
- dependency-name: "@aws-cdk/assert"
  dependency-type: direct:development
- dependency-name: jest
  dependency-type: direct:development
...

Signed-off-by: dependabot[bot] <support@github.com>
2022-12-25 03:00:39 +00:00
..
kustomize Clean up this repo 2022-03-23 14:59:51 +04:00
node-server-example Clean up this repo 2022-03-23 14:59:51 +04:00
python-cdk Bump jsdom, @aws-cdk/assert and jest 2022-12-25 03:00:39 +00:00
README.md Clean up this repo 2022-03-23 14:59:51 +04:00
references_for_kubectl.md Clean up this repo 2022-03-23 14:59:51 +04:00

Kubernetes

A Kubernetes cluster consists of Nodes (similar to servers). Nodes run Pods, which 
are collections of Docker containers. Containers in a Pod share the same network.
Deployment is a Kubernetes object responsible for launching and maintaining pods.
Services objects allow pods to communicate with other pods. 

Examples in this repository

Learning K8s

Tools

  • Minikube implements a local Kubernetes cluster on macOS, Linux, and Windows. You can install it following this instructions.
  • kubectl is a command line interface for running commands against Kubernetes clusters.
  • kubectx is a tool to switch between k8s contexts.
  • k14s: Kubernetes Tools that follow Unix philosophy to be simple, and composable.

Tutorials

MOOCs & Learning Vidoes

Articles

Prometheus Operator