Skip to content
Novus Examples

Explore the test library

Search files, editable visual templates, and live browser targets from one registry-backed directory. Filtered query views stay crawlable for links but are deliberately noindex; the stable taxonomy pages below remain the canonical search surfaces.

115 results

Page 4 of 5; 24 results per page.

Show the canonical directory
Preview of Kubernetes Namespace, ResourceQuota, and LimitRange
yaml
665 B
Actual file preview for Kubernetes Namespace, ResourceQuota, and LimitRange

Kubernetes Namespace, ResourceQuota, and LimitRange

A three-document governance bundle. Its real edge case is quantity handling: values like "8", 16Gi and 250m are Kubernetes quantity strings, and a parser that coerces the quoted ones to numbers or normalises the suffixed ones changes their meaning.

File
YAML · Kubernetes
Preview of Kubernetes NetworkPolicy with Ingress and Egress
yaml
798 B
Actual file preview for Kubernetes NetworkPolicy with Ingress and Egress

Kubernetes NetworkPolicy with Ingress and Egress

A NetworkPolicy with both policy types: an ingress rule combining namespace and pod selectors, and two egress rules, one of which uses an ipBlock with an except range. For testing policy engines that reason about allowed traffic.

File
YAML · Kubernetes
Preview of Kubernetes StatefulSet with Volume Claim Templates
yaml
1 KB
Actual file preview for Kubernetes StatefulSet with Volume Claim Templates

Kubernetes StatefulSet with Volume Claim Templates

A StatefulSet with volumeClaimTemplates, an ordered pod-management policy, a partitioned rolling update, and a non-root pod security context. For testing manifest linters and admission policies that reason about storage and identity.

File
YAML · Kubernetes
Preview of Makefile Pattern Rules and Conditionals
mk
608 B
Actual file preview for Makefile Pattern Rules and Conditionals

Makefile Pattern Rules and Conditionals

Pattern rules with the automatic variables $@, $<, $^ and $*, ifeq/ifdef conditional directives, a vpath search path, and a define block invoked through $(call). All recipe lines are TAB-indented and echo-only.

File
MK · Build
Preview of Makefile Targets and TAB Indentation
mk
932 B
Actual file preview for Makefile Targets and TAB Indentation

Makefile Targets and TAB Indentation

A Makefile whose recipe lines are indented with real TAB characters, as make requires. Covers simple, conditional, appended and substitution-reference variables, .PHONY, and .DEFAULT_GOAL. Every recipe is echo-only, so running it does nothing.

File
MK · Build
Preview of Makefile with Space Indentation, Intentionally Invalid
mk
491 B
Actual file preview for Makefile with Space Indentation, Intentionally Invalid

Makefile with Space Indentation, Intentionally Invalid

An intentionally invalid Makefile whose recipe lines are indented with four spaces instead of the required TAB. This is the most common Makefile defect there is, and it is invisible in most editors — which is exactly why it belongs in a fixture set.

File
MK · Build
Preview of Mermaid Deployment State Diagram
mmd
621 B
Actual file preview for Mermaid Deployment State Diagram

Mermaid Deployment State Diagram

A Mermaid stateDiagram-v2 describing environment promotion with canary and rollback transitions, start and end pseudostates, and a note block. A second Mermaid diagram type, so a renderer is not only tested on flowcharts.

File
MMD · Dag Graphs
Preview of Mermaid Pipeline Flowchart
mmd
714 B
Actual file preview for Mermaid Pipeline Flowchart

Mermaid Pipeline Flowchart

The shared six-task ETL topology as a Mermaid flowchart, with mixed node shapes, a subgraph, a classDef and %% comments. The Mermaid twin of the Graphviz fixture, for scoring diagram-format converters against one known answer.

File
MMD · Dag Graphs
Preview of Pipeline DAG Topology (JSON, with Expected Answers)
json
1.6 KB
Actual file preview for Pipeline DAG Topology (JSON, with Expected Answers)

Pipeline DAG Topology (JSON, with Expected Answers)

The shared six-task topology as a plain node/edge JSON document that also publishes the expected answers — roots, leaves, longest path, and topological order — so a graph library or DAG visualiser can be scored without a hand-written oracle.

File
JSON · Airflow
Use case
Graph dataData engineering+1· Conversion set
Preview of Pipeline DAG with a Cycle (JSON), Intentionally Invalid
json
1.4 KB
Actual file preview for Pipeline DAG with a Cycle (JSON), Intentionally Invalid

Pipeline DAG with a Cycle (JSON), Intentionally Invalid

The shared topology plus one back edge, making it intentionally invalid as a DAG. The document publishes the cycle it contains, so a scheduler or graph validator can be tested on both detecting the cycle and naming it.

File
JSON · Airflow
Preview of Tekton Pipeline with when and finally
yaml
850 B
Actual file preview for Tekton Pipeline with when and finally

Tekton Pipeline with when and finally

A Tekton Pipeline chaining three tasks with runAfter, a when expression that consumes a prior task's result, and a finally task that runs regardless of outcome. The finally block is a common omission in Tekton graph extractors.

