You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* init Akka.Discovery.Dns
only A/AAAA records are supported at this moment
* init dns cluster example
* SRV example cluster is starting
* cleanup commented code and typos
* Custom override for DnsExt is no longer required
see akkadotnet/akka.net#7727
* fix IPv6 formating
* fix logging of parsed IP records
* separate A and AAAA examples
* use dns.oci root domain instead of default dns.podman for runtime independent expirience
* use docker-compose to run examples as it is more common
* fix reference HOCON
* cleanup hosting extensions
* make internals availiable to tests
* tests for DNS lookup and config parsing
* Handle multiple nameservers
* Cache for async-dns resolver
* Refactor AsyncDnsClient:
- Rename DnsClient to AsyncDnsClient.cs
- Drop answer wrapper messages and use DnsProtocol.Message directly
- Fix handling of legacy IO.Dns.Resolve requests
- Add tests for various combinations of positive-ttl parameter which affect caching strategy
* Add IDnsProviderWithSrvLookup and refactor tests
* test TCP fallback client
* Add missing options to hosting extension
* remove leaked local dev settings
* Upgrade to Akka.NET v1.5.46
* skip check of AAAA records on Windows with default resolver
* update docs
* fix compiler warnings and slight cache refactor
* Add additional records to lookup result
* add doc comments
* reduce line noise
* Fix/add documentation
* make constructors for immutable messages private
* Make TcpDropped message immutable and handle it
* Remove unreferenced DropRequest message and handlers
* Reply with error on TCP failure
* Refactor query ID generation
* applied copilot suggestions
* add better comment
* Fix DNS resolution in cluster bootstrap examples
The dig commands in entrypoint.sh were not specifying the DNS server address,
causing them to use the default Docker resolver (127.0.0.11) instead of the
configured CoreDNS server. This prevented the demo containers from properly
resolving service discovery records.
Added @$DNS_SERVER parameter to all dig commands to ensure they query the
correct DNS server specified by the DNS_NAMESERVER environment variable.
---------
Co-authored-by: Aaron Stannard <aaron@petabridge.com>
Co-authored-by: Gregorius Soedharmo <arkatufus@yahoo.com>
Copy file name to clipboardExpand all lines: README.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -14,6 +14,7 @@ These tools aims to help with cluster management in various dynamic environments
14
14
*[`Akka.Discovery.AwsApi`](/src/discovery/aws/Akka.Discovery.AwsApi) - Akka.Cluster bootstrapping discovery service using EC2, ECS, and the AWS API. You can read more in the documentation [here](https://github.com/akkadotnet/Akka.Management/blob/dev/src/discovery/aws/Akka.Discovery.AwsApi/README.md).
15
15
*[`Akka.Discovery.KubernetesApi`](/src/discovery/kubernetes/Akka.Discovery.KubernetesApi) - Akka.Cluster bootstrapping discovery service using Kubernetes API. You can read more in the documentation [here](https://github.com/akkadotnet/Akka.Management/blob/dev/src/discovery/kubernetes/Akka.Discovery.KubernetesApi/README.md).
16
16
*[`Akka.Discovery.Azure`](src/discovery/azure/Akka.Discovery.Azure) - Akka.Cluster bootstrapping discovery service using Azure Table Storage. You can read more in the documentation [here](https://github.com/akkadotnet/Akka.Management/blob/dev/src/discovery/azure/Akka.Discovery.Azure/README.md).
17
+
*[`Akka.Discovery.Dns`](src/discovery/dns/Akka.Discovery.Dns) - Akka.Cluster bootstrapping discovery service using DNS. You can read more in the documentation [here](https://github.com/akkadotnet/Akka.Management/blob/dev/src/discovery/dns/Akka.Discovery.Dns/README.md).
17
18
*[`Akka.Coordination.KubernetesApi`](https://github.com/akkadotnet/Akka.Management/tree/dev/src/coordination/kubernetes/Akka.Coordination.KubernetesApi) - provides a lease-based distributed lock mechanism backed by [Kubernetes CRD](https://kubernetes.io/docs/tasks/extend-kubernetes/custom-resources/custom-resource-definitions/) for [Akka.NET Split Brain Resolver](https://getakka.net/articles/clustering/split-brain-resolver.html), [Akka.Cluster.Sharding](https://getakka.net/articles/clustering/cluster-sharding.html), and [Akka.Cluster.Singleton](https://getakka.net/articles/clustering/cluster-singleton.html). Documentation can be read [here](https://github.com/akkadotnet/Akka.Management/blob/dev/src/coordination/kubernetes/Akka.Coordination.KubernetesApi/README.md)
18
19
*[`Akka.Coordination.Azure`](https://github.com/akkadotnet/Akka.Management/tree/dev/src/coordination/azure/Akka.Coordination.Azure) - provides a lease-based distributed lock mechanism backed by [Microsoft Azure Blob Storage](https://learn.microsoft.com/en-us/azure/storage/blobs/storage-blobs-overview) for [Akka.NET Split Brain Resolver](https://getakka.net/articles/clustering/split-brain-resolver.html), [Akka.Cluster.Sharding](https://getakka.net/articles/clustering/cluster-sharding.html), and [Akka.Cluster.Singleton](https://getakka.net/articles/clustering/cluster-singleton.html). Documentation can be read [here](https://github.com/akkadotnet/Akka.Management/blob/dev/src/coordination/azure/Akka.Coordination.Azure/README.md)
0 commit comments