Update OCI registry documentation to clarify URL path support
Co-authored-by: yxxhero <11087727+yxxhero@users.noreply.github.com>
This commit is contained in:
parent
a90252631b
commit
6cf2e0b522
|
|
@ -1819,7 +1819,16 @@ repositories:
|
|||
oci: true
|
||||
```
|
||||
|
||||
It is important not to include a scheme for the URL as helm requires that these are not present for OCI registries
|
||||
It is important not to include a scheme for the URL as helm requires that these are not present for OCI registries.
|
||||
|
||||
The URL can optionally include an organization or repository path. Helmfile will automatically extract the registry hostname for authentication:
|
||||
|
||||
```yaml
|
||||
repositories:
|
||||
- name: myOCIRegistry
|
||||
url: quay.io/my-organization
|
||||
oci: true
|
||||
```
|
||||
|
||||
Secondly the credentials for the OCI registry can either be specified within `helmfile.yaml` similar to
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue