forked from ns1/cert-manager-webhook-ns1
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.go
243 lines (209 loc) · 6.75 KB
/
main.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
package main
import (
"crypto/tls"
"encoding/json"
"fmt"
"net/http"
"os"
"strings"
cmmeta "github.com/jetstack/cert-manager/pkg/apis/meta/v1"
extapi "k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1"
"k8s.io/client-go/kubernetes"
"k8s.io/client-go/rest"
"github.com/jetstack/cert-manager/pkg/acme/webhook/apis/acme/v1alpha1"
"github.com/jetstack/cert-manager/pkg/acme/webhook/cmd"
"github.com/jetstack/cert-manager/pkg/issuer/acme/dns/util"
ns1API "gopkg.in/ns1/ns1-go.v2/rest"
ns1DNS "gopkg.in/ns1/ns1-go.v2/rest/model/dns"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
)
var groupName = os.Getenv("GROUP_NAME")
func main() {
if groupName == "" {
panic("GROUP_NAME must be specified")
}
// This will register our NS1 DNS provider with the webhook serving
// library, making it available as an API under the provided groupName.
cmd.RunWebhookServer(groupName,
&ns1DNSProviderSolver{},
)
}
// ns1DNSProviderSolver implements the logic needed to 'present' an ACME
// challenge TXT record. To do so, it implements the
// `github.com/jetstack/cert-manager/pkg/acme/webhook.Solver` interface.
type ns1DNSProviderSolver struct {
k8sClient *kubernetes.Clientset
ns1Client *ns1API.Client
}
// ns1DNSProviderConfig is a structure that is used to decode into when
// solving a DNS01 challenge.
// This information is provided by cert-manager, and may be a reference to
// additional configuration that's needed to solve the challenge for this
// particular certificate or issuer.
// This typically includes references to Secret resources containing DNS
// provider credentials, in cases where a 'multi-tenant' DNS solver is being
// created.
type ns1DNSProviderConfig struct {
// These fields will be set by users in the
// `issuer.spec.acme.dns01.providers.webhook.config` field.
APIKeySecretRef cmmeta.SecretKeySelector `json:"apiKeySecretRef"`
Endpoint string `json:"endpoint"`
IgnoreSSL bool `json:"ignoreSSL"`
}
// Name is used as the name for this DNS solver when referencing it on the ACME
// Issuer resource.
func (c *ns1DNSProviderSolver) Name() string {
return "ns1"
}
// Present is responsible for actually presenting the DNS record with the
// DNS provider.
// This method should tolerate being called multiple times with the same value.
// cert-manager itself will later perform a self check to ensure that the
// solver has correctly configured the DNS provider.
func (c *ns1DNSProviderSolver) Present(ch *v1alpha1.ChallengeRequest) error {
cfg, err := loadConfig(ch.Config)
if err != nil {
return err
}
zone, domain, err := c.parseChallenge(ch)
if err != nil {
return err
}
if c.ns1Client == nil {
if err := c.setNS1Client(ch, cfg); err != nil {
return err
}
}
// Create a TXT Record for domain.zone with answer set to DNS challenge key
// Short TTL is fine, as we delete the record after the challenge is solved.
record := ns1DNS.NewRecord(zone, domain, "TXT")
record.TTL = 600
record.AddAnswer(ns1DNS.NewTXTAnswer(ch.Key))
_, err = c.ns1Client.Records.Create(record)
if err != nil {
if err != ns1API.ErrRecordExists {
return err
}
}
return nil
}
// CleanUp should delete the relevant TXT record from the DNS provider console.
// If multiple TXT records exist with the same record name (e.g.
// _acme-challenge.example.com) then **only** the record with the same `key`
// value provided on the ChallengeRequest should be cleaned up.
// This is in order to facilitate multiple DNS validations for the same domain
// concurrently.
func (c *ns1DNSProviderSolver) CleanUp(ch *v1alpha1.ChallengeRequest) error {
cfg, err := loadConfig(ch.Config)
if err != nil {
return err
}
zone, domain, err := c.parseChallenge(ch)
if err != nil {
return err
}
if c.ns1Client == nil {
if err := c.setNS1Client(ch, cfg); err != nil {
return err
}
}
// Delete the TXT Record we created in Present
if _, err = c.ns1Client.Records.Delete(
zone, fmt.Sprintf("%s.%s", domain, zone), "TXT",
); err != nil {
return err
}
return nil
}
// Initialize will be called when the webhook first starts.
// This method can be used to instantiate the webhook, i.e. initialising
// connections or warming up caches.
// Typically, the kubeClientConfig parameter is used to build a Kubernetes
// client that can be used to fetch resources from the Kubernetes API, e.g.
// Secret resources containing credentials used to authenticate with DNS
// provider accounts.
// The stopCh can be used to handle early termination of the webhook, in cases
// where a SIGTERM or similar signal is sent to the webhook process.
func (c *ns1DNSProviderSolver) Initialize(kubeClientConfig *rest.Config, stopCh <-chan struct{}) error {
cl, err := kubernetes.NewForConfig(kubeClientConfig)
if err != nil {
return err
}
c.k8sClient = cl
return nil
}
// loadConfig is a small helper function that decodes JSON configuration into
// the typed config struct.
func loadConfig(cfgJSON *extapi.JSON) (ns1DNSProviderConfig, error) {
cfg := ns1DNSProviderConfig{}
// handle the 'base case' where no configuration has been provided
if cfgJSON == nil {
return cfg, nil
}
if err := json.Unmarshal(cfgJSON.Raw, &cfg); err != nil {
return cfg, fmt.Errorf("error decoding solver config: %v", err)
}
return cfg, nil
}
func (c *ns1DNSProviderSolver) setNS1Client(ch *v1alpha1.ChallengeRequest, cfg ns1DNSProviderConfig) error {
ref := cfg.APIKeySecretRef
if ref.Name == "" {
return fmt.Errorf(
"secret for NS1 apiKey not found in '%s'",
ch.ResourceNamespace,
)
}
if ref.Key == "" {
return fmt.Errorf(
"no 'key' set in secret '%s/%s'",
ch.ResourceNamespace,
ref.Name,
)
}
secret, err := c.k8sClient.CoreV1().Secrets(ch.ResourceNamespace).Get(
ref.Name, metav1.GetOptions{},
)
if err != nil {
return err
}
apiKeyBytes, ok := secret.Data[ref.Key]
if !ok {
return fmt.Errorf(
"no key '%s' in secret '%s/%s'",
ref.Key,
ch.ResourceNamespace,
ref.Name,
)
}
apiKey := string(apiKeyBytes)
httpClient := &http.Client{}
if cfg.IgnoreSSL == true {
tr := &http.Transport{
TLSClientConfig: &tls.Config{InsecureSkipVerify: true},
}
httpClient.Transport = tr
}
c.ns1Client = ns1API.NewClient(
httpClient,
ns1API.SetAPIKey(apiKey),
ns1API.SetEndpoint(cfg.Endpoint),
)
return nil
}
// Get the zone and domain we are setting from the challenge request
func (c *ns1DNSProviderSolver) parseChallenge(ch *v1alpha1.ChallengeRequest) (
zone string, domain string, err error,
) {
if zone, err = util.FindZoneByFqdn(
ch.ResolvedFQDN, util.RecursiveNameservers,
); err != nil {
return "", "", err
}
zone = util.UnFqdn(zone)
if idx := strings.Index(ch.ResolvedFQDN, "." + ch.ResolvedZone); idx != -1 {
domain = ch.ResolvedFQDN[:idx]
} else {
domain = util.UnFqdn(ch.ResolvedFQDN)
}
return zone, domain, nil
}