backend-and-orchestration-t.../kubernetes
dependabot[bot] 36b5bdd249
Bump semver, @aws-cdk/cx-api and @aws-cdk/assert
Bumps [semver](https://github.com/npm/node-semver) to 7.5.4 and updates ancestor dependencies [semver](https://github.com/npm/node-semver), [@aws-cdk/cx-api](https://github.com/aws/aws-cdk/tree/HEAD/packages/@aws-cdk/cx-api) and [@aws-cdk/assert](https://github.com/aws/aws-cdk/tree/HEAD/packages/@aws-cdk/assert). These dependencies need to be updated together.


Updates `semver` from 7.3.8 to 7.5.4
- [Release notes](https://github.com/npm/node-semver/releases)
- [Changelog](https://github.com/npm/node-semver/blob/main/CHANGELOG.md)
- [Commits](https://github.com/npm/node-semver/compare/v7.3.8...v7.5.4)

Updates `@aws-cdk/cx-api` from 1.12.0 to 1.203.0
- [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.203.0/packages/@aws-cdk/cx-api)

Updates `@aws-cdk/assert` from 1.203.0 to 2.68.0
- [Release notes](https://github.com/aws/aws-cdk/releases)
- [Changelog](https://github.com/aws/aws-cdk/blob/v2.68.0/CHANGELOG.v2.md)
- [Commits](https://github.com/aws/aws-cdk/commits/v2.68.0/packages/@aws-cdk/assert)

---
updated-dependencies:
- dependency-name: semver
  dependency-type: indirect
- dependency-name: "@aws-cdk/cx-api"
  dependency-type: indirect
- dependency-name: "@aws-cdk/assert"
  dependency-type: direct:development
...

Signed-off-by: dependabot[bot] <support@github.com>
2023-07-11 18:08:42 +00:00
..
kustomize Update README.md 2023-03-16 20:21:14 -07:00
node-server-example Update README.md 2023-03-16 20:17:22 -07:00
python-cdk Bump semver, @aws-cdk/cx-api and @aws-cdk/assert 2023-07-11 18:08:42 +00:00
README.md Update README.md 2023-03-16 20:15:35 -07:00
references_for_kubectl.md Clean up this repo 2022-03-23 14:59:51 +04:00

resources on kubernetes


tl; dr


  1. a kubernetes cluster consists of nodes (similar to servers)
  2. nodes run pods, which are collections of docker containers
  3. containers in a pod share the same network
  4. deployment is a kubernetes object responsible for launching and maintaining pods
  5. services objects allow pods to communicate with other pods


examples in this repository




external resources


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