Skip to content
This repository was archived by the owner on Jan 23, 2026. It is now read-only.

Commit 2c76a44

Browse files
committed
move warning into header
1 parent 84877ce commit 2c76a44

11 files changed

Lines changed: 19 additions & 32 deletions

File tree

docs/source/_static/css/custom.css

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
.admonition.warning {
2+
margin-bottom: 2rem;
3+
}

docs/source/_templates/page.html

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{% extends "!page.html" %}
2+
3+
{% block content %}
4+
<div class="admonition warning">
5+
<p class="admonition-title">Warning</p>
6+
<p>This documentation is actively being updated as the project evolves and may not be complete in all areas.</p>
7+
</div>
8+
{{ super() }}
9+
{% endblock %}
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
<div class="admonition warning">
2+
<p class="admonition-title">Warning</p>
3+
<p>This documentation is actively being updated as the project evolves and may not be complete in all areas.</p>
4+
</div>

docs/source/api-reference/drivers.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,5 @@
11
# Driver Classes and Architecture
22

3-
```{warning}
4-
This documentation is actively being updated as the project evolves and may not be complete in all areas.
5-
```
6-
73
## Driver Architecture
84

95
Jumpstarter uses a client/server model for drivers to interact with hardware.

docs/source/architecture.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,5 @@
11
# Architecture
22

3-
```{warning}
4-
This documentation is actively being updated as the project evolves and may not be complete in all areas.
5-
```
6-
73
The Jumpstarter architecture is based on a client/server model. This enables a
84
single client to communicate with one or many devices under test.
95

docs/source/conf.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,7 @@
6464
html_css_files = [
6565
"css/versions.css",
6666
"css/tabs.css",
67+
"css/custom.css",
6768
]
6869
html_sidebars = {
6970
"**": [

docs/source/config/cli.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,5 @@
11
# CLI Configuration
22

3-
```{warning}
4-
This documentation is actively being updated as the project evolves and may not be complete in all areas.
5-
```
6-
73
Jumpstarter can be configured as either a client, an exporter, or both depending
84
on your use case and deployment strategy.
95

docs/source/glossary.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,5 @@
11
# Glossary
22

3-
```{warning}
4-
This documentation is actively being updated as the project evolves and may not be complete in all areas.
5-
```
6-
73
## Acronyms
84

95
* `DUT`: Device Under Test

docs/source/index.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,6 @@
22

33
Jumpstarter is a free and open-source testing tool that enables you to test your software stack on both real hardware and virtual environments using CI/CD principles. It provides powerful testing tools that leverage Cloud Native principles, modern CI/CD technologies, and open standards for the next generation of edge devices, whether physical or emulated.
44

5-
```{warning}
6-
This documentation is actively being updated as the project evolves and may not be complete in all areas.
7-
```
8-
95
## Device Automation Made Simple
106

117
Jumpstarter decouples your target devices (physical or virtual) from test runners, development machines, and CI/CD pipelines, allowing you to use the same automation scripts, commands, and processes everywhere. Think of it as a *Makefile* for device automation that can run locally on your machine or distributed across your infrastructure.

docs/source/installation/service/kind-helm.md

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,7 @@
11
# Local cluster with KinD
22

33
If you want to play with the Jumpstarter Controller on your local machine, we
4-
recommend running a local Kubernetes cluster.
5-
6-
```{warning}
7-
A local cluster is not recommended for production environments.
8-
Please use a full Kubernetes installation either on-premises or in the cloud for production deployments.
9-
```
4+
recommend running a local Kubernetes cluster for development purposes.
105

116
Kind is a tool for running local Kubernetes clusters using Podman or Docker
127
container "nodes".

0 commit comments

Comments
 (0)