diff --git a/docs/partials/custom-resource-application/_proxyRegistryDomain.mdx b/docs/partials/custom-resource-application/_proxyRegistryDomain.mdx
index 5af40321d6..4f9b89291f 100644
--- a/docs/partials/custom-resource-application/_proxyRegistryDomain.mdx
+++ b/docs/partials/custom-resource-application/_proxyRegistryDomain.mdx
@@ -1,3 +1,3 @@
```yaml
-proxyRegistryDomain: "proxy.mycompany.com"
+proxyRegistryDomain: "proxy.yourcompany.com"
```
\ No newline at end of file
diff --git a/docs/partials/custom-resource-application/_replicatedRegistryDomain.mdx b/docs/partials/custom-resource-application/_replicatedRegistryDomain.mdx
index ba989552e4..95e97966f1 100644
--- a/docs/partials/custom-resource-application/_replicatedRegistryDomain.mdx
+++ b/docs/partials/custom-resource-application/_replicatedRegistryDomain.mdx
@@ -1,3 +1,3 @@
```yaml
-replicatedRegistryDomain: "registry.mycompany.com"
+replicatedRegistryDomain: "registry.yourcompany.com"
```
diff --git a/docs/vendor/helm-native-v2-using.md b/docs/vendor/helm-native-v2-using.md
index 4fb8ddbdaf..06d0d40704 100644
--- a/docs/vendor/helm-native-v2-using.md
+++ b/docs/vendor/helm-native-v2-using.md
@@ -32,7 +32,7 @@ You will use the following KOTS template functions to conditionally rewrite imag
What is the registry namespace?
- 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`.
### Task 1a: Rewrite Private Image Names
@@ -44,7 +44,7 @@ To rewrite image names to the location of the image in the proxy registry, use t
* `` is the unique application slug in the Vendor Portal
* `` 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.
@@ -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'