Skip to content

Commit 05c3f01

Browse files
authored
Merge pull request #17 from amoniacou/release/v1.2.7
Release/v1.2.7
2 parents 2effcca + f70dfb7 commit 05c3f01

File tree

4 files changed

+620
-1
lines changed

4 files changed

+620
-1
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
99

10+
## 1.2.7
11+
12+
- fix saving status of domain on mailgun
13+
- replacing DNS records to understand what mailgun is seeing
14+
1015
## 1.2.6
1116

1217
- more optimizations for status update and reconciling only when we need it

internal/controller/domain/domain_controller.go

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,9 @@ func (r *DomainReconciler) Reconcile(ctx context.Context, req ctrl.Request) (ctr
6666

6767
// lookup for item
6868
if err := r.Get(ctx, req.NamespacedName, mailgunDomain); err != nil {
69-
log.Error(err, "unable to fetch Domain")
69+
if client.IgnoreNotFound(err) != nil {
70+
log.Error(err, "unable to fetch Domain")
71+
}
7072
return ctrl.Result{}, client.IgnoreNotFound(err)
7173
}
7274

releases/1.2.7/kustomization.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
apiVersion: kustomize.config.k8s.io/v1beta1
2+
kind: Kustomization
3+
4+
resources:
5+
- manager.yaml

0 commit comments

Comments
 (0)