Skip to content

Commit

Permalink
fix(redis): explicit bind to redis and sentinel for IPv4 clusters #11388
Browse files Browse the repository at this point in the history


Signed-off-by: rumstead <rjumstead@gmail.com>
  • Loading branch information
rumstead committed Jan 4, 2023
2 parents 13889e7 + 35fdd38 commit a551e6c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions docs/operator-manual/high_availability.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ A set of HA manifests are provided for users who wish to run Argo CD in a highly

[Manifests ⧉](https://github.com/argoproj/argo-cd/tree/master/manifests)

!!! note
The HA installation will require at least three different nodes due to pod anti-affinity roles in the specs.
> **NOTE:** The HA installation will require at least three different nodes due to pod anti-affinity roles in the
> specs. Additionally, IPv6 only clusters are not supported.
## Scaling Up

Expand Down Expand Up @@ -188,4 +188,4 @@ spec:
targetRevision: HEAD
path: my-application
# ...
```
```
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,9 @@ export const ClusterDetails = (props: RouteComponentProps<{server: string}>) =>
<DataLoader ref={loaderRef} input={server} load={(url: string) => timer(0, 1000).pipe(mergeMap(() => from(services.clusters.get(url, ''))))}>
{(cluster: Cluster) => (
<Page
title={server}
title='Clusters'
toolbar={{
breadcrumbs: [{title: 'Settings', path: '/settings'}, {title: 'Cluster', path: '/settings/clusters'}, {title: server}],
breadcrumbs: [{title: 'Settings', path: '/settings'}, {title: 'Clusters', path: '/settings/clusters'}, {title: server}],
actionMenu: {
items: [
{
Expand Down

0 comments on commit a551e6c

Please sign in to comment.