Pods | Kubernetes
https://kubernetes.io/docs/concepts/workloads/podsPods. Pods are the smallest deployable units of computing that you can create and manage in Kubernetes.. A Pod (as in a pod of whales or pea pod) is a group of one or more containers, with shared storage and network resources, and a specification for how to run the containers.A Pod's contents are always co-located and co-scheduled, and run in a shared context.
ossrs · GitHub
github.com › ossrssrs-k8s-template Public template Template repository for deploying SRS to any K8s service by GitHub Actions 3 MIT 2 0 0 Updated Jan 17, 2022. srs-docs Public
Kubernetes | Jenkins plugin
plugins.jenkins.io › kubernetesUnlike scripted k8s template, declarative templates do not inherit from parent template. Since the agents declared at stage level can override a global agent, implicit inheritance was leading to confusion. You need to explicitly declare the inheritance if necessary using the field inheritFrom.
Jobs | Kubernetes
https://kubernetes.io/docs/concepts/workloads/controllers/job15.01.2022 · The .spec.template is the only required field of the .spec. The .spec.template is a pod template. It has exactly the same schema as a Pod, except it is nested and does not have an apiVersion or kind. In addition to required fields for a Pod, a pod template in a Job must specify appropriate labels (see pod selector) and an appropriate restart ...
Persistent Volumes | Kubernetes
https://kubernetes.io/docs/concepts/storage/persistent-volumes13.12.2021 · This document describes persistent volumes in Kubernetes. Familiarity with volumes is suggested. Introduction Managing storage is a distinct problem from managing compute instances. The PersistentVolume subsystem provides an API for users and administrators that abstracts details of how storage is provided from how it is consumed. To do this, we introduce two new API …