diff --git a/modules/k3s/index.md b/modules/k3s/index.md index fa290f3..e0b0463 100644 --- a/modules/k3s/index.md +++ b/modules/k3s/index.md @@ -45,6 +45,17 @@ docs: ```bash dotnet add package Testcontainers.K3s --version 3.9.0 ``` + - id: nodejs + url: https://node.testcontainers.org/modules/k3s/ + maintainer: core + example: | + ```javascript + const container = await new K3sContainer("rancher/k3s:v1.31.2-k3s1").start(); + ``` + installation: | + ```bash + npm install @testcontainers/k3s --save-dev + ``` description: | K3s is a highly available, certified Kubernetes distribution designed for production workloads in unattended, resource-constrained, remote locations or inside IoT appliances. ---