Refactor GitLab CI stages and fix example IP address in CfDnsClient documentation

This commit is contained in:
2025-06-09 13:13:25 +02:00
parent 7eed3154ec
commit df1893fdb9
2 changed files with 19 additions and 23 deletions
@@ -33,7 +33,7 @@ import lombok.extern.slf4j.Slf4j;
* System.out.println("Record Type: " + record.getType() + ", Value: " + record.getContent())
* );
* // Create a record for the subdomain "api"
* RecordEntity created = client.recordCreateSld(zone, "api", 60, RecordType.A, "192.168.1.5");
* RecordEntity created = client.recordCreateSld(zone, "api", 60, RecordType.A, "192.168.1.7");
* System.out.println("Created Record ID: " + created.getId());
* </code></pre>
*/