mirror of
https://github.com/fosrl/olm.git
synced 2026-05-06 02:37:55 -05:00
[PR #63] [MERGED] Wildcard resources #178
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
📋 Pull Request Information
Original PR: https://github.com/fosrl/olm/pull/63
Author: @oschwartz10612
Created: 12/17/2025
Status: ✅ Merged
Merged: 12/17/2025
Merged by: @oschwartz10612
Base:
main← Head:wildcard-resources📝 Commits (2)
56f4614Pull 21820 from configcec79bfSupport wildcard alias records📊 Changes
9 files changed (+696 additions, -27 deletions)
View changed files
📝
dns/dns_records.go(+181 -22)➕
dns/dns_records_test.go(+350 -0)📝
go.mod(+46 -1)📝
go.sum(+96 -0)📝
olm/olm.go(+14 -1)📝
peers/manager.go(+6 -2)📝
peers/monitor/monitor.go(+1 -1)📝
peers/types.go(+1 -0)📝
websocket/client.go(+1 -0)📄 Description
Community Contribution License Agreement
By creating this pull request, I grant the project maintainers an unlimited,
perpetual license to use, modify, and redistribute these contributions under any terms they
choose, including both the AGPLv3 and the Fossorial Commercial license terms. I
represent that I have the right to grant this license for all contributed content.
Description
Support wildcard aliases!
An FQDN using one or more wildcards, eg. *.host-0?.autoco.internal, where * represents 0 or more characters and ? represents exactly 1 character.
Wildcards like *.autoco.internal match anything to the left of .autoco.internal, including host.autoco.internal, longerhost.autoco.internal and sub.host.autoco.internal, but will not match autoco.internal itself.
🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.