Skip to content

Commit ad220f5

Browse files
authored
docs: Enhance README and clean up Makefile (#8)
* docs: Enhance README with detailed features and components for Kubernetes management Signed-off-by: Steffen Exler <linuxluigi@users.noreply.github.com> * chore: Remove lint and test targets from Makefile Signed-off-by: Steffen Exler <linuxluigi@users.noreply.github.com> * docs: Update README with corrected prerequisites and deployment instructions Signed-off-by: Steffen Exler <linuxluigi@users.noreply.github.com> * docs: Clarify project description in README for Hetzner Kubernetes deployments Signed-off-by: Steffen Exler <linuxluigi@users.noreply.github.com> * docs: Update README and Makefile to include golangci-lint instructions and targets Signed-off-by: Steffen Exler <linuxluigi@users.noreply.github.com> * Refactor Makefile: Replace 'tidy' target with 'lint' target for golangci-lint integration Signed-off-by: Steffen Exler <linuxluigi@users.noreply.github.com> --------- Signed-off-by: Steffen Exler <linuxluigi@users.noreply.github.com>
1 parent db0a301 commit ad220f5

File tree

6 files changed

+517
-491
lines changed

6 files changed

+517
-491
lines changed

Makefile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ download: ## Downloads the dependencies
3939

4040
tidy: ## Cleans up go.mod and go.sum
4141
@go mod tidy
42+
@go mod tidy -modfile=golangci-lint.mod
4243

4344
fmt: ## Formats all code with go fmt
4445
@go fmt ./...

README.md

Lines changed: 41 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Pulumi Hetzner Kubernetes (Talos)
22

3-
Deploy and manage Kubernetes clusters on Hetzner Cloud using Talos Linux, powered by Golang Pulumi. This project provides reusable infrastructure code to provision, configure, and manage experimental-grade Kubernetes clusters on Hetzner.
3+
Deploy and manage Kubernetes clusters on Hetzner Cloud using Talos Linux, powered by Golang Pulumi. This project provides reusable infrastructure code to provision, configure, and manage **experimental-grade** Kubernetes clusters on Hetzner.
44

55
## Features
66

@@ -10,6 +10,46 @@ Deploy and manage Kubernetes clusters on Hetzner Cloud using Talos Linux, powere
1010
- **Makefile Automation:** Common tasks (build, lint, test, deploy) are automated via `make`.
1111
- **Talos Image Creation:** Uses [hcloud-upload-image](https://github.com/apricote/hcloud-upload-image) to create and upload Talos images to Hetzner Cloud.
1212

13+
## 🔋 Batteries Included
14+
15+
This **experimental** project comes with pre-configured Kubernetes components that integrate with Hetzner Cloud. While functional, these components are designed for testing and development environments:
16+
17+
### **Cluster Management & Autoscaling**
18+
19+
- **🚀 Cluster Autoscaler:** Automatically scales worker nodes based on pod resource demands, with configurable min/max limits and utilization thresholds
20+
- **📊 Kubernetes Metrics Server:** Provides container resource metrics for Horizontal Pod Autoscaling (HPA) and other autoscaling pipelines
21+
- **🔐 Kubelet Serving Certificate Approver:** Automatically approves kubelet serving certificates for secure metrics collection
22+
23+
### **Hetzner Cloud Integration**
24+
25+
- **☁️ Hetzner Cloud Controller Manager (CCM):** Native integration for Hetzner load balancers, volumes, and networking
26+
- **💾 Hetzner CSI Driver:** Persistent volume support with encryption, configurable storage classes, and automatic volume provisioning
27+
- **🔥 Firewall Management:** Automated firewall rules for cluster communication and optional public API access
28+
29+
### **Storage Solutions**
30+
31+
- **📦 Longhorn Distributed Storage (Optional):** Cloud-native distributed block storage with replication, snapshots, and backup capabilities when enabled in configuration
32+
33+
### **Security & Networking**
34+
35+
- **🔒 etcd Encryption at Rest:** Optional Kubernetes secrets encryption using secretbox encryption
36+
- **🌐 Private Networking:** VPC with custom subnets, private IPs, and secure inter-node communication
37+
- **🔧 Custom Registry Support:** Configure private container registries with authentication and TLS
38+
39+
### **High Availability & Reliability**
40+
41+
- **⚖️ Multi-Region Control Plane:** Deploy control plane nodes across multiple Hetzner regions for maximum availability
42+
- **🔄 Control Plane Placement Groups:** Anti-affinity rules ensure control plane nodes are distributed across different physical hosts (worker nodes do not use placement groups)
43+
- **🎯 Control Plane Load Balancer:** Highly available Kubernetes API server with automatic failover
44+
- **📋 Node Taints & Labels:** Flexible workload scheduling with custom node labeling and tainting
45+
46+
### **Multi-Architecture Support**
47+
48+
- **🏗️ ARM64 & AMD64:** Full support for both x86_64 and ARM64 architectures with automatic image selection
49+
- **🖼️ Talos Image Factory:** Automatic building and uploading of architecture-specific Talos images
50+
51+
All Helm chart components are configured with sensible defaults but remain fully customizable through Helm values and configuration overrides.
52+
1353
## Requirements
1454

1555
Install the following tools before using this project:

golangci-lint.mod

Lines changed: 110 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,26 @@
11
module github.com/exivity/pulumi-hcloud-k8s/golangci-lint
22

3-
go 1.24.3
3+
go 1.24.5
44

55
tool github.com/golangci/golangci-lint/v2/cmd/golangci-lint
66

7+
require (
8+
dario.cat/mergo v1.0.2
9+
github.com/exivity/pulumi-hcloud-k8s v0.0.0-20250724143556-f5002a303627
10+
github.com/exivity/pulumi-hcloud-upload-image v0.0.1
11+
github.com/exivity/pulumiconfig v0.3.1
12+
github.com/go-playground/validator/v10 v10.27.0
13+
github.com/hetznercloud/cli v1.51.0
14+
github.com/pulumi/pulumi-command/sdk v1.1.0
15+
github.com/pulumi/pulumi-hcloud/sdk v1.23.0
16+
github.com/pulumi/pulumi-kubernetes/sdk/v4 v4.23.0
17+
github.com/pulumi/pulumi/sdk/v3 v3.185.0
18+
github.com/pulumiverse/pulumi-talos/sdk v0.6.0
19+
github.com/stretchr/testify v1.10.0
20+
golang.org/x/vuln v1.1.4
21+
gopkg.in/yaml.v3 v3.0.1
22+
)
23+
724
require (
825
4d63.com/gocheckcompilerdirectives v1.3.0 // indirect
926
4d63.com/gochecknoglobals v0.2.2 // indirect
@@ -16,18 +33,25 @@ require (
1633
github.com/Djarvur/go-err113 v0.0.0-20210108212216-aea10b59be24 // indirect
1734
github.com/GaijinEntertainment/go-exhaustruct/v3 v3.3.1 // indirect
1835
github.com/Masterminds/semver/v3 v3.3.1 // indirect
36+
github.com/Microsoft/go-winio v0.6.2 // indirect
1937
github.com/OpenPeeDeeP/depguard/v2 v2.2.1 // indirect
38+
github.com/ProtonMail/go-crypto v1.1.5 // indirect
39+
github.com/VividCortex/ewma v1.2.0 // indirect
40+
github.com/agext/levenshtein v1.2.3 // indirect
2041
github.com/alecthomas/chroma/v2 v2.17.2 // indirect
2142
github.com/alecthomas/go-check-sumtype v0.3.1 // indirect
2243
github.com/alexkohler/nakedret/v2 v2.0.6 // indirect
2344
github.com/alexkohler/prealloc v1.0.0 // indirect
2445
github.com/alingse/asasalint v0.0.11 // indirect
2546
github.com/alingse/nilnesserr v0.2.0 // indirect
47+
github.com/apparentlymart/go-textseg/v15 v15.0.0 // indirect
2648
github.com/ashanbrown/forbidigo v1.6.0 // indirect
2749
github.com/ashanbrown/makezero v1.2.0 // indirect
50+
github.com/atotto/clipboard v0.1.4 // indirect
2851
github.com/aymanbagabas/go-osc52/v2 v2.0.1 // indirect
2952
github.com/beorn7/perks v1.0.1 // indirect
3053
github.com/bkielbasa/cyclop v1.2.3 // indirect
54+
github.com/blang/semver v3.5.1+incompatible // indirect
3155
github.com/blizzy78/varnamelen v0.8.0 // indirect
3256
github.com/bombsimon/wsl/v4 v4.7.0 // indirect
3357
github.com/breml/bidichk v0.3.3 // indirect
@@ -38,39 +62,59 @@ require (
3862
github.com/ccojocar/zxcvbn-go v1.0.2 // indirect
3963
github.com/cespare/xxhash/v2 v2.3.0 // indirect
4064
github.com/charithe/durationcheck v0.0.10 // indirect
65+
github.com/charmbracelet/bubbles v0.20.0 // indirect
66+
github.com/charmbracelet/bubbletea v1.3.3 // indirect
4167
github.com/charmbracelet/colorprofile v0.2.3-0.20250311203215-f60798e515dc // indirect
4268
github.com/charmbracelet/lipgloss v1.1.0 // indirect
4369
github.com/charmbracelet/x/ansi v0.8.0 // indirect
4470
github.com/charmbracelet/x/cellbuf v0.0.13-0.20250311204145-2c3ea96c31dd // indirect
4571
github.com/charmbracelet/x/term v0.2.1 // indirect
4672
github.com/chavacava/garif v0.1.0 // indirect
73+
github.com/cheggaaa/pb v1.0.29 // indirect
74+
github.com/cheggaaa/pb/v3 v3.1.7 // indirect
4775
github.com/ckaznocha/intrange v0.3.1 // indirect
76+
github.com/cloudflare/circl v1.6.1 // indirect
4877
github.com/curioswitch/go-reassign v0.3.0 // indirect
78+
github.com/cyphar/filepath-securejoin v0.4.1 // indirect
4979
github.com/daixiang0/gci v0.13.6 // indirect
5080
github.com/dave/dst v0.27.3 // indirect
51-
github.com/davecgh/go-spew v1.1.1 // indirect
81+
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
5282
github.com/denis-tingaikin/go-header v0.5.0 // indirect
83+
github.com/djherbis/times v1.6.0 // indirect
5384
github.com/dlclark/regexp2 v1.11.5 // indirect
85+
github.com/dustin/go-humanize v1.0.1 // indirect
86+
github.com/emirpasic/gods v1.18.1 // indirect
87+
github.com/erikgeiser/coninput v0.0.0-20211004153227-1c3628e74d0f // indirect
5488
github.com/ettle/strcase v0.2.0 // indirect
5589
github.com/fatih/color v1.18.0 // indirect
90+
github.com/fatih/structs v1.1.0 // indirect
5691
github.com/fatih/structtag v1.2.0 // indirect
5792
github.com/firefart/nonamedreturns v1.0.6 // indirect
58-
github.com/fsnotify/fsnotify v1.5.4 // indirect
93+
github.com/fsnotify/fsnotify v1.8.0 // indirect
5994
github.com/fzipp/gocyclo v0.6.0 // indirect
95+
github.com/gabriel-vasile/mimetype v1.4.8 // indirect
6096
github.com/ghostiam/protogetter v0.3.15 // indirect
6197
github.com/go-critic/go-critic v0.13.0 // indirect
98+
github.com/go-git/gcfg v1.5.1-0.20230307220236-3a3c6141e376 // indirect
99+
github.com/go-git/go-billy/v5 v5.6.2 // indirect
100+
github.com/go-git/go-git/v5 v5.13.2 // indirect
101+
github.com/go-playground/locales v0.14.1 // indirect
102+
github.com/go-playground/universal-translator v0.18.1 // indirect
62103
github.com/go-toolsmith/astcast v1.1.0 // indirect
63104
github.com/go-toolsmith/astcopy v1.1.0 // indirect
64105
github.com/go-toolsmith/astequal v1.2.0 // indirect
65106
github.com/go-toolsmith/astfmt v1.1.0 // indirect
66107
github.com/go-toolsmith/astp v1.1.0 // indirect
67108
github.com/go-toolsmith/strparse v1.1.0 // indirect
68109
github.com/go-toolsmith/typep v1.1.0 // indirect
69-
github.com/go-viper/mapstructure/v2 v2.2.1 // indirect
110+
github.com/go-viper/mapstructure/v2 v2.3.0 // indirect
70111
github.com/go-xmlfmt/xmlfmt v1.1.3 // indirect
71112
github.com/gobwas/glob v0.2.3 // indirect
113+
github.com/goccy/go-yaml v1.18.0 // indirect
72114
github.com/gofrs/flock v0.12.1 // indirect
73-
github.com/golang/protobuf v1.5.3 // indirect
115+
github.com/gogo/protobuf v1.3.2 // indirect
116+
github.com/golang/glog v1.2.4 // indirect
117+
github.com/golang/groupcache v0.0.0-20241129210726-2c02b8208cf8 // indirect
74118
github.com/golangci/dupl v0.0.0-20250308024227-f665c8d69b32 // indirect
75119
github.com/golangci/go-printf-func-name v0.1.0 // indirect
76120
github.com/golangci/gofmt v0.0.0-20250106114630-d62b90e6713d // indirect
@@ -81,22 +125,31 @@ require (
81125
github.com/golangci/revgrep v0.8.0 // indirect
82126
github.com/golangci/unconvert v0.0.0-20250410112200-a129a6e6413e // indirect
83127
github.com/google/go-cmp v0.7.0 // indirect
128+
github.com/google/uuid v1.6.0 // indirect
84129
github.com/gordonklaus/ineffassign v0.1.0 // indirect
85130
github.com/gostaticanalysis/analysisutil v0.7.1 // indirect
86131
github.com/gostaticanalysis/comment v1.5.0 // indirect
87132
github.com/gostaticanalysis/forcetypeassert v0.2.0 // indirect
88133
github.com/gostaticanalysis/nilerr v0.1.1 // indirect
134+
github.com/grpc-ecosystem/grpc-opentracing v0.0.0-20180507213350-8e809c8a8645 // indirect
135+
github.com/guptarohit/asciigraph v0.7.3 // indirect
136+
github.com/hashicorp/errwrap v1.1.0 // indirect
89137
github.com/hashicorp/go-immutable-radix/v2 v2.1.0 // indirect
138+
github.com/hashicorp/go-multierror v1.1.1 // indirect
90139
github.com/hashicorp/go-version v1.7.0 // indirect
91140
github.com/hashicorp/golang-lru/v2 v2.0.7 // indirect
92-
github.com/hashicorp/hcl v1.0.0 // indirect
141+
github.com/hashicorp/hcl/v2 v2.23.0 // indirect
142+
github.com/hetznercloud/hcloud-go/v2 v2.22.0 // indirect
93143
github.com/hexops/gotextdiff v1.0.3 // indirect
94144
github.com/inconshreveable/mousetrap v1.1.0 // indirect
145+
github.com/jbenet/go-context v0.0.0-20150711004518-d14ea06fba99 // indirect
146+
github.com/jedib0t/go-pretty/v6 v6.6.7 // indirect
95147
github.com/jgautheron/goconst v1.8.1 // indirect
96148
github.com/jingyugao/rowserrcheck v1.1.1 // indirect
97149
github.com/jjti/go-spancheck v0.6.4 // indirect
98150
github.com/julz/importas v0.2.0 // indirect
99151
github.com/karamaru-alpha/copyloopvar v1.2.1 // indirect
152+
github.com/kevinburke/ssh_config v1.2.0 // indirect
100153
github.com/kisielk/errcheck v1.9.0 // indirect
101154
github.com/kkHAIKE/contextcheck v1.1.6 // indirect
102155
github.com/kulti/thelper v0.6.3 // indirect
@@ -107,36 +160,47 @@ require (
107160
github.com/ldez/grignotin v0.9.0 // indirect
108161
github.com/ldez/tagliatelle v0.7.1 // indirect
109162
github.com/ldez/usetesting v0.4.3 // indirect
163+
github.com/leodido/go-urn v1.4.0 // indirect
110164
github.com/leonklingele/grouper v1.1.2 // indirect
111165
github.com/lucasb-eyer/go-colorful v1.2.0 // indirect
112166
github.com/macabu/inamedparam v0.2.0 // indirect
113-
github.com/magiconair/properties v1.8.6 // indirect
114167
github.com/manuelarte/funcorder v0.2.1 // indirect
115168
github.com/maratori/testableexamples v1.0.0 // indirect
116169
github.com/maratori/testpackage v1.1.1 // indirect
117170
github.com/matoous/godox v1.1.0 // indirect
118171
github.com/mattn/go-colorable v0.1.14 // indirect
119172
github.com/mattn/go-isatty v0.0.20 // indirect
173+
github.com/mattn/go-localereader v0.0.1 // indirect
120174
github.com/mattn/go-runewidth v0.0.16 // indirect
121-
github.com/matttproud/golang_protobuf_extensions v1.0.1 // indirect
122175
github.com/mgechev/revive v1.9.0 // indirect
123176
github.com/mitchellh/go-homedir v1.1.0 // indirect
124-
github.com/mitchellh/mapstructure v1.5.0 // indirect
177+
github.com/mitchellh/go-ps v1.0.0 // indirect
178+
github.com/mitchellh/go-wordwrap v1.0.1 // indirect
125179
github.com/moricho/tparallel v0.3.2 // indirect
180+
github.com/muesli/ansi v0.0.0-20230316100256-276c6243b2f6 // indirect
181+
github.com/muesli/cancelreader v0.2.2 // indirect
126182
github.com/muesli/termenv v0.16.0 // indirect
183+
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
127184
github.com/nakabonne/nestif v0.3.1 // indirect
128185
github.com/nishanths/exhaustive v0.12.0 // indirect
129186
github.com/nishanths/predeclared v0.2.2 // indirect
130187
github.com/nunnatsa/ginkgolinter v0.19.1 // indirect
131188
github.com/olekukonko/tablewriter v0.0.5 // indirect
132-
github.com/pelletier/go-toml v1.9.5 // indirect
189+
github.com/opentracing/basictracer-go v1.1.0 // indirect
190+
github.com/opentracing/opentracing-go v1.2.0 // indirect
133191
github.com/pelletier/go-toml/v2 v2.2.4 // indirect
134-
github.com/pmezard/go-difflib v1.0.0 // indirect
192+
github.com/pgavlin/fx v0.1.6 // indirect
193+
github.com/pjbgf/sha1cd v0.3.2 // indirect
194+
github.com/pkg/errors v0.9.1 // indirect
195+
github.com/pkg/term v1.1.0 // indirect
196+
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
135197
github.com/polyfloyd/go-errorlint v1.8.0 // indirect
136-
github.com/prometheus/client_golang v1.12.1 // indirect
137-
github.com/prometheus/client_model v0.2.0 // indirect
138-
github.com/prometheus/common v0.32.1 // indirect
139-
github.com/prometheus/procfs v0.7.3 // indirect
198+
github.com/prometheus/client_golang v1.22.0 // indirect
199+
github.com/prometheus/client_model v0.6.1 // indirect
200+
github.com/prometheus/common v0.62.0 // indirect
201+
github.com/prometheus/procfs v0.15.1 // indirect
202+
github.com/pulumi/appdash v0.0.0-20231130102222-75f619a67231 // indirect
203+
github.com/pulumi/esc v0.14.3 // indirect
140204
github.com/quasilyte/go-ruleguard v0.4.4 // indirect
141205
github.com/quasilyte/go-ruleguard/dsl v0.3.22 // indirect
142206
github.com/quasilyte/gogrep v0.5.0 // indirect
@@ -147,60 +211,77 @@ require (
147211
github.com/rogpeppe/go-internal v1.14.1 // indirect
148212
github.com/ryancurrah/gomodguard v1.4.1 // indirect
149213
github.com/ryanrolds/sqlclosecheck v0.5.1 // indirect
214+
github.com/sabhiram/go-gitignore v0.0.0-20210923224102-525f6e181f06 // indirect
215+
github.com/sagikazarmark/locafero v0.7.0 // indirect
150216
github.com/sanposhiho/wastedassign/v2 v2.1.0 // indirect
217+
github.com/santhosh-tekuri/jsonschema/v5 v5.3.1 // indirect
151218
github.com/santhosh-tekuri/jsonschema/v6 v6.0.1 // indirect
152219
github.com/sashamelentyev/interfacebloat v1.1.0 // indirect
153220
github.com/sashamelentyev/usestdlibvars v1.28.0 // indirect
154221
github.com/securego/gosec/v2 v2.22.3 // indirect
222+
github.com/sergi/go-diff v1.3.2-0.20230802210424-5b0b94c5c0d3 // indirect
155223
github.com/sirupsen/logrus v1.9.3 // indirect
156224
github.com/sivchari/containedctx v1.0.3 // indirect
225+
github.com/skeema/knownhosts v1.3.1 // indirect
157226
github.com/sonatard/noctx v0.1.0 // indirect
227+
github.com/sourcegraph/conc v0.3.0 // indirect
158228
github.com/sourcegraph/go-diff v0.7.0 // indirect
159229
github.com/spf13/afero v1.14.0 // indirect
160-
github.com/spf13/cast v1.5.0 // indirect
230+
github.com/spf13/cast v1.8.0 // indirect
161231
github.com/spf13/cobra v1.9.1 // indirect
162-
github.com/spf13/jwalterweatherman v1.1.0 // indirect
163232
github.com/spf13/pflag v1.0.6 // indirect
164-
github.com/spf13/viper v1.12.0 // indirect
233+
github.com/spf13/viper v1.20.1 // indirect
165234
github.com/ssgreg/nlreturn/v2 v2.2.1 // indirect
166235
github.com/stbenjam/no-sprintf-host-port v0.2.0 // indirect
167236
github.com/stretchr/objx v0.5.2 // indirect
168-
github.com/stretchr/testify v1.10.0 // indirect
169-
github.com/subosito/gotenv v1.4.1 // indirect
237+
github.com/subosito/gotenv v1.6.0 // indirect
170238
github.com/tdakkota/asciicheck v0.4.1 // indirect
171239
github.com/tetafro/godot v1.5.1 // indirect
240+
github.com/texttheater/golang-levenshtein v1.0.1 // indirect
172241
github.com/timakin/bodyclose v0.0.0-20241222091800-1db5c5ca4d67 // indirect
173242
github.com/timonwong/loggercheck v0.11.0 // indirect
174243
github.com/tomarrell/wrapcheck/v2 v2.11.0 // indirect
175244
github.com/tommy-muehle/go-mnd/v2 v2.5.1 // indirect
245+
github.com/uber/jaeger-client-go v2.30.0+incompatible // indirect
246+
github.com/uber/jaeger-lib v2.4.1+incompatible // indirect
176247
github.com/ultraware/funlen v0.2.0 // indirect
177248
github.com/ultraware/whitespace v0.2.0 // indirect
178249
github.com/uudashr/gocognit v1.2.0 // indirect
179250
github.com/uudashr/iface v1.3.1 // indirect
251+
github.com/xanzy/ssh-agent v0.3.3 // indirect
180252
github.com/xen0n/gosmopolitan v1.3.0 // indirect
181253
github.com/xo/terminfo v0.0.0-20220910002029-abceb7e1c41e // indirect
182254
github.com/yagipy/maintidx v1.0.0 // indirect
183255
github.com/yeya24/promlinter v0.3.0 // indirect
184256
github.com/ykadowak/zerologlint v0.1.5 // indirect
257+
github.com/zclconf/go-cty v1.16.2 // indirect
185258
gitlab.com/bosi/decorder v0.4.2 // indirect
186259
go-simpler.org/musttag v0.13.1 // indirect
187260
go-simpler.org/sloglint v0.11.0 // indirect
188261
go.augendre.info/fatcontext v0.8.0 // indirect
189-
go.uber.org/atomic v1.7.0 // indirect
262+
go.uber.org/atomic v1.11.0 // indirect
190263
go.uber.org/automaxprocs v1.6.0 // indirect
191-
go.uber.org/multierr v1.6.0 // indirect
264+
go.uber.org/mock v0.5.2 // indirect
265+
go.uber.org/multierr v1.9.0 // indirect
192266
go.uber.org/zap v1.24.0 // indirect
267+
golang.org/x/crypto v0.40.0 // indirect
268+
golang.org/x/exp v0.0.0-20250218142911-aa4b98e5adaa // indirect
193269
golang.org/x/exp/typeparams v0.0.0-20250210185358-939b2ce775ac // indirect
194-
golang.org/x/mod v0.24.0 // indirect
195-
golang.org/x/sync v0.13.0 // indirect
196-
golang.org/x/sys v0.32.0 // indirect
197-
golang.org/x/text v0.24.0 // indirect
198-
golang.org/x/tools v0.32.0 // indirect
270+
golang.org/x/mod v0.25.0 // indirect
271+
golang.org/x/net v0.42.0 // indirect
272+
golang.org/x/sync v0.16.0 // indirect
273+
golang.org/x/sys v0.34.0 // indirect
274+
golang.org/x/telemetry v0.0.0-20240522233618-39ace7a40ae7 // indirect
275+
golang.org/x/term v0.33.0 // indirect
276+
golang.org/x/text v0.27.0 // indirect
277+
golang.org/x/tools v0.34.0 // indirect
278+
google.golang.org/genproto/googleapis/rpc v0.0.0-20250313205543-e70fdf4c4cb4 // indirect
279+
google.golang.org/grpc v1.71.0 // indirect
199280
google.golang.org/protobuf v1.36.6 // indirect
200-
gopkg.in/ini.v1 v1.67.0 // indirect
281+
gopkg.in/warnings.v0 v0.1.2 // indirect
201282
gopkg.in/yaml.v2 v2.4.0 // indirect
202-
gopkg.in/yaml.v3 v3.0.1 // indirect
203283
honnef.co/go/tools v0.6.1 // indirect
284+
lukechampine.com/frand v1.5.1 // indirect
204285
mvdan.cc/gofumpt v0.8.0 // indirect
205286
mvdan.cc/unparam v0.0.0-20250301125049-0df0534333a4 // indirect
206287
)

0 commit comments

Comments
 (0)