Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
7100997
chore: fetch dns_record lib and add dns-record relation to charmcraft…
yanksyoon May 7, 2026
0921ba1
feat: add DNSRecordService for publishing A records via dns-record re…
yanksyoon May 7, 2026
0a3d43b
feat: wire up DNSRecordService in HAProxyCharm — publish A records on…
yanksyoon May 7, 2026
4111799
test: add integration tests for dns-record relation against bind-oper…
yanksyoon May 7, 2026
af2c1d1
style: fix ruff import ordering and remove unused imports
yanksyoon May 7, 2026
e25ea6e
test: query bind DNS server directly to verify A record resolution
yanksyoon May 7, 2026
af6e08b
fix: remove charm-libs entry and fix ruff format/lint violations
yanksyoon May 8, 2026
708c909
chore: add missing charm libs
yanksyoon May 8, 2026
7d4ad81
test: add dns record test to integration test suite
yanksyoon May 8, 2026
d8b93bb
test: skip haproxy lib test
yanksyoon May 8, 2026
f30e538
Merge branch 'main' into feat/ISD-3237/dns-record-requirer
yanksyoon May 14, 2026
b7b36ab
Merge branch 'main' into feat/ISD-3237/dns-record-requirer
yanksyoon May 19, 2026
d3ffd80
fix: address Copilot review comments
yanksyoon May 25, 2026
7393fcf
ci: fix CI failures
yanksyoon May 25, 2026
271553d
chore: remove .DS_Store files
yanksyoon May 25, 2026
aa29473
Merge branch 'main' into feat/ISD-3237/dns-record-requirer
yanksyoon May 26, 2026
c11e96f
docs: add changelog entry for dns-record integration
yanksyoon May 27, 2026
21c4401
fix(tests): use hashable CertificateRequestAttributes from charmlibs
yanksyoon May 27, 2026
31fda99
fix: update copyright year and remove flaky lycheeignore entry
yanksyoon May 27, 2026
2896dd8
fix: address review comments
yanksyoon May 27, 2026
94947ed
style: fix ruff formatting in integration test
yanksyoon May 27, 2026
805b0e1
fix: correct mypy error in integration test relations check
yanksyoon May 27, 2026
2b4e661
fix: update copyright year in integration test
yanksyoon May 27, 2026
3fa48e5
fix: update copyright year in unit test
yanksyoon May 27, 2026
2de8d02
refactor: move inline imports to top of file
yanksyoon May 27, 2026
db226f4
refactor: parametrize no-op DNS record unit tests
yanksyoon May 27, 2026
7204454
revert: remove require-check-lib workaround from test.yaml
yanksyoon May 27, 2026
f625a99
fix: use dns-record relation binding for IP resolution
yanksyoon May 27, 2026
36bf2e0
Merge branch 'main' into feat/ISD-3237/dns-record-requirer
yanksyoon May 28, 2026
26b7545
Merge remote-tracking branch 'origin/main' into feat/ISD-3237/dns-rec…
yanksyoon May 29, 2026
f041cc2
Merge branch 'main' into feat/ISD-3237/dns-record-requirer
yanksyoon Jun 1, 2026
623307c
refactor: route dns-record events through reconcile loop
yanksyoon Jun 4, 2026
bd7b0e1
Merge branch 'main' into feat/ISD-3237/dns-record-requirer
yanksyoon Jun 4, 2026
f6b0ec0
fix: update charm-libs entry to dns_integrator namespace
yanksyoon Jun 4, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .github/workflows/integration_test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,8 @@ jobs:
"test_ingress_per_unit.py",
"test_haproxy_route_tcp.py",
"test_haproxy_route_grpc.py",
"test_haproxy_route_https_backend.py"
"test_haproxy_route_https_backend.py",
"test_dns_record.py"
]
- name: haproxy-spoe-auth-operator
working-directory: ./haproxy-spoe-auth-operator
Expand Down
2 changes: 1 addition & 1 deletion .lycheeignore
Original file line number Diff line number Diff line change
@@ -1 +1 @@
https://github.com/canonical/haproxy-operator/deployments/charmhub-stable-promote
https://github.com/canonical/haproxy-operator/deployments/charmhub-stable-promote
4 changes: 4 additions & 0 deletions docs/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,10 @@ Each revision is versioned by the date of the revision.

- Added relation endpoints reference page.

## 2026-05-27

- Added optional `dns-record` relation to publish DNS A records for HAProxy hostnames.

## 2026-05-25

- docs: Updated the home page to implement the new pattern for the "In this documentation" section.
Expand Down
20 changes: 18 additions & 2 deletions haproxy-operator/charmcraft.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,9 @@ requires:
haproxy-route-policy:
interface: haproxy-route-policy
limit: 1

dns-record:
interface: dns_record
optional: true

provides:
ingress:
Expand Down Expand Up @@ -141,9 +143,23 @@ actions:
If no backend with this name is present, an empty list is returned.

charm-libs:
- lib: traefik_k8s.ingress_per_unit
- lib: certificate_transfer_interface.certificate_transfer
version: "1"
- lib: dns_integrator.dns_record
version: "0"
- lib: grafana_agent.cos_agent
version: "0"
- lib: haproxy.ddos_protection
version: "0"
- lib: haproxy_route_policy.haproxy_route_policy
version: "0"
- lib: operator_libs_linux.apt
version: "0"
- lib: operator_libs_linux.systemd
version: "1"
- lib: tls_certificates_interface.tls_certificates
version: "4"
- lib: traefik_k8s.ingress
version: "2"
- lib: traefik_k8s.ingress_per_unit
version: "1"
Comment thread
yanksyoon marked this conversation as resolved.
Loading
Loading