Consul

helm repo add hashicorp https://helm.releases.hashicorp.com
helm repo update

helm install consul hashicorp/consul --create-namespace -n consul --values config.yml

helm upgrade \
    consul \
    hashicorp/consul \
    -i \
    -n consul \
    -f values.yml

helm install \
    consul \
    hashicorp/consul \
    -n consul \
    -f values.yml

Service traffic accross datacenters (clusters)

https://www.consul.io/docs/connect/gateways/mesh-gateway/service-to-service-traffic-datacenters

References

Last updated