Container Technology Wiki
Docker Containers
- Docker 101
- Basic Docker Operations
- Docker Administration
- Docker Security Resources
- Docker OS Interaction
- Docker With Other Tools
- Docker API
- Docker Compose
Kubernetes Guide
- Kubernetes 101
-
Kubernetes Architecture
- Kubernetes Ecosystem
- Kubernetes Nodes
- Kubernetes Pods
- Kubernetes Controllers and Control Plane
- Kubernetes DaemonSets
- Container Runtime Interface
- Working with Containers in Kubernetes
- Working with Images in Kubernetes
- Workloads in Kubernetes
- Kubernetes Services
- Kubernetes Jobs
- Kubernetes and Microservices
- Kubernetes Operators
- Kubernetes Persistent Volumes
- Kubernetes Advantages and Use Cases
-
Kubernetes Operations
- Installing Kubernetes
- Kubernetes Configuration
- Kubernetes Monitoring
- Kubernetes Debugging and Troubleshooting
- Kubernetes Load Balancing
- Kubernetes Security
- Kubernetes Networking
- Kubernetes Storage Management
- Kubernetes in Production
- Working with Kubernetes Ingress
- Kubernetes Security Best Practices
- Managing Kubernetes with Kops and Kubeadm
- Kubernetes Secrets
- Kubernetes Autoscaling
- Kubernetes ConfigMap
- Kubernetes Namespace
- Kubernetes Authentication
- Kubernetes Vault
- CIS Kubernetes Benchmark
- Kubernetes Cluster
- Kubernetes as a Service
- Managed Kubernetes
- Kubernetes Distributions
- Enterprise Kubernetes
Container Basics
- Container Architecture
- Advantages of Containers
- Container Challenges
- Containers and IT Infrastructure
- Enterprise DevOps
- eBPF
- eBPF Linux
Containers Ops
- Container Security Management
- Container Deployment
- Container Monitoring
- Container Automation
- Container Multitenancy
- Container Backup and Disaster Recovery
- Prometheus Monitoring
Container Security
- Container Security Best Practices
- Containers for DevSecOps
- Container Vulnerabilities and Threats
- Container Vulnerability Scanning
- Container Secrets Management
- Container Access Control
- Container Audits and Compliance
- Application Whitelisting
- Zero Trust Networks
- Network Segmentation for Containers
- Container Isolation
- Open Source Security Tools for Containers
- Open Source Vulnerability Scanner
- Open Source Security Tools
- Container Security Tools
Cloud Native Computing Foundation
- AWS EC2 Security
- Cloud-Native Applications
- Cloud-Native Architecture
- Cloud Native AWS
- Cloud Native Development
- Cloud Native Infrastructure
- Cloud Native Security
- Envoy Proxy
- Harbor Kubernetes
- Open Policy Agent
- Oracle Cloud Security
- SaaS Cloud Security
- Security Issues in Cloud Computing
- SPIFFE
- VMware Tanzu
Serverless Computing
- Serverless Architecture
- AWS Lambda
- Azure Functions
- Google Cloud Functions
- Serverless Security
- On-Premises Serverless Platforms
- Function as a Service - FaaS
- Knative
- Serverless vs Containers
Container Platforms
- Containers and Cloud Computing
- Container Operating Systems
- Red Hat Openshift
- Pivotal Container Service
- Multi-Cloud Strategy
- Kubernetes vs Cloud Foundry
- CWPP
Other Container Engines
Kubernetes Alternatives
Container Community and Events
- Container Technology Wiki
- Kubernetes Guide
- Kubernetes Architecture
- Kubernetes Jobs
Kubernetes Jobs
A Kubernetes job is a supervisor for pods carrying out batch processes, that is, a process that runs for a certain time to completion, for example a calculation or a backup operation. This page gathers resources about Kubernetes Jobs, including an introduction, tutorials,examples and more.
Below we have compiled publicly available sources from around the world that present views on Kubernetes Jobs.
The Container Security book by Liz Rice
Fundamental Technology Concepts that Protect Containerized Applications
Official Documentation

kubernetes.io

kubernetes.io
Perspectives on Kubernetes Jobs

Introduction to Kubernetes Jobs
docs.openshift.or

devoperandi.com

outcoldman.com

Orchestrating Jobs On Openshift And Kubernetes
cpitman.github.io
How To

