Active Nerds
Reference Library

Technical Glossary

Mechanism-first definitions for commands, architecture patterns, and key concepts across Docker, Kubernetes, Gen AI, and Agentic AI.

Showing 49 of 49 entries

Isolated user-space process tree bounded by Linux namespaces and cgroups sharing the host kernel.

dockerkubernetesconceptbeginner

Immutable read-only tarball bundle containing root filesystem layers, binary dependencies, and OCI runtime metadata.

dockerkubernetesconceptbeginner

Linux kernel mechanism metering and limiting hardware resource allocations (CPU, memory, disk I/O) for process groups.

dockerkubernetesconceptbeginner

Kernel abstraction restricting what system resources (processes, network interfaces, mounts) a process tree can observe.

dockerconceptbeginner

Declarative plain-text build manifest consumed by BuildKit to assemble container image layers sequentially.

dockertoolbeginner

Storage driver combining distinct read-only image layers and a read-write layer into a single unified directory tree.

dockerarchitecture patternintermediate

Storage optimization strategy deferring file copies until modifications occur, sharing underlying layer blocks.

dockerarchitecture patternintermediate

Concurrent, DAG-based image builder engine in Docker offering parallel step execution and secret mounting.

dockertoolintermediate

Dockerfile design pattern using multiple FROM instructions to separate build-time SDK dependencies from slim runtime artifacts.

dockerarchitecture patternintermediate

Open Container Initiative specification defining container image tarball structures, manifests, and layer blobs.

dockerkubernetesprotocolintermediate

CLI command delegating Dockerfile parsing and layer assembly to the BuildKit engine.

dockercommandbeginner

CLI command instantiating and launching a container with specified isolation boundaries, volumes, and ports.

dockercommandbeginner

CLI command spawning a new process inside the existing namespaces of a running container.

dockercommandbeginner

CLI command creating and starting multi-container services declared in a compose YAML manifest.

dockercommandintermediate

HTTP API service storing and serving versioned OCI image manifests and content-addressable layer blobs.

dockerkubernetestoolintermediate

Smallest deployable unit in Kubernetes, grouping co-located containers sharing network namespaces and storage volumes.

kubernetesconceptbeginner

Worker machine (physical or VM) running kubelet, container runtime, and kube-proxy in a Kubernetes cluster.

kubernetesconceptbeginner

Declarative controller managing stateless Pod replicas, progressive rollouts, and automatic rollbacks.

kubernetesconceptbeginner

Abstract network endpoint presenting a stable virtual IP and DNS name across a dynamic pool of Pods.

kubernetesconceptbeginner

API object managing external HTTP/HTTPS routing rules to cluster-internal Services.

kubernetesconceptintermediate

Continuous control loop pattern comparing actual cluster state against declared target state in etcd.

kubernetesarchitecture patternintermediate

API object binding non-confidential key-value configuration data to Pod container environment variables or volume mounts.

kubernetesconceptbeginner

API object storing base64-encoded confidential credentials, certificates, or keys separately from image code.

kubernetesconceptbeginner

Workload controller managing stateful applications requiring unique network IDs and ordered volume provisioning.

kubernetesconceptintermediate

CLI command declaratively updating cluster resources using 3-way strategic merge patches against etcd.

kubernetescommandbeginner

CLI command querying and displaying summary tables of specified Kubernetes API resources.

kubernetescommandbeginner

CLI command establishing interactive shell sessions inside a specific container in a cluster Pod.

kubernetescommandbeginner

Package manager for Kubernetes bundling YAML templates and default value overrides into versioned Charts.

kubernetestoolintermediate

Primary node agent ensuring containers described in PodSpecs are instantiated and healthy on worker hosts.

kubernetestoolintermediate

Neural network architecture relying entirely on self-attention mechanisms to compute contextual representations in parallel.

gen-aiarchitecture patternintermediate

Mathematical operation computing context weights by comparing Query, Key, and Value vector dot-products.

gen-aiconceptintermediate

Sub-word atomic chunk created by tokenizers (e.g. BPE) mapping text strings to numerical vocabulary IDs.

gen-aiconceptbeginner

Dense numerical vector representing semantic meaning of text tokens in a continuous high-dimensional vector space.

gen-aiconceptbeginner

Architecture pattern augmenting LLM prompts with relevant context retrieved dynamically from external vector databases.

gen-aiagentic-aiarchitecture patternintermediate

Maximum token capacity an LLM can digest in a single forward pass, spanning system prompts, history, and responses.

gen-aiconceptbeginner

Hyperparameter scaling logit probabilities before softmax to tune generation randomness and entropy.

gen-aiconceptintermediate

Sampling strategy filtering candidate tokens to the smallest set whose cumulative probability reaches threshold P.

gen-aiconceptintermediate

Process of updating LLM weights on specialized task datasets to adjust domain behavior or response formats.

gen-aiconceptadvanced

Parameter-efficient fine-tuning technique freezing base weights and inserting trainable low-rank decomposition matrices.

gen-aiarchitecture patternadvanced

Alignment technique tuning LLM outputs using reward models trained on human pairwise preference rankings.

gen-aiarchitecture patternadvanced

Database engine specialized for indexing and performing fast nearest-neighbor similarity searches over vector embeddings.

gen-aiagentic-aitoolintermediate

Autonomous software loop leveraging an LLM as its core reasoning engine to observe environments, plan, and execute tool calls.

agentic-aiconceptbeginner

Mechanism enabling LLMs to emit structured JSON payload calls invoking external APIs, scripts, or database queries.

agentic-aigen-aiconceptbeginner

Agent prompting framework interleaving explicit step-by-step reasoning thoughts with action tool calls and observation inputs.

agentic-aiarchitecture patternbeginner

Control pattern decomposing high-level user tasks into DAG sub-goals executed sequentially or in parallel by subagents.

agentic-aiarchitecture patternintermediate

Agent self-correction loop evaluating tool outputs or generated code against criteria before returning final output.

agentic-aiarchitecture patternintermediate

Open client-server protocol standardizing how AI agents discover and invoke remote tools, resources, and prompts.

agentic-aiprotocolintermediate

Architecture connecting multiple specialized subagents via a central router or swarm topology to solve complex tasks.

agentic-aiarchitecture patternadvanced

State persistence architecture dividing context into short-term working context, long-term vector memory, and episodic logs.

agentic-aiconceptintermediate