Skip to content

Commit

Permalink
change redis.com to example.com
Browse files Browse the repository at this point in the history
  • Loading branch information
kaitlynmichael committed Jul 13, 2023
1 parent 155a475 commit 3542d0d
Show file tree
Hide file tree
Showing 7 changed files with 21 additions and 21 deletions.
16 changes: 8 additions & 8 deletions content/kubernetes/active-active/create-reaadb.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,8 @@ For a list of example values used throughout this article, see the [Example valu
spec:
recName: rec-chicago
recNamespace: ns-illinois
apiFqdnUrl: api-rec-chicago-ns-illinois.redis.com
dbFqdnSuffix: -db-rec-chicago-ns-illinois.redis.com
apiFqdnUrl: api-rec-chicago-ns-illinois.example.com
dbFqdnSuffix: -db-rec-chicago-ns-illinois.example.com
secretName: redis-enterprise-rerc-ohare
```
Expand All @@ -68,8 +68,8 @@ For a list of example values used throughout this article, see the [Example valu
spec:
recName: rec-arlington
recNamespace: ns-virginia
apiFqdnUrl: test-example-api-rec-arlington-ns-virginia.redis.com
dbFqdnSuffix: -example-cluster-rec-arlington-ns-virginia.redis.com
apiFqdnUrl: test-example-api-rec-arlington-ns-virginia.example.com
dbFqdnSuffix: -example-cluster-rec-arlington-ns-virginia.example.com
secretName: redis-enterprise-rerc-reagan
```

Expand Down Expand Up @@ -160,15 +160,15 @@ This article uses the following example values:
* REC namespace: `ns-illinois`
* RERC name: `rerc-ohare`
* RERC secret name: `redis-enterprise-rerc-ohare`
* API FQDN: `api-rec-chicago-ns-illinois.redis.com`
* DB FQDN suffix: `-db-rec-chicago-ns-illinois.redis.com`
* API FQDN: `api-rec-chicago-ns-illinois.example.com`
* DB FQDN suffix: `-db-rec-chicago-ns-illinois.example.com`

#### Example cluster 2

* REC name: `rec-arlington`
* REC namespace: `ns-virginia`
* RERC name: `rerc-raegan`
* RERC secret name: `redis-enterprise-rerc-reagan`
* API FQDN: `api-rec-arlington-ns-virginia.redis.com`
* DB FQDN suffix: `-db-rec-arlington-ns-virginia.redis.com`
* API FQDN: `api-rec-arlington-ns-virginia.example.com`
* DB FQDN suffix: `-db-rec-arlington-ns-virginia.example.com`

4 changes: 2 additions & 2 deletions content/kubernetes/active-active/edit-clusters.md
Original file line number Diff line number Diff line change
Expand Up @@ -85,8 +85,8 @@ To communicate with other clusters, all participating clusters need access to th
spec:
recName: rec-boston
recNamespace: ns-massachusetts
apiFqdnUrl: test-example-api-rec-boston-ns-massachusetts.redis.com
dbFqdnSuffix: -example-cluster-rec-boston-ns-massachusetts.redis.com
apiFqdnUrl: test-example-api-rec-boston-ns-massachusetts.example.com
dbFqdnSuffix: -example-cluster-rec-boston-ns-massachusetts.example.com
secretName: redis-enterprise-rerc-logan
```

Expand Down
2 changes: 1 addition & 1 deletion content/kubernetes/active-active/edit-rerc.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ The following example edits the `dbFqdnSuffix` field for the RERC named `rerc-oh

```sh
kubectl patch rerc rerc-ohare --type merge --patch \
'{"spec":{"dbFqdnSuffix": "-example2-cluster-rec-chicago-ns-illinois.redis.com"}}'
'{"spec":{"dbFqdnSuffix": "-example2-cluster-rec-chicago-ns-illinois.example.com"}}'
```

## Update RERC secret
Expand Down
8 changes: 4 additions & 4 deletions content/kubernetes/active-active/prepare-clusters.md
Original file line number Diff line number Diff line change
Expand Up @@ -138,14 +138,14 @@ This article uses the following example values:
* REC namespace: `ns-illinois`
* RERC name: `rerc-ohare`
* RERC secret name: `redis-enterprise-rerc-ohare`
* API FQDN: `api-rec-chicago-ns-illinois.redis.com`
* DB FQDN suffix: `-db-rec-chicago-ns-illinois.redis.com`
* API FQDN: `api-rec-chicago-ns-illinois.example.com`
* DB FQDN suffix: `-db-rec-chicago-ns-illinois.example.com`

#### Example cluster 2

* REC name: `rec-arlington`
* REC namespace: `ns-virginia`
* RERC name: `rerc-raegan`
* RERC secret name: `redis-enterprise-rerc-reagan`
* API FQDN: `api-rec-arlington-ns-virginia.redis.com`
* DB FQDN suffix: `-db-rec-arlington-ns-virginia.redis.com`
* API FQDN: `api-rec-arlington-ns-virginia.example.com`
* DB FQDN suffix: `-db-rec-arlington-ns-virginia.example.com`
8 changes: 4 additions & 4 deletions content/kubernetes/networking/ingressorroutespec.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,8 +66,8 @@ Edit the RedisEnterpriseCluster (REC) spec to add the `ingressOrRouteSpec` field
```sh
kubectl patch rec <rec-name> --type merge --patch "{\"spec\": \
{\"ingressOrRouteSpec\": \
{\"apiFqdnUrl\": \"api-<rec-name>-<rec-namespace>.redis.com\", \
\"dbFqdnSuffix\": \"-db-<rec-name>-<rec-namespace>.redis.com\", \
{\"apiFqdnUrl\": \"api-<rec-name>-<rec-namespace>.example.com\", \
\"dbFqdnSuffix\": \"-db-<rec-name>-<rec-namespace>.example.com\", \
\"ingressAnnotations\": \
{\"kubernetes.io/ingress.class\": \
\"<ingress-controller>\", \
Expand All @@ -83,8 +83,8 @@ kubectl patch rec <rec-name> --type merge --patch "{\"spec\": \
```sh
kubectl patch rec <rec-name> --type merge --patch "{\"spec\": \
{\"ingressOrRouteSpec\": \
{\"apiFqdnUrl\": \"api-<rec-name>-<rec-namespace>.redis.com\" \
\"dbFqdnSuffix\": \"-db-<rec-name>-<rec-namespace>.redis.com\", \
{\"apiFqdnUrl\": \"api-<rec-name>-<rec-namespace>.example.com\" \
\"dbFqdnSuffix\": \"-db-<rec-name>-<rec-namespace>.example.com\", \
\"method\": \"openShiftRoute\"}}}"
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,6 @@ For more info about configuring the `ServiceMonitor` resource, see the [`Service
- [Running exporters](https://github.com/prometheus-operator/prometheus-operator/blob/main/Documentation/user-guides/running-exporters.md)
- [Related resources](https://github.com/prometheus-operator/prometheus-operator/blob/main/Documentation/user-guides/getting-started.md#related-resources)
- [Troubleshooting ServiceMonitor changes](https://github.com/prometheus-operator/prometheus-operator/blob/main/Documentation/custom-metrics-elements.png)
- docs.redis.com
- docs.example.com
- [Metrics in Prometheus]({{<relref "/rs/clusters/monitoring/prometheus-metrics-definitions.md">}})
- [Monitoring and metrics]({{<relref "/rs/clusters/monitoring/_index.md">}})
2 changes: 1 addition & 1 deletion content/kubernetes/security/manage-rec-credentials.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ The credentials can be used to access the Redis Enterprise admin console or the
echo MVUyTjd1Mm0= | base64 --decodexc
```

This outputs the password and username in plain text. In this example, the plain text password is `12345678` and the username is `demo@redis.com`.
This outputs the password and username in plain text. In this example, the plain text password is `12345678` and the username is `demo@example.com`.

## Change the Redis Enterprise cluster (REC) credentials

Expand Down

0 comments on commit 3542d0d

Please sign in to comment.