Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions docusaurus/docs/api/actions.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,9 @@ Args:
- File path: Path to a kubeconfig file (e.g., "/path/to/config.yaml")
- YAML string: Kubeconfig content as a YAML string (auto-detected)
kubecontext: Kubernetes context to use (default: current context)
plain_http: Use HTTP instead of HTTPS for OCI registries (default: False).
Enable this when using local registries without TLS (e.g., MicroK8s registry).
insecure_skip_tls_verify: Skip TLS certificate verification (default: False)

Example:

Expand All @@ -43,6 +46,12 @@ Example:
>>>
>>> install = Install(config)
>>> result = asyncio.run(install.run("my-release", "/path/to/chart"))
>>>
>>> # Using a local HTTP registry (no TLS)
>>> config = Configuration(
... namespace="default",
... plain_http=True # For registries without TLS (e.g., local registries)
... )
```

### Methods
Expand Down