File
YAML · Argo Tekton
Preview of Tekton PipelineRun (Run Request)
yaml
755 B
Actual file preview for Tekton PipelineRun (Run Request)

Tekton PipelineRun (Run Request)

A Tekton PipelineRun as a run request: a pipelineRef, params, timeouts and a workspace binding, with no status block. A completed run's status is a record of what happened and belongs with test-report fixtures, not with pipeline definitions.

File
YAML · Argo Tekton
Preview of Tekton Task with Params, Workspaces, and Results
yaml
838 B
Actual file preview for Tekton Task with Params, Workspaces, and Results

Tekton Task with Params, Workspaces, and Results

A Tekton Task declaring string and array params, a workspace, a result, and two steps that use Tekton's $(params.x) and $(workspaces.x.path) variable syntax, including the $(params.flags[*]) array expansion form.

File
YAML · Argo Tekton
Preview of Terraform Configuration, Intentionally Invalid
tf
554 B
Actual file preview for Terraform Configuration, Intentionally Invalid

Terraform Configuration, Intentionally Invalid

An intentionally invalid Terraform configuration: an unclosed resource block, a colon where HCL needs an equals sign, a reference to an undeclared resource, and a resource block missing its second label. Four documented faults for a parser to report.

File
TF · Terraform
Preview of Terraform Default terraform.tfvars
tfvars
405 B
Actual file preview for Terraform Default terraform.tfvars

Terraform Default terraform.tfvars

A terraform.tfvars assigning the staging defaults, including a nested map-of-objects value. Pairs with the production overrides file, which replaces that map wholesale rather than merging into it.

File
TFVARS · Terraform
Preview of Terraform Locals, for Expressions, and dynamic Blocks
tf
1.1 KB
Actual file preview for Terraform Locals, for Expressions, and dynamic Blocks

Terraform Locals, for Expressions, and dynamic Blocks

The expression-heavy half of the stack: for expressions producing both a map and a filtered list, conditional expressions selecting whole objects, and a dynamic block that generates two firewall rules from a local list.

File
TF · Terraform
Preview of Terraform Module Calls with Meta-Arguments
tf
629 B
Actual file preview for Terraform Module Calls with Meta-Arguments

Terraform Module Calls with Meta-Arguments

Three module calls covering the shapes a dependency grapher has to handle: a local path with explicit provider passing, a versioned registry source under for_each, and a count-gated conditional module.

File
TF · Terraform
Preview of Terraform Outputs and Splat Expressions
tf
734 B
Actual file preview for Terraform Outputs and Splat Expressions

Terraform Outputs and Splat Expressions

Five Terraform outputs exercising a splat expression over a counted resource, a for expression over a for_each module, and a sensitive output that must stay redacted when propagated from a sensitive input.

File
TF · Terraform
Preview of Terraform Plan JSON
json
4.3 KB
Actual file preview for Terraform Plan JSON

Terraform Plan JSON

A Terraform plan JSON document with create, update and delete changes, after_unknown markers, sensitivity annotations, and a configuration section. This is the artifact policy engines read before anything runs, which is why it sits with pipeline definitions rather than with run reports.

File
JSON · Terraform
Preview of Terraform Production tfvars Overrides
tfvars
506 B
Actual file preview for Terraform Production tfvars Overrides

Terraform Production tfvars Overrides

The production tfvars overrides. Its point is a semantic that surprises people: a complex-typed variable is replaced whole, not deep-merged, so the staging app-b subnet does not survive the override.

File
TFVARS · Terraform
Preview of Terraform Required Providers and Backend
tf
665 B
Actual file preview for Terraform Required Providers and Backend

Terraform Required Providers and Backend

The terraform settings block: a version constraint range, two pinned providers, a local backend, default tags, and a second aliased provider configuration. The fictional examplecloud provider means nothing resolves to a real service.

File
TF · Terraform
Preview of Terraform Resources with count and for_each
tf
1.1 KB
Actual file preview for Terraform Resources with count and for_each

Terraform Resources with count and for_each

The resource graph: a network, a for_each subnet set, a counted instance resource, a data source, and a bucket on an aliased provider. Both repetition meta-arguments appear, plus lifecycle and an explicit depends_on edge.

File
TF · Terraform
Preview of Terraform Variables with Validation Blocks
tf
1.4 KB
Actual file preview for Terraform Variables with Validation Blocks

Terraform Variables with Validation Blocks

Seven Terraform variables covering string, number, map and a map(object) with an optional attribute and a default, plus two validation blocks with error messages. The sensitive variable's default is explicitly a SAMPLE note, not a credential.

File
TF · Terraform
Preview of TOML Build Configuration with Array of Tables
toml
1.1 KB
Actual file preview for TOML Build Configuration with Array of Tables

TOML Build Configuration with Array of Tables

A build-tool configuration in TOML, chosen for the constructs YAML has no direct equivalent for: three [[build.step]] array-of-tables entries carrying an ordered pipeline, a quoted glob key, and all three TOML date-time flavours.

File
TOML · Build