Skip to content
Merged
Show file tree
Hide file tree
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
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
```yaml
proxyRegistryDomain: "proxy.mycompany.com"
proxyRegistryDomain: "proxy.yourcompany.com"
```
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
```yaml
replicatedRegistryDomain: "registry.mycompany.com"
replicatedRegistryDomain: "registry.yourcompany.com"
```
6 changes: 3 additions & 3 deletions docs/vendor/helm-native-v2-using.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ You will use the following KOTS template functions to conditionally rewrite imag
<details>
<summary>What is the registry namespace?</summary>

The registry namespace is the path between the registry and the image name. For example, `images.mycompany.com/namespace/image:tag`.
The registry namespace is the path between the registry and the image name. For example, `images.yourcompany.com/namespace/image:tag`.
</details>

### Task 1a: Rewrite Private Image Names
Expand All @@ -44,7 +44,7 @@ To rewrite image names to the location of the image in the proxy registry, use t
* `<app-slug>` is the unique application slug in the Vendor Portal
* `<image>` is the path to the image in your registry

For example, if the private image is `quay.io/my-org/nginx:v1.0.1` and `images.mycompany.com` is the custom proxy registry domain, then the image name should be rewritten to `images.mycompany.com/proxy/my-app-slug/quay.io/my-org/nginx:v1.0.1`.
For example, if the private image is `quay.io/my-org/nginx:v1.0.1` and `images.yourcompany.com` is the custom proxy registry domain, then the image name should be rewritten to `images.yourcompany.com/proxy/my-app-slug/quay.io/my-org/nginx:v1.0.1`.

For more information, see the example below.

Expand All @@ -65,7 +65,7 @@ spec:
image:
# If a registry is configured by the user or by Embedded Cluster/kURL, use that registry's hostname
# Else use proxy.replicated.com or your custom proxy registry domain
registry: '{{repl HasLocalRegistry | ternary LocalRegistryHost "images.mycompany.com" }}'
registry: '{{repl HasLocalRegistry | ternary LocalRegistryHost "images.yourcompany.com" }}'
# If a registry is configured by the user or by Embedded Cluster/kURL, use that registry namespace
# Else use the image's namespace at the proxy registry domain
repository: '{{repl HasLocalRegistry | ternary LocalRegistryNamespace "proxy/my-app/quay.io/my-org" }}/nginx'
Expand Down