Skip to content

feat: add kubernetes/kubernetes/kube-aggregator#35734

Merged
suzuki-shunsuke merged 8 commits into
aquaproj:mainfrom
takumin:feat/kubernetes/kube-aggregator
May 1, 2025
Merged

feat: add kubernetes/kubernetes/kube-aggregator#35734
suzuki-shunsuke merged 8 commits into
aquaproj:mainfrom
takumin:feat/kubernetes/kube-aggregator

Conversation

@takumin

@takumin takumin commented Apr 26, 2025

Copy link
Copy Markdown
Contributor

kubernetes/kubernetes/kube-aggregator: Aggregator for Kubernetes-style API servers: dynamic registration, discovery summarization, secure proxy

$ aqua g -i kubernetes/kubernetes/kube-aggregator

Check List

How to confirm if this package works well

Reviewers aren't necessarily familiar with this package, so please describe how to confirm if this package works well.
Please confirm if this package works well yourself as much as possible.

Command and output

$ cmdx con linux amd64
+ bash scripts/connect.sh
[INFO] Connecting to the container aqua-registry (linux/amd64)
root@fad0a1785cb0:/workspace# kube-aggregator -h
Launch a API aggregator and proxy server

Usage:
   [flags]

Flags:
      --admission-control-config-file string                    File with admission control configuration.
      --advertise-address ip                                    The IP address on which to advertise the apiserver to members of the cluster. This address must be reachable by the rest of the cluster. If blank, the --bind-address will be used. If --bind-address is unspecified, the host's default interface will be used.
      --audit-log-batch-buffer-size int                         The size of the buffer to store events before batching and writing. Only used in batch mode. (default 10000)
      --audit-log-batch-max-size int                            The maximum size of a batch. Only used in batch mode. (default 1)
      --audit-log-batch-max-wait duration                       The amount of time to wait before force writing the batch that hadn't reached the max size. Only used in batch mode.
      --audit-log-batch-throttle-burst int                      Maximum number of requests sent at the same moment if ThrottleQPS was not utilized before. Only used in batch mode.
      --audit-log-batch-throttle-enable                         Whether batching throttling is enabled. Only used in batch mode.
      --audit-log-batch-throttle-qps float32                    Maximum average number of batches per second. Only used in batch mode.
      --audit-log-compress                                      If set, the rotated log files will be compressed using gzip.
      --audit-log-format string                                 Format of saved audits. "legacy" indicates 1-line text format for each event. "json" indicates structured json format. Known formats are legacy,json. (default "json")
      --audit-log-maxage int                                    The maximum number of days to retain old audit log files based on the timestamp encoded in their filename.
      --audit-log-maxbackup int                                 The maximum number of old audit log files to retain. Setting a value of 0 will mean there's no restriction on the number of files.
      --audit-log-maxsize int                                   The maximum size in megabytes of the audit log file before it gets rotated.
      --audit-log-mode string                                   Strategy for sending audit events. Blocking indicates sending events should block server responses. Batch causes the backend to buffer and write events asynchronously. Known modes are batch,blocking,blocking-strict. (default "blocking")
      --audit-log-path string                                   If set, all requests coming to the apiserver will be logged to this file.  '-' means standard out.
      --audit-log-truncate-enabled                              Whether event and batch truncating is enabled.
      --audit-log-truncate-max-batch-size int                   Maximum size of the batch sent to the underlying backend. Actual serialized size can be several hundreds of bytes greater. If a batch exceeds this limit, it is split into several batches of smaller size. (default 10485760)
      --audit-log-truncate-max-event-size int                   Maximum size of the audit event sent to the underlying backend. If the size of an event is greater than this number, first request and response are removed, and if this doesn't reduce the size enough, event is discarded. (default 102400)
      --audit-log-version string                                API group and version used for serializing audit events written to log. (default "audit.k8s.io/v1")
      --audit-policy-file string                                Path to the file that defines the audit policy configuration.
      --audit-webhook-batch-buffer-size int                     The size of the buffer to store events before batching and writing. Only used in batch mode. (default 10000)
      --audit-webhook-batch-max-size int                        The maximum size of a batch. Only used in batch mode. (default 400)
      --audit-webhook-batch-max-wait duration                   The amount of time to wait before force writing the batch that hadn't reached the max size. Only used in batch mode. (default 30s)
      --audit-webhook-batch-throttle-burst int                  Maximum number of requests sent at the same moment if ThrottleQPS was not utilized before. Only used in batch mode. (default 15)
      --audit-webhook-batch-throttle-enable                     Whether batching throttling is enabled. Only used in batch mode. (default true)
      --audit-webhook-batch-throttle-qps float32                Maximum average number of batches per second. Only used in batch mode. (default 10)
      --audit-webhook-config-file string                        Path to a kubeconfig formatted file that defines the audit webhook configuration.
      --audit-webhook-initial-backoff duration                  The amount of time to wait before retrying the first failed request. (default 10s)
      --audit-webhook-mode string                               Strategy for sending audit events. Blocking indicates sending events should block server responses. Batch causes the backend to buffer and write events asynchronously. Known modes are batch,blocking,blocking-strict. (default "batch")
      --audit-webhook-truncate-enabled                          Whether event and batch truncating is enabled.
      --audit-webhook-truncate-max-batch-size int               Maximum size of the batch sent to the underlying backend. Actual serialized size can be several hundreds of bytes greater. If a batch exceeds this limit, it is split into several batches of smaller size. (default 10485760)
      --audit-webhook-truncate-max-event-size int               Maximum size of the audit event sent to the underlying backend. If the size of an event is greater than this number, first request and response are removed, and if this doesn't reduce the size enough, event is discarded. (default 102400)
      --audit-webhook-version string                            API group and version used for serializing audit events written to webhook. (default "audit.k8s.io/v1")
      --authentication-kubeconfig string                        kubeconfig file pointing at the 'core' kubernetes server with enough rights to create tokenreviews.authentication.k8s.io.
      --authentication-skip-lookup                              If false, the authentication-kubeconfig will be used to lookup missing authentication configuration from the cluster.
      --authentication-token-webhook-cache-ttl duration         The duration to cache responses from the webhook token authenticator. (default 10s)
      --authentication-tolerate-lookup-failure                  If true, failures to look up missing authentication configuration from the cluster are not considered fatal. Note that this can result in authentication that treats all requests as anonymous.
      --authorization-always-allow-paths strings                A list of HTTP paths to skip during authorization, i.e. these are authorized without contacting the 'core' kubernetes server. (default [/healthz,/readyz,/livez])
      --authorization-kubeconfig string                         kubeconfig file pointing at the 'core' kubernetes server with enough rights to create subjectaccessreviews.authorization.k8s.io.
      --authorization-webhook-cache-authorized-ttl duration     The duration to cache 'authorized' responses from the webhook authorizer. (default 10s)
      --authorization-webhook-cache-unauthorized-ttl duration   The duration to cache 'unauthorized' responses from the webhook authorizer. (default 10s)
      --bind-address ip                                         The IP address on which to listen for the --secure-port port. The associated interface(s) must be reachable by the rest of the cluster, and by CLI/web clients. If blank or an unspecified address (0.0.0.0 or ::), all interfaces and IP address families will be used. (default 0.0.0.0)
      --cert-dir string                                         The directory where the TLS certs are located. If --tls-cert-file and --tls-private-key-file are provided, this flag will be ignored. (default "apiserver.local.config/certificates")
      --client-ca-file string                                   If set, any request presenting a client certificate signed by one of the authorities in the client-ca-file is authenticated with an identity corresponding to the CommonName of the client certificate.
      --contention-profiling                                    Enable block profiling, if profiling is enabled
      --cors-allowed-origins strings                            List of allowed origins for CORS, comma separated. An allowed origin can be a regular expression to support subdomain matching. If this list is empty CORS will not be enabled. Please ensure each expression matches the entire hostname by anchoring to the start with '^' or including the '//' prefix, and by anchoring to the end with '$' or including the ':' port separator suffix. Examples of valid expressions are '//example\.com(:|$)' and '^https://example\.com(:|$)'
      --debug-socket-path string                                Use an unprotected (no authn/authz) unix-domain socket for profiling with the given path
      --delete-collection-workers int                           Number of workers spawned for DeleteCollection call. These are used to speed up namespace cleanup. (default 1)
      --disable-admission-plugins strings                       admission plugins that should be disabled although they are in the default enabled plugins list (NamespaceLifecycle, MutatingAdmissionPolicy, MutatingAdmissionWebhook, ValidatingAdmissionPolicy, ValidatingAdmissionWebhook). Comma-delimited list of admission plugins: MutatingAdmissionPolicy, MutatingAdmissionWebhook, NamespaceLifecycle, ValidatingAdmissionPolicy, ValidatingAdmissionWebhook. The order of plugins in this flag does not matter.
      --disable-http2-serving                                   If true, HTTP2 serving will be disabled [default=false]
      --egress-selector-config-file string                      File with apiserver egress selector configuration.
      --emulated-version strings                                The versions different components emulate their capabilities (APIs, features, ...) of.
                                                                If set, the component will emulate the behavior of this version instead of the underlying binary version.
                                                                Version format could only be major.minor, for example: '--emulated-version=wardle=1.2,kube=1.31'.
                                                                Options are: kube=1.31..1.33(default:1.33)
                                                                If the component is not specified, defaults to "kube"
      --emulation-forward-compatible                            If true, for any beta+ APIs enabled by default or by --runtime-config at the emulation version, their future versions with higher priority/stability will be auto enabled even if they introduced after the emulation version. Can only be set to true if the emulation version is lower than the binary version.
      --enable-admission-plugins strings                        admission plugins that should be enabled in addition to default enabled ones (NamespaceLifecycle, MutatingAdmissionPolicy, MutatingAdmissionWebhook, ValidatingAdmissionPolicy, ValidatingAdmissionWebhook). Comma-delimited list of admission plugins: MutatingAdmissionPolicy, MutatingAdmissionWebhook, NamespaceLifecycle, ValidatingAdmissionPolicy, ValidatingAdmissionWebhook. The order of plugins in this flag does not matter.
      --enable-garbage-collector                                Enables the generic garbage collector. MUST be synced with the corresponding flag of the kube-controller-manager. (default true)
      --enable-priority-and-fairness                            If true, replace the max-in-flight handler with an enhanced one that queues and dispatches with priority and fairness (default true)
      --encryption-provider-config string                       The file containing configuration for encryption providers to be used for storing secrets in etcd
      --encryption-provider-config-automatic-reload             Determines if the file set by --encryption-provider-config should be automatically reloaded if the disk contents change. Setting this to true disables the ability to uniquely identify distinct KMS plugins via the API server healthz endpoints.
      --etcd-cafile string                                      SSL Certificate Authority file used to secure etcd communication.
      --etcd-certfile string                                    SSL certification file used to secure etcd communication.
      --etcd-compaction-interval duration                       The interval of compaction requests. If 0, the compaction request from apiserver is disabled. (default 5m0s)
      --etcd-count-metric-poll-period duration                  Frequency of polling etcd for number of resources per type. 0 disables the metric collection. (default 1m0s)
      --etcd-db-metric-poll-interval duration                   The interval of requests to poll etcd and update metric. 0 disables the metric collection (default 30s)
      --etcd-healthcheck-timeout duration                       The timeout to use when checking etcd health. (default 2s)
      --etcd-keyfile string                                     SSL key file used to secure etcd communication.
      --etcd-prefix string                                      The prefix to prepend to all resource paths in etcd. (default "/registry/kube-aggregator.kubernetes.io/")
      --etcd-readycheck-timeout duration                        The timeout to use when checking etcd readiness (default 2s)
      --etcd-servers strings                                    List of etcd servers to connect with (scheme://ip:port), comma separated.
      --etcd-servers-overrides strings                          Per-resource etcd servers overrides, comma separated. The individual override format: group/resource#servers, where servers are URLs, semicolon separated. Note that this applies only to resources compiled into this server binary.
      --external-hostname string                                The hostname to use when generating externalized URLs for this master (e.g. Swagger API Docs or OpenID Discovery).
      --feature-gates colonSeparatedMultimapStringString        Comma-separated list of component:key=value pairs that describe feature gates for alpha/experimental features of different components.
                                                                If the component is not specified, defaults to "kube". This flag can be repeatedly invoked. For example: --feature-gates 'wardle:featureA=true,wardle:featureB=false' --feature-gates 'kube:featureC=true'Options are:
                                                                kube:APIResponseCompression=true|false (BETA - default=true)
                                                                kube:APIServerIdentity=true|false (BETA - default=true)
                                                                kube:APIServerTracing=true|false (BETA - default=true)
                                                                kube:APIServingWithRoutine=true|false (ALPHA - default=false)
                                                                kube:AllAlpha=true|false (ALPHA - default=false)
                                                                kube:AllBeta=true|false (BETA - default=false)
                                                                kube:AllowParsingUserUIDFromCertAuth=true|false (BETA - default=true)
                                                                kube:AllowUnsafeMalformedObjectDeletion=true|false (ALPHA - default=false)
                                                                kube:AnonymousAuthConfigurableEndpoints=true|false (BETA - default=true)
                                                                kube:AuthorizeWithSelectors=true|false (BETA - default=true)
                                                                kube:CBORServingAndStorage=true|false (ALPHA - default=false)
                                                                kube:ConcurrentWatchObjectDecode=true|false (BETA - default=false)
                                                                kube:ConsistentListFromCache=true|false (BETA - default=true)
                                                                kube:CoordinatedLeaderElection=true|false (BETA - default=false)
                                                                kube:ListFromCacheSnapshot=true|false (ALPHA - default=false)
                                                                kube:MutatingAdmissionPolicy=true|false (ALPHA - default=false)
                                                                kube:OpenAPIEnums=true|false (BETA - default=true)
                                                                kube:RemoteRequestHeaderUID=true|false (BETA - default=true)
                                                                kube:ResilientWatchCacheInitialization=true|false (BETA - default=true)
                                                                kube:StorageVersionAPI=true|false (ALPHA - default=false)
                                                                kube:StorageVersionHash=true|false (BETA - default=true)
                                                                kube:StreamingCollectionEncodingToJSON=true|false (BETA - default=true)
                                                                kube:StreamingCollectionEncodingToProtobuf=true|false (BETA - default=true)
                                                                kube:StructuredAuthenticationConfiguration=true|false (BETA - default=true)
                                                                kube:UnauthenticatedHTTP2DOSMitigation=true|false (BETA - default=true)
                                                                kube:WatchCacheInitializationPostStartHook=true|false (BETA - default=false)
                                                                kube:WatchList=true|false (BETA - default=false)
      --goaway-chance float                                     To prevent HTTP/2 clients from getting stuck on a single apiserver, randomly close a connection (GOAWAY). The client's other in-flight requests won't be affected, and the client will reconnect, likely landing on a different apiserver after going through the load balancer again. This argument sets the fraction of requests that will be sent a GOAWAY. Clusters with single apiservers, or which don't use a load balancer, should NOT enable this. Min is 0 (off), Max is .02 (1/50 requests); .001 (1/1000) is a recommended starting point.
  -h, --help                                                    help for this command
      --http2-max-streams-per-connection int                    The limit that the server gives to clients for the maximum number of streams in an HTTP/2 connection. Zero means to use golang's default. (default 1000)
      --kubeconfig string                                       kubeconfig file pointing at the 'core' kubernetes server.
      --lease-reuse-duration-seconds int                        The time in seconds that each lease is reused. A lower value could avoid large number of objects reusing the same lease. Notice that a too small value may cause performance problems at storage layer. (default 60)
      --livez-grace-period duration                             This option represents the maximum amount of time it should take for apiserver to complete its startup sequence and become live. From apiserver's start time to when this amount of time has elapsed, /livez will assume that unfinished post-start hooks will complete successfully and therefore return true.
      --log-flush-frequency duration                            Maximum number of seconds between log flushes (default 5s)
      --max-mutating-requests-inflight int                      This and --max-requests-inflight are summed to determine the server's total concurrency limit (which must be positive) if --enable-priority-and-fairness is true. Otherwise, this flag limits the maximum number of mutating requests in flight, or a zero value disables the limit completely. (default 200)
      --max-requests-inflight int                               This and --max-mutating-requests-inflight are summed to determine the server's total concurrency limit (which must be positive) if --enable-priority-and-fairness is true. Otherwise, this flag limits the maximum number of non-mutating requests in flight, or a zero value disables the limit completely. (default 400)
      --min-request-timeout int                                 An optional field indicating the minimum number of seconds a handler must keep a request open before timing it out. Currently only honored by the watch request handler, which picks a randomized value above this number as the connection timeout, to spread out load. (default 1800)
      --permit-address-sharing                                  If true, SO_REUSEADDR will be used when binding the port. This allows binding to wildcard IPs like 0.0.0.0 and specific IPs in parallel, and it avoids waiting for the kernel to release sockets in TIME_WAIT state. [default=false]
      --permit-port-sharing                                     If true, SO_REUSEPORT will be used when binding the port, which allows more than one instance to bind on the same address and port. [default=false]
      --profiling                                               Enable profiling via web interface host:port/debug/pprof/ (default true)
      --proxy-client-cert-file string                           client certificate used identify the proxy to the API server
      --proxy-client-key-file string                            client certificate key used identify the proxy to the API server
      --request-timeout duration                                An optional field indicating the duration a handler must keep a request open before timing it out. This is the default request timeout for requests but may be overridden by flags such as --min-request-timeout for specific types of requests. (default 1m0s)
      --requestheader-allowed-names strings                     List of client certificate common names to allow to provide usernames in headers specified by --requestheader-username-headers. If empty, any client certificate validated by the authorities in --requestheader-client-ca-file is allowed.
      --requestheader-client-ca-file string                     Root certificate bundle to use to verify client certificates on incoming requests before trusting usernames in headers specified by --requestheader-username-headers. WARNING: generally do not depend on authorization being already done for incoming requests.
      --requestheader-extra-headers-prefix strings              List of request header prefixes to inspect. X-Remote-Extra- is suggested. (default [x-remote-extra-])
      --requestheader-group-headers strings                     List of request headers to inspect for groups. X-Remote-Group is suggested. (default [x-remote-group])
      --requestheader-uid-headers strings                       List of request headers to inspect for UIDs. X-Remote-Uid is suggested. Requires the RemoteRequestHeaderUID feature to be enabled.
      --requestheader-username-headers strings                  List of request headers to inspect for usernames. X-Remote-User is common. (default [x-remote-user])
      --runtime-config mapStringString                          A set of key=value pairs that enable or disable built-in APIs. Supported options are:
                                                                v1=true|false for the core API group
                                                                <group>/<version>=true|false for a specific API group and version (e.g. apps/v1=true)
                                                                api/all=true|false controls all API versions
                                                                api/ga=true|false controls all API versions of the form v[0-9]+
                                                                api/beta=true|false controls all API versions of the form v[0-9]+beta[0-9]+
                                                                api/alpha=true|false controls all API versions of the form v[0-9]+alpha[0-9]+
                                                                api/legacy is deprecated, and will be removed in a future version
      --runtime-config-emulation-forward-compatible             If true, APIs identified by group/version that are enabled in the --runtime-config flag will be installed even if it is introduced after the emulation version. If false, server would fail to start if any APIs identified by group/version that are enabled in the --runtime-config flag are introduced after the emulation version. Can only be set to true if the emulation version is lower than the binary version.
      --secure-port int                                         The port on which to serve HTTPS with authentication and authorization. If 0, don't serve HTTPS at all. (default 443)
      --shutdown-delay-duration duration                        Time to delay the termination. During that time the server keeps serving requests normally. The endpoints /healthz and /livez will return success, but /readyz immediately returns failure. Graceful termination starts after this delay has elapsed. This can be used to allow load balancer to stop sending traffic to this server.
      --shutdown-send-retry-after                               If true the HTTP Server will continue listening until all non long running request(s) in flight have been drained, during this window all incoming requests will be rejected with a status code 429 and a 'Retry-After' response header, in addition 'Connection: close' response header is set in order to tear down the TCP connection when idle.
      --shutdown-watch-termination-grace-period duration        This option, if set, represents the maximum amount of grace period the apiserver will wait for active watch request(s) to drain during the graceful server shutdown window.
      --storage-backend string                                  The storage backend for persistence. Options: 'etcd3' (default).
      --storage-initialization-timeout duration                 Maximum amount of time to wait for storage initialization before declaring apiserver ready. Defaults to 1m. (default 1m0s)
      --storage-media-type string                               The media type to use to store objects in storage. Some resources or storage backends may only support a specific media type and will ignore this setting. Supported media types: [application/json, application/yaml, application/vnd.kubernetes.protobuf] (default "application/json")
      --strict-transport-security-directives strings            List of directives for HSTS, comma separated. If this list is empty, then HSTS directives will not be added. Example: 'max-age=31536000,includeSubDomains,preload'
      --tls-cert-file string                                    File containing the default x509 Certificate for HTTPS. (CA cert, if any, concatenated after server cert). If HTTPS serving is enabled, and --tls-cert-file and --tls-private-key-file are not provided, a self-signed certificate and key are generated for the public address and saved to the directory specified by --cert-dir.
      --tls-cipher-suites strings                               Comma-separated list of cipher suites for the server. If omitted, the default Go cipher suites will be used.
                                                                Preferred values: TLS_AES_128_GCM_SHA256, TLS_AES_256_GCM_SHA384, TLS_CHACHA20_POLY1305_SHA256, TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA, TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256, TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA, TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384, TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305, TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305_SHA256, TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA, TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256, TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA, TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384, TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305, TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305_SHA256.
                                                                Insecure values: TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA256, TLS_ECDHE_ECDSA_WITH_RC4_128_SHA, TLS_ECDHE_RSA_WITH_3DES_EDE_CBC_SHA, TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256, TLS_ECDHE_RSA_WITH_RC4_128_SHA, TLS_RSA_WITH_3DES_EDE_CBC_SHA, TLS_RSA_WITH_AES_128_CBC_SHA, TLS_RSA_WITH_AES_128_CBC_SHA256, TLS_RSA_WITH_AES_128_GCM_SHA256, TLS_RSA_WITH_AES_256_CBC_SHA, TLS_RSA_WITH_AES_256_GCM_SHA384, TLS_RSA_WITH_RC4_128_SHA.
      --tls-min-version string                                  Minimum TLS version supported. Possible values: VersionTLS10, VersionTLS11, VersionTLS12, VersionTLS13
      --tls-private-key-file string                             File containing the default x509 private key matching --tls-cert-file.
      --tls-sni-cert-key namedCertKey                           A pair of x509 certificate and private key file paths, optionally suffixed with a list of domain patterns which are fully qualified domain names, possibly with prefixed wildcard segments. The domain patterns also allow IP addresses, but IPs should only be used if the apiserver has visibility to the IP address requested by a client. If no domain patterns are provided, the names of the certificate are extracted. Non-wildcard matches trump over wildcard matches, explicit domain patterns trump over extracted names. For multiple key/certificate pairs, use the --tls-sni-cert-key multiple times. Examples: "example.crt,example.key" or "foo.crt,foo.key:*.foo.com,foo.com". (default [])
      --tracing-config-file string                              File with apiserver tracing configuration.
  -v, --v Level                                                 number for the log level verbosity
      --vmodule moduleSpec                                      comma-separated list of pattern=N settings for file-filtered logging (only works for the default text log format)
      --watch-cache                                             Enable watch caching in the apiserver (default true)
      --watch-cache-sizes strings                               Watch cache size settings for some resources (pods, nodes, etc.), comma separated. The individual setting format: resource[.group]#size, where resource is lowercase plural (no version), group is omitted for resources of apiVersion v1 (the legacy core API) and included for others, and size is a number. This option is only meaningful for resources built into the apiserver, not ones defined by CRDs or aggregated from external servers, and is only consulted if the watch-cache is enabled. The only meaningful size setting to supply here is zero, which means to disable watch caching for the associated resource; all non-zero values are equivalent and mean to not disable watch caching for that resource

If files such as configuration file are needed, please share them.

Reference

@takumin takumin changed the title feat: add kubernetes/kube-aggregator feat: add kubernetes/kubernetes/kube-aggregator Apr 30, 2025
@suzuki-shunsuke suzuki-shunsuke added the enhancement New feature or request label Apr 30, 2025
name: kubernetes/kubernetes/kube-aggregator
version_filter: not (Version matches "-(alpha|beta|rc)")
# version_prefix: cli-
# all_assets_filter: not (Asset matches "-cli")

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

scaffold.yaml is unnecessary.
cmdx s supports only github_release type package.

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🙇

@suzuki-shunsuke suzuki-shunsuke added this to the v4.357.0 milestone May 1, 2025
@suzuki-shunsuke suzuki-shunsuke merged commit 8a54272 into aquaproj:main May 1, 2025
19 checks passed
@github-project-automation github-project-automation Bot moved this to Done in main May 1, 2025
@takumin takumin deleted the feat/kubernetes/kube-aggregator branch May 1, 2025 03:39
takumin added a commit to takumin/aqua-registry that referenced this pull request May 1, 2025
cmdx s (scaffold.yaml) supports only github_release type package.

see also: aquaproj#35734 (comment)
suzuki-shunsuke pushed a commit that referenced this pull request May 1, 2025
cmdx s (scaffold.yaml) supports only github_release type package.

see also: #35734 (comment)
tmeijn pushed a commit to tmeijn/dotfiles that referenced this pull request May 10, 2025
This MR contains the following updates:

| Package | Update | Change |
|---|---|---|
| [aquaproj/aqua-registry](https://github.com/aquaproj/aqua-registry) | minor | `v4.353.0` -> `v4.363.0` |

MR created with the help of [el-capitano/tools/renovate-bot](https://gitlab.com/el-capitano/tools/renovate-bot).

**Proposed changes to behavior should be submitted there as MRs.**

---

### Release Notes

<details>
<summary>aquaproj/aqua-registry (aquaproj/aqua-registry)</summary>

### [`v4.363.0`](https://github.com/aquaproj/aqua-registry/releases/tag/v4.363.0)

[Compare Source](aquaproj/aqua-registry@v4.362.0...v4.363.0)

[Issues](https://github.com/aquaproj/aqua-registry/issues?q=is%3Aissue+milestone%3Av4.363.0) | [Merge Requests](https://github.com/aquaproj/aqua-registry/pulls?q=is%3Apr+milestone%3Av4.363.0) | aquaproj/aqua-registry@v4.362.0...v4.363.0

#### 🎉 New Packages

[#&#8203;36220](aquaproj/aqua-registry#36220) [mozilla/grcov](https://github.com/mozilla/grcov): Rust tool to collect and aggregate code coverage data for multiple source files [@&#8203;takumin](https://github.com/takumin)
[#&#8203;36225](aquaproj/aqua-registry#36225) [qnighy/clippy-reviewdog-filter](https://github.com/qnighy/clippy-reviewdog-filter): A filter for integrating Clippy with Reviewdog [@&#8203;takumin](https://github.com/takumin)
[#&#8203;36218](aquaproj/aqua-registry#36218) [taiki-e/cargo-llvm-cov](https://github.com/taiki-e/cargo-llvm-cov): Cargo subcommand to easily use LLVM source-based code coverage (-C instrument-coverage) [@&#8203;takumin](https://github.com/takumin)

#### Fixes

[#&#8203;36205](aquaproj/aqua-registry#36205) Re-scaffold google/go-jsonnet

### [`v4.362.0`](https://github.com/aquaproj/aqua-registry/releases/tag/v4.362.0)

[Compare Source](aquaproj/aqua-registry@v4.361.0...v4.362.0)

[Issues](https://github.com/aquaproj/aqua-registry/issues?q=is%3Aissue+milestone%3Av4.362.0) | [Merge Requests](https://github.com/aquaproj/aqua-registry/pulls?q=is%3Apr+milestone%3Av4.362.0) | aquaproj/aqua-registry@v4.361.0...v4.362.0

#### 🎉 New Packages

[#&#8203;36119](aquaproj/aqua-registry#36119) [k1LoW/deck](https://github.com/k1LoW/deck) - deck is a tool for creating deck using Markdown and Google Slides [@&#8203;yashikota](https://github.com/yashikota)
[#&#8203;36146](aquaproj/aqua-registry#36146) [nil0x42/dnsanity](https://github.com/nil0x42/dnsanity): High-performance DNS validator using template-based verification [@&#8203;takumin](https://github.com/takumin)

#### Security

[#&#8203;36152](aquaproj/aqua-registry#36152) dhth/bmm: Configure GitHub Artifact Attestations [@&#8203;scop](https://github.com/scop)

#### Fixes

[#&#8203;36113](aquaproj/aqua-registry#36113) xo/xo: rename the package to xo/dbtpl

### [`v4.361.0`](https://github.com/aquaproj/aqua-registry/releases/tag/v4.361.0)

[Compare Source](aquaproj/aqua-registry@v4.360.0...v4.361.0)

[Issues](https://github.com/aquaproj/aqua-registry/issues?q=is%3Aissue+milestone%3Av4.361.0) | [Merge Requests](https://github.com/aquaproj/aqua-registry/pulls?q=is%3Apr+milestone%3Av4.361.0) | aquaproj/aqua-registry@v4.360.0...v4.361.0

#### 🎉 New Packages

[#&#8203;36073](aquaproj/aqua-registry#36073) [dyne/zenroom](https://github.com/dyne/zenroom) - Embedded no-code VM executing human-like language to manipulate data and process cryptographic operations [@&#8203;matteo-cristino](https://github.com/matteo-cristino)

### [`v4.360.0`](https://github.com/aquaproj/aqua-registry/releases/tag/v4.360.0)

[Compare Source](aquaproj/aqua-registry@v4.359.0...v4.360.0)

[Issues](https://github.com/aquaproj/aqua-registry/issues?q=is%3Aissue+milestone%3Av4.360.0) | [Merge Requests](https://github.com/aquaproj/aqua-registry/pulls?q=is%3Apr+milestone%3Av4.360.0) | aquaproj/aqua-registry@v4.359.0...v4.360.0

#### 🎉 New Packages

[#&#8203;35949](aquaproj/aqua-registry#35949) [yashikota/genenv](https://github.com/yashikota/genenv) - A simple CLI tool to generate .env files from template files, automatically filling in placeholders with cryptographically secure random values [@&#8203;yashikota](https://github.com/yashikota)
[#&#8203;35931](aquaproj/aqua-registry#35931) [actions/go-versions](https://github.com/actions/go-versions): Go releases for Actions Runner Images

#### Fixes

[#&#8203;35913](aquaproj/aqua-registry#35913) Rename rust-lang/rustup/rustup-init to rust-lang/rustup [@&#8203;takumin](https://github.com/takumin)

#### Security

[#&#8203;35947](aquaproj/aqua-registry#35947) containerd/nerdctl: Configure GitHub Artifact Attestations [@&#8203;scop](https://github.com/scop)

### [`v4.359.0`](https://github.com/aquaproj/aqua-registry/releases/tag/v4.359.0)

[Compare Source](aquaproj/aqua-registry@v4.358.0...v4.359.0)

[Issues](https://github.com/aquaproj/aqua-registry/issues?q=is%3Aissue+milestone%3Av4.359.0) | [Merge Requests](https://github.com/aquaproj/aqua-registry/pulls?q=is%3Apr+milestone%3Av4.359.0) | aquaproj/aqua-registry@v4.358.0...v4.359.0

#### 🎉 New Packages

[#&#8203;35909](aquaproj/aqua-registry#35909) [reproio/terraform-j2md](https://github.com/reproio/terraform-j2md): create readable terraform plan as markdown text from json plan output
[#&#8203;35901](aquaproj/aqua-registry#35901) [rust-lang/rustup/rustup-init](https://github.com/rust-lang/rustup): The installer for rustup [@&#8203;takumin](https://github.com/takumin)
[#&#8203;35508](aquaproj/aqua-registry#35508) [openfga/cli](https://github.com/openfga/cli) - A cross-platform CLI to interact with an OpenFGA server [@&#8203;kaz](https://github.com/kaz)

#### Re-scaffold

[#&#8203;35883](aquaproj/aqua-registry#35883) ahmetb/kubectx
[#&#8203;35685](aquaproj/aqua-registry#35685) utkuozdemir/pv-migrate
[#&#8203;35682](aquaproj/aqua-registry#35682) updatecli/updatecli
[#&#8203;35681](aquaproj/aqua-registry#35681) txn2/kubefwd

### [`v4.358.0`](https://github.com/aquaproj/aqua-registry/releases/tag/v4.358.0)

[Compare Source](aquaproj/aqua-registry@v4.357.0...v4.358.0)

[Issues](https://github.com/aquaproj/aqua-registry/issues?q=is%3Aissue+milestone%3Av4.358.0) | [Merge Requests](https://github.com/aquaproj/aqua-registry/pulls?q=is%3Apr+milestone%3Av4.358.0) | aquaproj/aqua-registry@v4.357.0...v4.358.0

#### 🎉 New Packages

[#&#8203;35859](aquaproj/aqua-registry#35859) [Shopify/shadowenv](https://github.com/Shopify/shadowenv): reversible directory-local environment variable manipulations [@&#8203;takumin](https://github.com/takumin)

#### Fixes

[#&#8203;35875](aquaproj/aqua-registry#35875) luau-lang/luau: Restrict darwin support to arm64 (luau >= 0.645) [@&#8203;rhanneken](https://github.com/rhanneken)
[#&#8203;35875](aquaproj/aqua-registry#35875) luau-lang/luau: Support old versions
[#&#8203;35863](aquaproj/aqua-registry#35863) moby/buildkit: Support buildkitd [@&#8203;takumin](https://github.com/takumin)
[#&#8203;35861](aquaproj/aqua-registry#35861) theryangeary/choose: Re-scaffold [@&#8203;haya14busa](https://github.com/haya14busa)
[#&#8203;35684](aquaproj/aqua-registry#35684) Re-scaffold upx/upx

### [`v4.357.0`](https://github.com/aquaproj/aqua-registry/releases/tag/v4.357.0)

[Compare Source](aquaproj/aqua-registry@v4.356.0...v4.357.0)

[Issues](https://github.com/aquaproj/aqua-registry/issues?q=is%3Aissue+milestone%3Av4.357.0) | [Merge Requests](https://github.com/aquaproj/aqua-registry/pulls?q=is%3Apr+milestone%3Av4.357.0) | aquaproj/aqua-registry@v4.356.0...v4.357.0

#### 🎉 New Packages

[#&#8203;35845](aquaproj/aqua-registry#35845) [luau-lang/luau](https://github.com/luau-lang/luau): A fast, small, safe, gradually typed embeddable scripting language derived from Lua [@&#8203;rhanneken](https://github.com/rhanneken)
[#&#8203;35841](aquaproj/aqua-registry#35841) [GoogleCloudPlatform/kubectl-ai](https://github.com/GoogleCloudPlatform/kubectl-ai): AI powered Kubernetes Assistant [@&#8203;takumin](https://github.com/takumin)
[#&#8203;35840](aquaproj/aqua-registry#35840) [kubernetes/node-problem-detector](https://github.com/kubernetes/node-problem-detector): This is a place for various problem detectors running on the Kubernetes nodes [@&#8203;takumin](https://github.com/takumin)
[#&#8203;35736](aquaproj/aqua-registry#35736) [kubernetes/kubernetes/apiextensions-apiserver](https://github.com/kubernetes/apiextensions-apiserver): API server for API extensions like CustomResourceDefinitions [@&#8203;takumin](https://github.com/takumin)
[#&#8203;35734](aquaproj/aqua-registry#35734) [kubernetes/kubernetes/kube-aggregator](https://github.com/kubernetes/kube-aggregator): Aggregator for Kubernetes-style API servers: dynamic registration, discovery summarization, secure proxy [@&#8203;takumin](https://github.com/takumin)
[#&#8203;35727](aquaproj/aqua-registry#35727) [kubernetes/kubernetes/kube-scheduler](https://github.com/kubernetes/kube-scheduler): The Kubernetes scheduler is a control plane process which assigns Pods to Nodes [@&#8203;takumin](https://github.com/takumin)
[#&#8203;35726](aquaproj/aqua-registry#35726) [kubernetes/kubernetes/kube-controller-manager](https://github.com/kubernetes/kube-controller-manager): The Kubernetes controller manager is a daemon that embeds the core control loops shipped with Kubernetes [@&#8203;takumin](https://github.com/takumin)
[#&#8203;35725](aquaproj/aqua-registry#35725) [kubernetes/kubernetes/kube-apiserver](https://github.com/kubernetes/kube-apiserver): The Kubernetes API server validates and configures data for the api objects which include pods, services, replicationcontrollers, and others [@&#8203;takumin](https://github.com/takumin)
[#&#8203;35714](aquaproj/aqua-registry#35714) [kubernetes/kubernetes/kube-log-runner](https://github.com/kubernetes/kube-log-runner): The kube-log-runner is a Go based binary that can run commands and redirect stdout/stderr etc [@&#8203;takumin](https://github.com/takumin)
[#&#8203;35698](aquaproj/aqua-registry#35698) [containerd/stargz-snapshotter](https://github.com/containerd/stargz-snapshotter): Fast container image distribution plugin with lazy pulling [@&#8203;takumin](https://github.com/takumin)

#### Renaming

:warning: Old names are still available as aliases.

[#&#8203;35837](aquaproj/aqua-registry#35837) Rename `kubernetes/kubectl` to `kubernetes/kubernetes/kubectl` [@&#8203;takumin](https://github.com/takumin)
[#&#8203;35709](aquaproj/aqua-registry#35709) Rename `kubernetes/kubeadm` to `kubernetes/kubernetes/kubeadm` [@&#8203;takumin](https://github.com/takumin)
[#&#8203;35707](aquaproj/aqua-registry#35707) Rename `kubernetes/kubectl-convert` to `kubernetes/kubernetes/kubectl-convert` [@&#8203;takumin](https://github.com/takumin)

#### Security

[#&#8203;35740](aquaproj/aqua-registry#35740) [k0sproject/k0s](https://github.com/k0sproject/k0s) Configure Cosign [@&#8203;takumin](https://github.com/takumin)
[#&#8203;35711](aquaproj/aqua-registry#35711) kubernetes/minikube: Configure Checksum [@&#8203;takumin](https://github.com/takumin)
[#&#8203;35707](aquaproj/aqua-registry#35707) kubernetes/kubernetes/kubectl-convert Configure Cosign [@&#8203;takumin](https://github.com/takumin)

### [`v4.356.0`](https://github.com/aquaproj/aqua-registry/releases/tag/v4.356.0)

[Compare Source](aquaproj/aqua-registry@v4.355.0...v4.356.0)

[Issues](https://github.com/aquaproj/aqua-registry/issues?q=is%3Aissue+milestone%3Av4.356.0) | [Merge Requests](https://github.com/aquaproj/aqua-registry/pulls?q=is%3Apr+milestone%3Av4.356.0) | aquaproj/aqua-registry@v4.355.0...v4.356.0

#### 🎉 New Packages

[#&#8203;35835](aquaproj/aqua-registry#35835) [k1LoW/coglet](https://github.com/k1LoW/coglet): coglet is a tool for User pool of Amazon Cognito [@&#8203;k1LoW](https://github.com/k1LoW)
[#&#8203;35712](aquaproj/aqua-registry#35712) [kubernetes/kubernetes/kubelet](https://github.com/kubernetes/kubelet): The kubelet is the primary "node agent" that runs on each node [@&#8203;takumin](https://github.com/takumin)

#### Fixes

[#&#8203;35822](aquaproj/aqua-registry#35822) Praqma/helmsman: Rename the package to mkubaczyk/helmsman

The GitHub Repository of the package "Praqma/helmsman" was transferred from [Praqma/helmsman](https://github.com/Praqma/helmsman) to [mkubaczyk/helmsman](https://github.com/mkubaczyk/helmsman).

[#&#8203;35805](aquaproj/aqua-registry#35805) syumai/sbx

#### Re-scaffold

Re-scaffolded 5 packages to improve the quality.

### [`v4.355.0`](https://github.com/aquaproj/aqua-registry/releases/tag/v4.355.0)

[Compare Source](aquaproj/aqua-registry@v4.354.0...v4.355.0)

[Issues](https://github.com/aquaproj/aqua-registry/issues?q=is%3Aissue+milestone%3Av4.355.0) | [Merge Requests](https://github.com/aquaproj/aqua-registry/pulls?q=is%3Apr+milestone%3Av4.355.0) | aquaproj/aqua-registry@v4.354.0...v4.355.0

#### 🎉 New Packages

[#&#8203;35777](aquaproj/aqua-registry#35777) [#&#8203;35795](aquaproj/aqua-registry#35795) [VictoriaMetrics/VictoriaMetrics/vmutils](https://github.com/VictoriaMetrics/VictoriaMetrics): VictoriaMetrics: fast, cost-effective monitoring solution and time series database [@&#8203;ushitora-anqou](https://github.com/ushitora-anqou)

#### Fixes

[#&#8203;35785](aquaproj/aqua-registry#35785) greymd/teip: Replace arm64 to aarch64 [@&#8203;haya14busa](https://github.com/haya14busa)

#### Security

GitHub artifact attestations config

[#&#8203;35791](aquaproj/aqua-registry#35791) itamae-kitchen/mitamae [@&#8203;scop](https://github.com/scop)
[#&#8203;35789](aquaproj/aqua-registry#35789) kubecolor/kubecolor [@&#8203;scop](https://github.com/scop)

#### Re-scaffold

Re-scaffolded 47 packages to improve the quality.

### [`v4.354.0`](https://github.com/aquaproj/aqua-registry/releases/tag/v4.354.0)

[Compare Source](aquaproj/aqua-registry@v4.353.0...v4.354.0)

[Issues](https://github.com/aquaproj/aqua-registry/issues?q=is%3Aissue+milestone%3Av4.354.0) | [Merge Requests](https://github.com/aquaproj/aqua-registry/pulls?q=is%3Apr+milestone%3Av4.354.0) | aquaproj/aqua-registry@v4.353.0...v4.354.0

#### 🎉 New Packages

[#&#8203;35744](aquaproj/aqua-registry#35744) [containers/conmon](https://github.com/containers/conmon): An OCI container runtime monitor [@&#8203;takumin](https://github.com/takumin)
[#&#8203;35742](aquaproj/aqua-registry#35742) [k3s-io/k3s](https://github.com/k3s-io/k3s): Lightweight Kubernetes [@&#8203;takumin](https://github.com/takumin)
[#&#8203;35701](aquaproj/aqua-registry#35701) [liquidmetal-dev/flintlock/flintlock-metrics](https://github.com/liquidmetal-dev/flintlock): Lock, Stock, and Two Smoking MicroVMs. Create and manage the lifecycle of MicroVMs backed by containerd [@&#8203;takumin](https://github.com/takumin)
[#&#8203;35699](aquaproj/aqua-registry#35699) [liquidmetal-dev/flintlock/flintlockd](https://github.com/liquidmetal-dev/flintlock): Lock, Stock, and Two Smoking MicroVMs. Create and manage the lifecycle of MicroVMs backed by containerd [@&#8203;takumin](https://github.com/takumin)
[#&#8203;35635](aquaproj/aqua-registry#35635) [syumai/sbx](https://github.com/syumai/sbx): an easy-to-use command-line tool for running commands with macOS sandbox-exec policies using flag-based interface

#### Re-scaffold

Re-scaffolded 117 packages to improve the quality.

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied.

♻ **Rebasing**: Whenever MR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 **Ignore**: Close this MR and you won't be reminded about this update again.

---

 - [ ] <!-- rebase-check -->If you want to rebase/retry this MR, check this box

---

This MR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4yNjEuMSIsInVwZGF0ZWRJblZlciI6IjQwLjEwLjQiLCJ0YXJnZXRCcmFuY2giOiJtYWluIiwibGFiZWxzIjpbIlJlbm92YXRlIEJvdCJdfQ==-->
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

enhancement New feature or request

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants