mirror of
https://github.com/status-im/consul.git
synced 2025-01-11 14:24:39 +00:00
added additonal example for failover within DC and unique namespace
This commit is contained in:
parent
b844d68c4b
commit
205d687d07
@ -116,9 +116,9 @@ spec:
|
|||||||
|
|
||||||
</CodeTabs>
|
</CodeTabs>
|
||||||
|
|
||||||
### Datacenter failover
|
### Failover
|
||||||
|
|
||||||
Enable failover for subset 'v2' to 'dc2', and all other subsets to dc3 or dc4:
|
Enable failover for subset `v2` to `dc2`, and all other subsets to `dc3` or `dc4`:
|
||||||
|
|
||||||
<CodeTabs tabs={[ "HCL", "Kubernetes YAML", "JSON" ]}>
|
<CodeTabs tabs={[ "HCL", "Kubernetes YAML", "JSON" ]}>
|
||||||
|
|
||||||
@ -194,10 +194,9 @@ metadata:
|
|||||||
name: product-api
|
name: product-api
|
||||||
namespace: primary
|
namespace: primary
|
||||||
spec:
|
spec:
|
||||||
connectTimeout: 0
|
connectTimeout: 0s
|
||||||
failover:
|
failover:
|
||||||
namespace: 'secondary'
|
namespace: 'secondary'
|
||||||
'*':
|
|
||||||
datacenters: ['dc2']
|
datacenters: ['dc2']
|
||||||
```
|
```
|
||||||
|
|
||||||
@ -205,11 +204,60 @@ spec:
|
|||||||
{
|
{
|
||||||
"Kind": "service-resolver",
|
"Kind": "service-resolver",
|
||||||
"Name": "product-api",
|
"Name": "product-api",
|
||||||
"Namespace": "primary"
|
"Namespace": "primary",
|
||||||
"ConnectTimeout": "0s",
|
"ConnectTimeout": "0s",
|
||||||
"Failover": {
|
"Failover": {
|
||||||
"*": {
|
"*": {
|
||||||
"Datacenters": ["dc2"]
|
"Datacenters": ["dc2"],
|
||||||
|
"Namespace": "secondary"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
</CodeTabs>
|
||||||
|
|
||||||
|
<EnterpriseAlert product="consul">
|
||||||
|
Failover within a datacenter and a different namespace.
|
||||||
|
</EnterpriseAlert>
|
||||||
|
|
||||||
|
<CodeTabs tabs={[ "HCL", "Kubernetes YAML", "JSON" ]}>
|
||||||
|
|
||||||
|
```hcl
|
||||||
|
Kind = "service-resolver"
|
||||||
|
Name = "product-api"
|
||||||
|
Namespace = "primary"
|
||||||
|
ConnectTimeout = "0s"
|
||||||
|
Failover = {
|
||||||
|
"*" = {
|
||||||
|
Service = "product-api-backup"
|
||||||
|
Namespace = "secondary"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
```yaml
|
||||||
|
apiVersion: consul.hashicorp.com/v1alpha1
|
||||||
|
kind: ServiceResolver
|
||||||
|
metadata:
|
||||||
|
name: product-api
|
||||||
|
namespace: primary
|
||||||
|
spec:
|
||||||
|
connectTimeout: 0s
|
||||||
|
failover:
|
||||||
|
service: 'product-api-backup'
|
||||||
|
namespace: 'secondary'
|
||||||
|
```
|
||||||
|
|
||||||
|
```json
|
||||||
|
{
|
||||||
|
"Kind": "service-resolver",
|
||||||
|
"Name": "product-api",
|
||||||
|
"Namespace": "primary",
|
||||||
|
"ConnectTimeout": "0s",
|
||||||
|
"Failover": {
|
||||||
|
"*": {
|
||||||
|
"Service": "product-api-backup",
|
||||||
"Namespace": "secondary"
|
"Namespace": "secondary"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user