-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.go
More file actions
257 lines (220 loc) · 6.14 KB
/
Copy pathmain.go
File metadata and controls
257 lines (220 loc) · 6.14 KB
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
244
245
246
247
248
249
250
251
252
253
254
255
256
257
package main
import (
"context"
"flag"
"fmt"
"net/http"
"os"
"regexp"
"strconv"
"time"
"github.com/prometheus/client_golang/prometheus"
"github.com/prometheus/client_golang/prometheus/promhttp"
"istio.io/pkg/log"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
"k8s.io/client-go/kubernetes"
"k8s.io/client-go/rest"
"k8s.io/client-go/tools/clientcmd"
)
var (
kubeconfig string
dryRun bool
annotationKey string
systemNamespaces = []string{
"default",
"kube-system",
"flux-system",
}
// Prometheus metrics
namespacesChecked = prometheus.NewCounterVec(
prometheus.CounterOpts{
Name: "temporary_namespaces_checked_total",
Help: "Total number of namespaces checked for expiry",
},
[]string{"result"},
)
namespacesDeleted = prometheus.NewCounterVec(
prometheus.CounterOpts{
Name: "temporary_namespaces_deleted_total",
Help: "Total number of namespaces deleted",
},
[]string{"dry_run"},
)
cleanupErrors = prometheus.NewCounterVec(
prometheus.CounterOpts{
Name: "temporary_namespaces_errors_total",
Help: "Total number of errors encountered during cleanup",
},
[]string{"type"},
)
cleanupDuration = prometheus.NewHistogram(
prometheus.HistogramOpts{
Name: "temporary_namespaces_cleanup_duration_seconds",
Help: "Duration of namespace cleanup operations",
Buckets: prometheus.DefBuckets,
},
)
currentEligible = prometheus.NewGauge(
prometheus.GaugeOpts{
Name: "temporary_namespaces_current_eligible",
Help: "Current number of namespaces eligible for deletion",
},
)
)
func init() {
// Register Prometheus metrics
prometheus.MustRegister(namespacesChecked)
prometheus.MustRegister(namespacesDeleted)
prometheus.MustRegister(cleanupErrors)
prometheus.MustRegister(cleanupDuration)
prometheus.MustRegister(currentEligible)
}
func isSystemNamespace(name string) bool {
for _, ns := range systemNamespaces {
if name == ns {
return true
}
}
return false
}
func startMetricsServer() {
http.Handle("/metrics", promhttp.Handler())
http.HandleFunc("/health", func(w http.ResponseWriter, r *http.Request) {
w.WriteHeader(http.StatusOK)
if _, err := w.Write([]byte("OK")); err != nil {
log.Errorf("Failed to write health response: %v", err)
}
})
log.Infof("Starting metrics server on :8080")
if err := http.ListenAndServe(":8080", nil); err != nil {
log.Errorf("Failed to start metrics server: %v", err)
}
}
func main() {
options := log.DefaultOptions()
options.JSONEncoding = true
if err := log.Configure(options); err != nil {
fmt.Printf("{\"message\": \"unable to start logging system\", \"error\": \"%s\"}\n", err)
os.Exit(1)
}
flag.StringVar(&kubeconfig, "kubeconfig", "", "Path to the kubeconfig file (optional)")
flag.BoolVar(&dryRun, "dry-run", false, "Enable dry run mode")
flag.Parse()
annotationKey = os.Getenv("KUBE_ANNOTATION_KEY")
config, err := loadKubeConfig()
if err != nil {
log.Errorf("Error loading kubeconfig",
"error", err,
)
os.Exit(1)
}
clientset, err := kubernetes.NewForConfig(config)
if err != nil {
log.Errorf("Error creating Kubernetes client",
"error", err,
)
os.Exit(1)
}
// Start metrics server in a goroutine
go startMetricsServer()
for {
if err := cleanupNamespaces(clientset); err != nil {
log.Warnf("Error cleaning up namespaces",
"error", err,
)
cleanupErrors.WithLabelValues("cleanup_failed").Inc()
}
// Sleep for an hour before running again
time.Sleep(time.Hour)
}
}
func loadKubeConfig() (*rest.Config, error) {
if kubeconfig != "" {
return clientcmd.BuildConfigFromFlags("", kubeconfig)
}
return rest.InClusterConfig()
}
func cleanupNamespaces(clientset kubernetes.Interface) error {
start := time.Now()
defer func() {
cleanupDuration.Observe(time.Since(start).Seconds())
}()
namespacesRegexStr := os.Getenv("NAMESPACES_REGEX")
var namespacesRegex *regexp.Regexp
if namespacesRegexStr != "" {
var err error
namespacesRegex, err = regexp.Compile(namespacesRegexStr)
if err != nil {
cleanupErrors.WithLabelValues("regex_compile").Inc()
return fmt.Errorf("invalid NAMESPACES_REGEX: %v", err)
}
}
namespaces, err := clientset.CoreV1().Namespaces().List(context.TODO(), metav1.ListOptions{})
if err != nil {
cleanupErrors.WithLabelValues("list_namespaces").Inc()
return err
}
currentTimestamp := time.Now().Unix()
eligibleCount := 0
for _, ns := range namespaces.Items {
if isSystemNamespace(ns.Name) {
namespacesChecked.WithLabelValues("system_namespace").Inc()
log.Warnf("Skipping system namespace",
"namespace", ns.Name,
)
continue
}
if namespacesRegex != nil && !namespacesRegex.MatchString(ns.Name) {
namespacesChecked.WithLabelValues("regex_no_match").Inc()
log.Warnf("Skipping namespace that does not match configured regular expression",
"namespace", ns.Name,
)
continue
}
annotations := ns.Annotations
expiryTimestampStr := annotations[annotationKey]
if expiryTimestampStr == "" {
namespacesChecked.WithLabelValues("no_annotation").Inc()
continue
}
expiryTimestamp, err := strconv.ParseInt(expiryTimestampStr, 10, 64)
if err != nil {
namespacesChecked.WithLabelValues("parse_error").Inc()
cleanupErrors.WithLabelValues("parse_timestamp").Inc()
log.Warnf("Error parsing expiry timestamp in namespace",
"err", err,
"namespace", ns.Name,
)
continue
}
if expiryTimestamp > currentTimestamp {
namespacesChecked.WithLabelValues("not_expired").Inc()
continue
}
eligibleCount++
namespacesChecked.WithLabelValues("expired").Inc()
if dryRun {
namespacesDeleted.WithLabelValues("true").Inc()
log.Infof("(DRY-RUN) Namespace marked for deletion",
"namespace", ns.Name,
)
continue
}
err = clientset.CoreV1().Namespaces().Delete(context.TODO(), ns.Name, metav1.DeleteOptions{})
if err != nil {
cleanupErrors.WithLabelValues("delete_namespace").Inc()
log.Errorf("Error deleting namespace",
"err", err,
"namespace", ns.Name,
)
continue
}
namespacesDeleted.WithLabelValues("false").Inc()
log.Infof("Namespace deleted successfully",
"namespace", ns.Name,
)
}
// Update the current eligible gauge
currentEligible.Set(float64(eligibleCount))
return nil
}