How to Run Scheduled Jobs to Kubernetes Cluster
blog.wercker.com

kubernetesbyexample.com
Further Reading
- Kubernetes Ecosystem — This section will map out the key players in the Kubernetes https://blog.aquasec.com/managing-kubernetes-secretsecosystem, from the well-known industry leaders to innovative start-ups solutions.
- Kubernetes Nodes — A node is a worker machine in Kubernetes https://blog.aquasec.com/managing-kubernetes-secrets, previously known as a minion. A node may be a VM or physical machine, depending on the cluster. Each node in Kubernetes has the services necessary to run pods and is managed by the master components. The services on a node include Docker, kubelet and kube-proxy. This page gathers resources about how to create and manage Kubernetes Nodes.
- Kubernetes Pods — A pod is a group of one or more containers (such as Docker containers), with shared storage/network, 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. This page gathers resources on what Kubernetes Pods are and how to create and manage them.
- Kubernetes Controllers and Control Plane — Kubernetes Guide runs a group of controllers that take care of routine tasks to ensure the desired state of the cluster matches the observed state. Basically, each controller is responsible for a particular resource in the Kubernetes world. This page gathers resources about the Kubernetes https://blog.aquasec.com/managing-kubernetes-secretscontrollers including information about replication controllers, node controllers and the Kubernetes controller manager.
- Kubernetes DaemonSets — Aggregating service logs, collecting node metrics, or running a networked storage cluster all require a container to be replicated across all nodes. In Kubernetes, this is done with a DaemonSet. A DaemonSet ensures that an instance of a specific pod is running on all (or a selection of) nodes in a cluster. This page gathers resources on how to use and deploying a daemon to all nodes.
- Container Runtime Interface — The Container Runtime Interface (CRI) is a plugin interface which enables kubelet to use a wide variety of container runtimes, without the need to recompile. CRI consists of a protocol buffers and gRPC API, and libraries, with additional specifications and tools under active development. This page gathers resources about how to use the container runtime interface and how to build Kubernetes cluster using the CRI.
- Working with Containers in Kubernetes — This page gathers resources about how to create and work with container images (such as Docker images) in Kubernetes Guide using different environments like Azure, OpenShift and more.
- Working with Images in Kubernetes — Vagrant is a tool focused on providing a consistent development environment workflow across multiple operation systems. Docker is a container management that can consistently run software as long as a containerization system exists. This page compares their features, pros and cons to see which is better and if they can work together.
- Workloads in Kubernetes — As more and more enterprises adopt a container based architecture, a container orchestrator has become necessary in order to provide wide-ranging options to manage containerized workloads. Kubernetes https://blog.aquasec.com/managing-kubernetes-secretsprovides many options to manage containerized workloads. This page gathers resources on how to run workloads in Kubernetes.
- Kubernetes Services — A Kubernetes Guide service is an abstraction which defines a logical set of Pods and a policy by which to access them - sometimes called a micro-service. The set of Pods targeted by a service is usually determined by a Label Selector. This page gathers resources about the Kubernetes https://blog.aquasec.com/managing-kubernetes-secretsservice types and how to create and work with them.
- Kubernetes Jobs — A Kubernetes https://blog.aquasec.com/managing-kubernetes-secretsjob is a supervisor for pods carrying out batch processes, that is, a process that runs for a certain time to completion, for example a calculation or a backup operation. This page gathers resources about Kubernetes Jobs, including an introduction, tutorials,examples and more.
- Kubernetes and Microservices — Kubernetes https://blog.aquasec.com/managing-kubernetes-secretssupports a microservices architecture through the service construct. It allows developers to abstract away the functionality of a set of Pods and expose it to other developers through a well-defined API. This page gathers resources about how to use Kubernetes to create a continuous delivery configuration for building microservices.
- Kubernetes Operators — Kubernetes Operators are applications that facilitate the use of the Kubernetes container management system by automating backups, updates, and scaling. You can build operators with the open source Operators Framework. This page gathers resources about Kubernetes Operators and how to create and work with them.
- Kubernetes Persistent Volumes — Kubernetes Persistent Volumes are storage objects with a lifecycle independent of the pod that uses them. They store data in clusters and can be customized for specific uses, with either dynamic or administrator provisioning. This page gathers resources about persistent volumes and how you can create and configure a persistent volume claim (PVC) to add persistent storage in Kubernetes.
Get updates on container technology

