-
Notifications
You must be signed in to change notification settings - Fork 14
/
main.go
192 lines (172 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
package main
import (
"context"
"encoding/json"
"fmt"
"os"
"github.com/cert-manager/cert-manager/pkg/acme/webhook/apis/acme/v1alpha1"
"github.com/cert-manager/cert-manager/pkg/acme/webhook/cmd"
"github.com/go-playground/validator/v10"
"github.com/selectel/cert-manager-webhook-selectel/selectel"
"github.com/selectel/cert-manager-webhook-selectel/utils"
coreV1 "k8s.io/api/core/v1"
extAPI "k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1"
metaV1 "k8s.io/apimachinery/pkg/apis/meta/v1"
"k8s.io/client-go/kubernetes"
"k8s.io/client-go/rest"
logf "sigs.k8s.io/controller-runtime/pkg/log"
"sigs.k8s.io/controller-runtime/pkg/log/zap"
)
const (
providerName = "selectel"
groupNameEnvVar = "GROUP_NAME"
)
var (
// use a single instance of Validate, it caches struct info.
validate *validator.Validate = validator.New(validator.WithRequiredStructEnabled())
errSecretNameNotSetup = fmt.Errorf("secret name not setup")
errConvertToValidator = fmt.Errorf("convert to validator")
)
func main() {
groupName := os.Getenv("GROUP_NAME")
if groupName == "" {
panic(fmt.Sprintf("%s must be specified", groupNameEnvVar))
}
// This will register our custom DNS provider with the webhook serving
// library, making it available as an API under the provided groupName.
// You can register multiple DNS provider implementations with a single
// webhook, where the Name() method will be used to disambiguate between
// the different implementations.
cmd.RunWebhookServer(groupName,
&selectelDNSProviderSolver{},
)
}
// selectelDNSProviderSolver implements the provider-specific logic needed to
// 'present' an ACME challenge TXT record for your own DNS provider.
// To do so, it must implement the
// `https://pkg.go.dev/github.com/cert-manager/[email protected]/pkg/acme/webhook#Solver` interface.
type selectelDNSProviderSolver struct {
client *kubernetes.Clientset
}
// selectelDNSProviderConfig is a structure that is used to decode into when
// solving a DNS01 challenge.
type selectelDNSProviderConfig struct {
DNSSecretRef coreV1.SecretReference `json:"dnsSecretRef" validate:"required"`
*selectel.Config
}
func (c *selectelDNSProviderSolver) provider(cfg *selectelDNSProviderConfig, namespace string) (*selectel.DNSProvider, error) {
// setup credentials from secret
sec, err := c.client.CoreV1().
Secrets(namespace).
Get(context.Background(), cfg.DNSSecretRef.Name, metaV1.GetOptions{})
if err != nil {
return nil, fmt.Errorf("getting secret from k8s: %w", err)
}
err = cfg.CredentialsForDNS.FromMapBytes(sec.Data)
if err != nil {
return nil, fmt.Errorf("setup credentials from secret. %w", err)
}
// validate credentials
err = validate.Struct(cfg.CredentialsForDNS)
if err != nil {
//nolint: errorlint
validationErrors, ok := err.(validator.ValidationErrors)
if !ok {
return nil, errConvertToValidator
}
if err = utils.BuildErrFromValidator(validationErrors); err != nil {
return nil, fmt.Errorf("validate credentials: %w", err)
}
}
dnsProvider, err := selectel.NewDNSProviderFromConfig(cfg.Config)
if err != nil {
return nil, fmt.Errorf("setup dns provider: %w", err)
}
return dnsProvider, nil
}
// Return DNS provider name.
func (c *selectelDNSProviderSolver) Name() string {
return providerName
}
// 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 *selectelDNSProviderSolver) Present(challengeRequest *v1alpha1.ChallengeRequest) error {
cfg, err := loadConfig(challengeRequest.Config)
if err != nil {
return fmt.Errorf("load config: %w", err)
}
provider, err := c.provider(&cfg, challengeRequest.ResourceNamespace)
if err != nil {
return fmt.Errorf("setup selectell dns provider: %w", err)
}
err = provider.Present(challengeRequest.ResolvedZone, challengeRequest.ResolvedFQDN, challengeRequest.Key)
if err != nil {
return fmt.Errorf("present: %w", err)
}
return nil
}
// CleanUp should delete the relevant TXT record in RRSet from the DNS provider console.
// If multiple TXT records exist in RRSet with the same record hostname (e.g.
// _acme-challenge.example.com) then **only** the one 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 *selectelDNSProviderSolver) CleanUp(challengeRequest *v1alpha1.ChallengeRequest) error {
cfg, err := loadConfig(challengeRequest.Config)
if err != nil {
return fmt.Errorf("load config: %w", err)
}
provider, err := c.provider(&cfg, challengeRequest.ResourceNamespace)
if err != nil {
return fmt.Errorf("setup selectell dns provider: %w", err)
}
err = provider.CleanUp(challengeRequest.ResolvedZone, challengeRequest.ResolvedFQDN, challengeRequest.Key)
if err != nil {
return fmt.Errorf("cleanup: %w", 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 *selectelDNSProviderSolver) Initialize(kubeClientCfg *rest.Config, _ <-chan struct{}) error {
// use name in json tag as field name for validate output errors
validate.RegisterTagNameFunc(utils.JSONFieldNameForValidator)
// We must setup logger
// https://pkg.go.dev/sigs.k8s.io/controller-runtime/pkg/log#pkg-variables
// example from https://sdk.operatorframework.io/docs/building-operators/golang/references/logging/
logger := zap.New()
logf.SetLogger(logger)
cl, err := kubernetes.NewForConfig(kubeClientCfg)
if err != nil {
return fmt.Errorf("k8s clientset: %w", err)
}
c.client = cl
return nil
}
// loadConfig is a small helper function that decodes JSON configuration into
// the typed config struct.
func loadConfig(cfgJSON *extAPI.JSON) (selectelDNSProviderConfig, error) {
cfg := selectelDNSProviderConfig{}
cfgDNS, err := selectel.NewConfigForDNS()
if err != nil {
return cfg, fmt.Errorf("setup selectel config: %w", err)
}
cfg.Config = cfgDNS
if err := json.Unmarshal(cfgJSON.Raw, &cfg); err != nil {
return cfg, fmt.Errorf("unmarshal config: %w", err)
}
if cfg.DNSSecretRef.Name == "" {
return cfg, errSecretNameNotSetup
}
return cfg, nil
}