Skip to content

Commit

Permalink
SYSENG-1828: Migrate to go.anx.io
Browse files Browse the repository at this point in the history
  • Loading branch information
nachtjasmin committed Nov 26, 2024
1 parent d57ab45 commit 4c6722a
Show file tree
Hide file tree
Showing 8 changed files with 19 additions and 19 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@
build/
dist/
reports/

bin/
covprofile
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# ExternalDNS - Anexia Webhook Provider

[![License](https://img.shields.io/github/license/probstenhias/external-dns-anexia-webhook?style=for-the-badge)](LICENSE.md)
[![Build](https://img.shields.io/github/actions/workflow/status/probstenhias/external-dns-anexia-webhook/pull_request.yml?style=for-the-badge)](https://github.com/probstenhias/external-dns-anexia-webhook/actions/workflows/pull_request.yml)
[![GoReport](https://goreportcard.com/badge/github.com/probstenhias/external-dns-anexia-webhook?style=for-the-badge)](https://goreportcard.com/report/github.com/probstenhias/external-dns-anexia-webhook)
[![License](https://img.shields.io/github/license/anexia/external-dns-webhook?style=for-the-badge)](LICENSE.md)
[![Build](https://img.shields.io/github/actions/workflow/status/anexia/external-dns-webhook/pull_request.yml?style=for-the-badge)](https://github.com/anexia/external-dns-webhook/actions/workflows/pull_request.yml)
[![GoReport](https://goreportcard.com/badge/github.com/anexia/external-dns-webhook?style=for-the-badge)](https://goreportcard.com/report/github.com/anexia/external-dns-webhook)
[![Coverage](https://img.shields.io/coverallsCoverage/github/ProbstenHias/external-dns-anexia-webhook?style=for-the-badge)](https://coveralls.io/github/ProbstenHias/external-dns-anexia-webhook?branch=main)

The Anexia Webhook Provider for [ExternalDNS](https://github.com/kubernetes-sigs/external-dns) allows you to use Anexia's DNS API to manage DNS records for your domains.
Expand All @@ -15,7 +15,7 @@ See [cmd/webhook/init/configuration/configuration.go](cmd/webhook/init/configura

## Kubernetes Deployment

The Anexia Webhook Provider is provided as an OCI image in [ghcr.io/probstenhias/external-dns-anexia-webhook](https://ghcr.io/probstenhias/external-dns-anexia-webhook).
The Anexia Webhook Provider is provided as an OCI image in [ghcr.io/anexia/external-dns-webhook](https://ghcr.io/anexia/external-dns-webhook).

The following is an example deployment for the Anexia Webhook Provider:

Expand Down Expand Up @@ -48,7 +48,7 @@ extraArgs:
provider:
name: webhook
webhook:
image: ghcr.io/probstenhias/external-dns-anexia-webhook
image: ghcr.io/anexia/external-dns-webhook
tag: v0.1.6
env:
- name: LOG_LEVEL
Expand Down
4 changes: 2 additions & 2 deletions cmd/webhook/init/dnsprovider/dnsprovider.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ import (
"regexp"
"strings"

"github.com/probstenhias/external-dns-anexia-webhook/cmd/webhook/init/configuration"
"github.com/probstenhias/external-dns-anexia-webhook/internal/anexia"
"go.anx.io/external-dns-webhook/cmd/webhook/init/configuration"
"go.anx.io/external-dns-webhook/internal/anexia"
"sigs.k8s.io/external-dns/endpoint"
"sigs.k8s.io/external-dns/provider"

Expand Down
2 changes: 1 addition & 1 deletion cmd/webhook/init/dnsprovider/dnsprovider_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ package dnsprovider
import (
"testing"

"github.com/probstenhias/external-dns-anexia-webhook/cmd/webhook/init/configuration"
log "github.com/sirupsen/logrus"
"github.com/stretchr/testify/assert"
"go.anx.io/external-dns-webhook/cmd/webhook/init/configuration"
)

func TestInit(t *testing.T) {
Expand Down
4 changes: 2 additions & 2 deletions cmd/webhook/init/server/server.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ import (

log "github.com/sirupsen/logrus"

"github.com/probstenhias/external-dns-anexia-webhook/cmd/webhook/init/configuration"
"go.anx.io/external-dns-webhook/cmd/webhook/init/configuration"

"github.com/probstenhias/external-dns-anexia-webhook/pkg/webhook"
"go.anx.io/external-dns-webhook/pkg/webhook"
)

// Init server initialization function
Expand Down
4 changes: 2 additions & 2 deletions cmd/webhook/init/server/server_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ import (
"testing"
"time"

"github.com/probstenhias/external-dns-anexia-webhook/cmd/webhook/init/configuration"
"github.com/probstenhias/external-dns-anexia-webhook/pkg/webhook"
log "github.com/sirupsen/logrus"
"go.anx.io/external-dns-webhook/cmd/webhook/init/configuration"
"go.anx.io/external-dns-webhook/pkg/webhook"
"sigs.k8s.io/external-dns/endpoint"
"sigs.k8s.io/external-dns/plan"
)
Expand Down
10 changes: 5 additions & 5 deletions cmd/webhook/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@ package main
import (
"fmt"

"github.com/probstenhias/external-dns-anexia-webhook/cmd/webhook/init/configuration"
"github.com/probstenhias/external-dns-anexia-webhook/cmd/webhook/init/dnsprovider"
"github.com/probstenhias/external-dns-anexia-webhook/cmd/webhook/init/logging"
"github.com/probstenhias/external-dns-anexia-webhook/cmd/webhook/init/server"
"github.com/probstenhias/external-dns-anexia-webhook/pkg/webhook"
log "github.com/sirupsen/logrus"
"go.anx.io/external-dns-webhook/cmd/webhook/init/configuration"
"go.anx.io/external-dns-webhook/cmd/webhook/init/dnsprovider"
"go.anx.io/external-dns-webhook/cmd/webhook/init/logging"
"go.anx.io/external-dns-webhook/cmd/webhook/init/server"
"go.anx.io/external-dns-webhook/pkg/webhook"
)

const banner = `
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/probstenhias/external-dns-anexia-webhook
module go.anx.io/external-dns-webhook

go 1.23

Expand Down

0 comments on commit 4c6722a

Please sign in to comment.