Skip to content

Commit a465d49

Browse files
docs: auto-update generated documentation (#32)
- Updated CLI command documentation - Regenerated Docusaurus build files - Updated version information Auto-generated by GitHub Actions Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 59bf82d commit a465d49

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

docusaurus/docs/api/actions.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,9 @@ Args:
2020
- File path: Path to a kubeconfig file (e.g., "/path/to/config.yaml")
2121
- YAML string: Kubeconfig content as a YAML string (auto-detected)
2222
kubecontext: Kubernetes context to use (default: current context)
23+
plain_http: Use HTTP instead of HTTPS for OCI registries (default: False).
24+
Enable this when using local registries without TLS (e.g., MicroK8s registry).
25+
insecure_skip_tls_verify: Skip TLS certificate verification (default: False)
2326

2427
Example:
2528

@@ -43,6 +46,12 @@ Example:
4346
>>>
4447
>>> install = Install(config)
4548
>>> result = asyncio.run(install.run("my-release", "/path/to/chart"))
49+
>>>
50+
>>> # Using a local HTTP registry (no TLS)
51+
>>> config = Configuration(
52+
... namespace="default",
53+
... plain_http=True # For registries without TLS (e.g., local registries)
54+
... )
4655
```
4756

4857
### Methods

0 commit comments

Comments
 (0)