Ecosyste.ms: Packages

An open API service providing package, version and dependency metadata of many open source software ecosystems and registries.

Top 0.1% on proxy.golang.org
Top 0.1% dependent packages on proxy.golang.org
Top 0.1% dependent repos on proxy.golang.org
Top 0.1% forks on proxy.golang.org
Top 0.2% docker downloads on proxy.golang.org

proxy.golang.org : go.etcd.io/etcd/raft/v3

Package raft sends and receives messages in the Protocol Buffer format defined in the raftpb package. Raft is a protocol with which a cluster of nodes can maintain a replicated state machine. The state machine is kept in sync through the use of a replicated log. For more details on Raft, see "In Search of an Understandable Consensus Algorithm" (https://raft.github.io/raft.pdf) by Diego Ongaro and John Ousterhout. A simple example application, _raftexample_, is also available to help illustrate how to use this package in practice: https://github.com/etcd-io/etcd/tree/main/contrib/raftexample The primary object in raft is a Node. You either start a Node from scratch using raft.StartNode or start a Node from some initial state using raft.RestartNode. To start a node from scratch: To restart a node from previous state: Now that you are holding onto a Node you have a few responsibilities: First, you must read from the Node.Ready() channel and process the updates it contains. These steps may be performed in parallel, except as noted in step 2. 1. Write HardState, Entries, and Snapshot to persistent storage if they are not empty. Note that when writing an Entry with Index i, any previously-persisted entries with Index >= i must be discarded. 2. Send all Messages to the nodes named in the To field. It is important that no messages be sent until the latest HardState has been persisted to disk, and all Entries written by any previous Ready batch (Messages may be sent while entries from the same batch are being persisted). To reduce the I/O latency, an optimization can be applied to make leader write to disk in parallel with its followers (as explained at section 10.2.1 in Raft thesis). If any Message has type MsgSnap, call Node.ReportSnapshot() after it has been sent (these messages may be large). Note: Marshalling messages is not thread-safe; it is important that you make sure that no new entries are persisted while marshalling. The easiest way to achieve this is to serialize the messages directly inside your main raft loop. 3. Apply Snapshot (if any) and CommittedEntries to the state machine. If any committed Entry has Type EntryConfChange, call Node.ApplyConfChange() to apply it to the node. The configuration change may be cancelled at this point by setting the NodeID field to zero before calling ApplyConfChange (but ApplyConfChange must be called one way or the other, and the decision to cancel must be based solely on the state machine and not external information such as the observed health of the node). 4. Call Node.Advance() to signal readiness for the next batch of updates. This may be done at any time after step 1, although all updates must be processed in the order they were returned by Ready. Second, all persisted log entries must be made available via an implementation of the Storage interface. The provided MemoryStorage type can be used for this (if you repopulate its state upon a restart), or you can supply your own disk-backed implementation. Third, when you receive a message from another node, pass it to Node.Step: Finally, you need to call Node.Tick() at regular intervals (probably via a time.Ticker). Raft has two important timeouts: heartbeat and the election timeout. However, internally to the raft package time is represented by an abstract "tick". The total state machine handling loop will look something like this: To propose changes to the state machine from your node take your application data, serialize it into a byte slice and call: If the proposal is committed, data will appear in committed entries with type raftpb.EntryNormal. There is no guarantee that a proposed command will be committed; you may have to re-propose after a timeout. To add or remove a node in a cluster, build ConfChange struct 'cc' and call: After config change is committed, some committed entry with type raftpb.EntryConfChange will be returned. You must apply it to node through: Note: An ID represents a unique node in a cluster for all time. A given ID MUST be used only once even if the old node has been removed. This means that for example IP addresses make poor node IDs since they may be reused. Node IDs must be non-zero. This implementation is up to date with the final Raft thesis (https://github.com/ongardie/dissertation/blob/master/stanford.pdf), although our implementation of the membership change protocol differs somewhat from that described in chapter 4. The key invariant that membership changes happen one node at a time is preserved, but in our implementation the membership change takes effect when its entry is applied, not when it is added to the log (so the entry is committed under the old membership instead of the new). This is equivalent in terms of safety, since the old and new configurations are guaranteed to overlap. To ensure that we do not attempt to commit two membership changes at once by matching log positions (which would be unsafe since they should have different quorum requirements), we simply disallow any proposed membership change while any uncommitted change appears in the leader's log. This approach introduces a problem when you try to remove a member from a two-member cluster: If one of the members dies before the other one receives the commit of the confchange entry, then the member cannot be removed any more since the cluster cannot make progress. For this reason it is highly recommended to use three or more nodes in every cluster. Package raft sends and receives message in Protocol Buffer format (defined in raftpb package). Each state (follower, candidate, leader) implements its own 'step' method ('stepFollower', 'stepCandidate', 'stepLeader') when advancing with the given raftpb.Message. Each step is determined by its raftpb.MessageType. Note that every step is checked by one common method 'Step' that safety-checks the terms of node and incoming message to prevent stale log entries:

Registry - Source - Documentation - JSON
purl: pkg:golang/go.etcd.io/etcd/raft/v3
Keywords: cncf, consensus, database, distributed-database, distributed-systems, etcd, go, key-value, kubernetes, raft
License: Apache-2.0
Latest release: 2 months ago
First release: over 3 years ago
Namespace: go.etcd.io/etcd/raft
Dependent packages: 938
Dependent repositories: 14,238
Stars: 42,922 on GitHub
Forks: 9,126 on GitHub
Docker dependents: 514
Docker downloads: 6,654,863,582
See more repository details: repos.ecosyste.ms
Last synced: about 19 hours ago

github.com/tc-sdn/etcd-tests v1.0.16
17 versions - Latest release: 15 days ago - 0 stars on GitHub
github.com/pluralsh/cluster-api-migration v0.2.16
30 versions - Latest release: 16 days ago - 0 stars on GitHub
Top 8.2% on proxy.golang.org
github.com/findy-network/findy-agent-cli v0.25.140
CLI tool for Findy agency
186 versions - Latest release: 17 days ago - 4 stars on GitHub
Top 8.2% on proxy.golang.org
github.com/gatecheckdev/gatecheck v0.6.2
Gatecheck CI/CD Validation Tool
29 versions - Latest release: 18 days ago - 7 stars on GitHub
Top 3.4% on proxy.golang.org
github.com/k3s-io/kubernetes/staging/src/k8s.io/apiserver v1.30.1-k3s1
177 versions - Latest release: 18 days ago - 104 dependent repositories
Top 5.9% on proxy.golang.org
github.com/k3s-io/kubernetes/staging/src/k8s.io/apiextensions-apiserver v1.30.1-k3s1
Production-Grade Container Scheduling and Management
177 versions - Latest release: 18 days ago - 102 dependent repositories - 4 stars on GitHub
Top 9.9% on proxy.golang.org
github.com/siderolabs/image-factory v0.4.1
A service to generate Talos boot assets
18 versions - Latest release: 18 days ago - 1 dependent package - 7 stars on GitHub
Top 1.2% on proxy.golang.org
github.com/spiffe/spire v1.9.6
The SPIFFE Runtime Environment
85 versions - Latest release: 19 days ago - 29 dependent packages - 40 dependent repositories - 1,370 stars on GitHub
Top 1.0% on proxy.golang.org
github.com/kubernetes/kubernetes v1.30.1
Production-Grade Container Scheduling and Management
1,089 versions - Latest release: 19 days ago - 4 dependent packages - 15 dependent repositories - 96,806 stars on GitHub
Top 8.2% on proxy.golang.org
github.com/googlecloudplatform/kubernetes v1.30.1
Production-Grade Container Scheduling and Management
1,088 versions - Latest release: 19 days ago - 96,806 stars on GitHub
Top 9.0% on proxy.golang.org
github.com/scaling-lightning/scaling-lightning v0.4.0
A Testing Toolkit for the Lightning Network
41 versions - Latest release: 19 days ago - 36 stars on GitHub
Top 3.8% on proxy.golang.org
github.com/googlecontainertools/kaniko v1.23.0
Build Container Images In Kubernetes
59 versions - Latest release: 19 days ago - 12,003 stars on GitHub
Top 6.4% on proxy.golang.org
github.com/milvus-io/birdwatcher v1.0.4
16 versions - Latest release: 20 days ago - 18 stars on GitHub
Top 2.0% on proxy.golang.org
github.com/pachyderm/pachyderm/v2 v2.9.6
Data-Centric Pipelines and Data Versioning
583 versions - Latest release: 20 days ago - 2 dependent packages - 8 dependent repositories - 5,909 stars on GitHub
Top 2.9% on proxy.golang.org
github.com/sigstore/gitsign v0.10.2
Keyless Git signing using Sigstore
24 versions - Latest release: 20 days ago - 2 dependent packages - 3 dependent repositories - 783 stars on GitHub
Top 3.0% on proxy.golang.org
github.com/rabbitmq/messaging-topology-operator v1.14.1
RabbitMQ messaging topology operator
39 versions - Latest release: 23 days ago - 4 dependent packages - 4 dependent repositories - 75 stars on GitHub
Top 5.1% on proxy.golang.org
github.com/eolinker/apinto v0.17.2
基于golang开发的网关。具有各种插件,可以自行扩展,即插即用。此外,它可以快速帮助企业管理API服务,提高API服务的稳定性和安全性。
63 versions - Latest release: 23 days ago - 504 stars on GitHub
Top 8.5% on proxy.golang.org
github.com/vmware-tanzu/tanzu-cli v1.3.0
79 versions - Latest release: 24 days ago - 2 dependent packages
Top 1.1% on proxy.golang.org
github.com/anchore/grype v0.77.4
A vulnerability scanner for container images and filesystems
143 versions - Latest release: 24 days ago - 50 dependent packages - 14 dependent repositories - 5,389 stars on GitHub
Top 0.7% on proxy.golang.org
github.com/anchore/syft v1.4.1
CLI tool and library for generating a Software Bill of Materials from container images and filesy...
200 versions - Latest release: 24 days ago - 217 dependent packages - 179 dependent repositories - 3,878 stars on GitHub
Top 1.3% on proxy.golang.org
github.com/rancher/kine v0.11.9
Run Kubernetes on MySQL, Postgres, sqlite, dqlite, not etcd.
61 versions - Latest release: 24 days ago - 39 dependent packages - 33 dependent repositories - 901 stars on GitHub
Top 1.2% on proxy.golang.org
github.com/k3s-io/kine v0.11.9
Run Kubernetes on MySQL, Postgres, sqlite, dqlite, not etcd.
61 versions - Latest release: 24 days ago - 26 dependent packages - 137 dependent repositories - 936 stars on GitHub
Top 1.8% on proxy.golang.org
github.com/replicatedhq/kots v1.109.0
KOTS provides the framework, tools and integrations that enable the delivery and management of 3r...
352 versions - Latest release: 24 days ago - 16 dependent packages - 27 dependent repositories - 807 stars on GitHub
Top 8.7% on proxy.golang.org
kubepack.dev/lib-app v0.0.22
22 versions - Latest release: 24 days ago - 2 dependent packages - 2 dependent repositories - 2 stars on GitHub
Top 8.6% on proxy.golang.org
github.com/chainloop-dev/chainloop v0.86.0
Chainloop is an open source software supply chain control plane, a single source of truth for art...
53 versions - Latest release: 25 days ago - 98 stars on GitHub
Top 3.8% on proxy.golang.org
github.com/defenseunicorns/zarf v0.33.2
Package main is the entrypoint for the Zarf binary.
131 versions - Latest release: 25 days ago - 6 dependent packages - 1 dependent repositories - 589 stars on GitHub
Top 4.3% on proxy.golang.org
github.com/LightningNetwork/lnd v0.18.0-beta.rc2
Lightning Network Daemon ⚡️
162 versions - Latest release: 26 days ago - 6,783 stars on GitHub
Top 3.7% on proxy.golang.org
github.com/cilium/cilium-cli v0.16.7
CLI to install, manage & troubleshoot Kubernetes clusters running Cilium
88 versions - Latest release: 27 days ago - 2 dependent packages - 1 dependent repositories - 206 stars on GitHub
github.com/djkazic/btcwallet v1.7.2
A secure bitcoin wallet daemon written in Go (golang)
183 versions - Latest release: 29 days ago - 2 dependent packages - 1 dependent repositories - 0 stars on GitHub
Top 2.4% on proxy.golang.org
github.com/kubernetes-sigs/cri-o v1.30.0
Open Container Initiative-based implementation of Kubernetes Container Runtime Interface
207 versions - Latest release: 30 days ago - 1 dependent package - 4 dependent repositories - 4,453 stars on GitHub
Top 2.5% on proxy.golang.org
github.com/cri-o/cri-o v1.30.0
Open Container Initiative-based implementation of Kubernetes Container Runtime Interface
207 versions - Latest release: 30 days ago - 1 dependent package - 61 dependent repositories - 4,515 stars on GitHub
Top 1.7% on proxy.golang.org
github.com/fluxcd/source-controller v1.3.0
The GitOps Toolkit source management component
139 versions - Latest release: about 1 month ago - 38 dependent packages - 40 dependent repositories - 190 stars on GitHub
Top 9.5% on proxy.golang.org
github.com/effective-security/xpki v0.19.158
Library for working with certificates and keys
22 versions - Latest release: about 1 month ago - 7 dependent packages - 1 dependent repositories - 0 stars on GitHub
Top 9.7% on proxy.golang.org
github.com/findy-network/findy-agent-auth v0.2.96
Authentication services for Findy agency
148 versions - Latest release: about 1 month ago - 5 dependent packages - 2 dependent repositories - 5 stars on GitHub
Top 1.2% on proxy.golang.org
github.com/kyverno/kyverno v1.12.1
Kubernetes Native Policy Management
222 versions - Latest release: about 1 month ago - 21 dependent packages - 16 dependent repositories - 3,795 stars on GitHub
Top 7.1% on proxy.golang.org
github.com/kubestellar/kubestellar v0.22.0
KubeStellar - a flexible solution for challenges associated with multi-cluster configuration mana...
37 versions - Latest release: about 1 month ago - 86 stars on GitHub
Top 8.2% on proxy.golang.org
github.com/deislabs/hora v1.1.1
22 versions - Latest release: about 1 month ago
Top 1.3% on proxy.golang.org
github.com/talos-systems/talos v1.7.1
Talos Linux is a modern Linux distribution built for Kubernetes.
289 versions - Latest release: about 1 month ago - 21 dependent packages - 16 dependent repositories - 3,705 stars on GitHub
Top 3.4% on proxy.golang.org
github.com/siderolabs/talos v1.7.1 💰
Talos Linux is a modern Linux distribution built for Kubernetes.
292 versions - Latest release: about 1 month ago - 1 dependent package - 1 dependent repositories - 3,806 stars on GitHub
Top 6.6% on proxy.golang.org
github.com/kubescape/kubevuln v0.3.18
Kubevuln is an in-cluster component of the Kubescape security platform. It scans container images...
55 versions - Latest release: about 1 month ago - 7 stars on GitHub
Top 4.8% on proxy.golang.org
gopkg.in/kubermatic/kubermatic.v2 v2.25.3
Kubermatic Kubernetes Platform - the Central Kubernetes Management Platform For Any Infrastructure
336 versions - Latest release: about 1 month ago - 1,020 stars on GitHub
Top 5.8% on proxy.golang.org
github.com/kubernetes-incubator/cri-o v1.29.4
206 versions - Latest release: about 1 month ago - 6 dependent repositories
Top 2.3% on proxy.golang.org
github.com/gomods/athens v0.14.0
A Go module datastore and proxy
25 versions - Latest release: about 1 month ago - 5 dependent packages - 1 dependent repositories - 4,069 stars on GitHub
github.com/planktoscope/forklift v0.7.1
Experimental prototype of tooling to manage local installations of Pallet packages
29 versions - Latest release: about 1 month ago - 0 stars on GitHub
github.com/PlanktoScope/forklift v0.7.1
Experimental prototype of tooling to manage local installations of Pallet packages
28 versions - Latest release: about 1 month ago - 0 stars on GitHub
github.com/djcass44/ci-tools v1.7.5
34 versions - Latest release: about 1 month ago - 2 dependent packages - 0 stars on GitHub
Top 4.2% on proxy.golang.org
github.com/lightninglabs/lightning-terminal v0.12.5-alpha
Lightning Terminal: Your Home for Lightning Liquidity
60 versions - Latest release: about 1 month ago - 1 dependent package - 1 dependent repositories - 362 stars on GitHub
Top 5.6% on proxy.golang.org
github.com/guggero/chantools v0.13.1
A loose collection of tools all somehow related to lnd and Lightning Network channels.
41 versions - Latest release: about 1 month ago - 136 stars on GitHub
github.com/tochemey/goakt v1.6.3
[Go] Minimal actor framework with goodies using protocol buffers as message for Golang
42 versions - Latest release: about 1 month ago - 1 dependent package - 1 dependent repositories - 4 stars on GitHub
Top 7.4% on proxy.golang.org
github.com/xeol-io/xeol v0.9.15
A scanner for end-of-life (EOL) software in container images, filesystems, and SBOMs
51 versions - Latest release: about 1 month ago - 204 stars on GitHub
Top 6.4% on proxy.golang.org
github.com/radius-project/radius v0.33.0
Radius is a cloud-native, portable application platform that makes app development easier for tea...
98 versions - Latest release: about 1 month ago - 801 stars on GitHub
Top 9.8% on proxy.golang.org
github.com/project-radius/radius v0.33.0
Radius is a cloud-native, portable application platform that makes app development easier for tea...
98 versions - Latest release: about 1 month ago - 660 stars on GitHub
Top 6.3% on proxy.golang.org
github.com/kong/gateway-operator v1.2.3
Kubernetes Operator for Kong Gateways
29 versions - Latest release: about 1 month ago - 14 stars on
Top 5.4% on proxy.golang.org
github.com/lightninglabs/kirin v0.3.2-beta
23 versions - Latest release: about 1 month ago - 11 dependent packages
Top 2.4% on proxy.golang.org
github.com/lightninglabs/aperture v0.3.2-beta
⚡️HTTP 402 Lightning Service Authentication Token Reverse Proxy ⚡️
23 versions - Latest release: about 1 month ago - 26 dependent packages - 16 dependent repositories - 154 stars on GitHub
Top 6.6% on proxy.golang.org
github.com/lightninglabs/lndinit v0.1.20-beta
cloud infra tooling for lnd provisioning/unlocking
21 versions - Latest release: about 1 month ago - 17 stars on GitHub
Top 1.4% on proxy.golang.org
k8s.io/release v0.16.9
Release infrastructure for Kubernetes and related components
44 versions - Latest release: about 1 month ago - 34 dependent packages - 170 dependent repositories - 434 stars on GitHub
Top 4.7% on proxy.golang.org
github.com/kubernetes/release v0.16.9
Release infrastructure for Kubernetes and related components
44 versions - Latest release: about 1 month ago - 435 stars on GitHub
Top 8.3% on proxy.golang.org
github.com/findy-network/findy-agent-backchannel v0.2.171
findy-agent backchannel for Aries test harness
241 versions - Latest release: about 1 month ago - 3 stars on GitHub
Top 0.8% on proxy.golang.org
github.com/smallstep/cli v0.26.1
🧰 A zero trust swiss army knife for working with X509, OAuth, JWT, OATH OTP, etc.
279 versions - Latest release: about 1 month ago - 351 dependent packages - 431 dependent repositories - 2,918 stars on GitHub
Top 8.2% on proxy.golang.org
go.step.sm/cli v0.26.1
🧰 A zero trust swiss army knife for working with X509, OAuth, JWT, OATH OTP, etc.
279 versions - Latest release: about 1 month ago - 2,918 stars on GitHub
Top 2.2% on proxy.golang.org
github.com/tektoncd/operator v0.70.2
Kubernetes operator to manage installation, updation and uninstallation of tektoncd projects (pip...
39 versions - Latest release: about 1 month ago - 8 dependent packages - 9 dependent repositories - 339 stars on GitHub
Top 8.2% on proxy.golang.org
github.com/eleme/lindb v0.3.1
13 versions - Latest release: about 1 month ago
Top 2.0% on proxy.golang.org
github.com/helm/chart-testing/v3 v3.11.0
CLI tool for linting and testing Helm charts
20 versions - Latest release: about 1 month ago - 2 dependent packages - 31 dependent repositories - 951 stars on GitHub
Top 4.4% on proxy.golang.org
github.com/Cloud-Foundations/keymaster v1.15.3
Short term certificate based identity system (ssh/x509 ca + openidc)
26 versions - Latest release: about 2 months ago - 2 dependent packages - 4 dependent repositories - 91 stars on GitHub
Top 8.2% on proxy.golang.org
github.com/cloud-foundations/keymaster v1.15.3
Short term certificate based identity system (ssh/x509 ca + openidc)
26 versions - Latest release: about 2 months ago - 91 stars on GitHub
Top 2.8% on proxy.golang.org
github.com/kubernetes/apiextensions-apiserver v0.30.0
API server for API extensions like CustomResourceDefinitions
493 versions - Latest release: about 2 months ago - 5 dependent packages - 4 dependent repositories - 206 stars on GitHub
Top 1.2% on proxy.golang.org
k8s.io/apiextensions-apiserver v0.30.0
API server for API extensions like CustomResourceDefinitions
496 versions - Latest release: about 2 months ago - 8,823 dependent packages - 21,055 dependent repositories - 206 stars on GitHub
Top 8.2% on proxy.golang.org
github.com/Kubernetes/apiextensions-apiserver v0.30.0
API server for API extensions like CustomResourceDefinitions
488 versions - Latest release: about 2 months ago - 206 stars on GitHub
Top 4.1% on proxy.golang.org
k8s.io/apiExtensions-apiserver v0.30.0
API server for API extensions like CustomResourceDefinitions
490 versions - Latest release: about 2 months ago - 223 stars on GitHub
Top 8.3% on proxy.golang.org
k8s.io/apiextensions-APIServer v0.30.0
API server for API extensions like CustomResourceDefinitions
490 versions - Latest release: about 2 months ago - 223 stars on GitHub
Top 0.9% on proxy.golang.org
k8s.io/apiserver v0.30.0
Library for writing a Kubernetes-style API server.
496 versions - Latest release: about 2 months ago - 4,154 dependent packages - 29,044 dependent repositories - 496 stars on GitHub
Top 4.2% on proxy.golang.org
github.com/kubernetes/apiserver v0.30.0
Library for writing a Kubernetes-style API server.
493 versions - Latest release: about 2 months ago - 3 dependent repositories - 495 stars on GitHub
Top 8.2% on proxy.golang.org
k8s.io/APIServer v0.30.0
Library for writing a Kubernetes-style API server.
490 versions - Latest release: about 2 months ago - 592 stars on GitHub
Top 8.2% on proxy.golang.org
github.com/GoogleCloudPlatform/kubernetes v1.30.0
1,087 versions - Latest release: about 2 months ago
Top 3.9% on proxy.golang.org
github.com/openshift/kubernetes v1.30.0
This is the repo that tracks all patches to the OpenShift distribution of Kubernetes on branches ...
1,019 versions - Latest release: about 2 months ago - 73 dependent repositories - 55 stars on GitHub
Top 4.1% on proxy.golang.org
k8s.io/Kubernetes v1.30.0
Production-Grade Container Scheduling and Management
1,088 versions - Latest release: about 2 months ago - 96,806 stars on GitHub
Top 4.1% on proxy.golang.org
github.com/Kubernetes/kubernetes v1.30.0
Production-Grade Container Scheduling and Management
1,087 versions - Latest release: about 2 months ago - 99,612 stars on GitHub
Top 2.0% on proxy.golang.org
github.com/lightninglabs/loop v0.28.1-beta
Lightning Loop: A Non-Custodial Off/On Chain Bridge
70 versions - Latest release: about 2 months ago - 26 dependent packages - 7 dependent repositories - 478 stars on GitHub
Top 3.9% on proxy.golang.org
github.com/spidernet-io/spiderpool v0.9.3
kubernetes ipam
64 versions - Latest release: about 2 months ago - 2 dependent packages - 1 dependent repositories - 273 stars on GitHub
Top 8.2% on proxy.golang.org
github.com/harvester/support-bundle-utils v0.0.37
37 versions - Latest release: about 2 months ago
Top 6.4% on proxy.golang.org
github.com/rancher/support-bundle-kit v0.0.37
A toolkit to generate and analyze the support bundles for Kubernetes and Kubernetes-native applic...
38 versions - Latest release: about 2 months ago - 13 stars on GitHub
Top 0.4% on proxy.golang.org
code.gitea.io/gitea v1.21.11 💰
Git with a cup of tea! Painless self-hosted all-in-one software development service, including Gi...
211 versions - Latest release: about 2 months ago - 32 dependent packages - 38 dependent repositories - 39,208 stars on GitHub
Top 2.4% on proxy.golang.org
github.com/go-gitea/gitea v1.21.11 💰
Gitea (git with a cup of tea) is a painless self-hosted Git Service.
211 versions - Latest release: about 2 months ago - 41 dependent repositories - 35,358 stars on GitHub
Top 4.1% on proxy.golang.org
github.com/go-gitea/Gitea v1.21.11 💰
Gitea (git with a cup of tea) is a painless self-hosted Git Service.
210 versions - Latest release: about 2 months ago - 35,410 stars on GitHub
Top 2.9% on proxy.golang.org
github.com/matrixorigin/matrixone v1.1.3
Hyperconverged cloud-edge native database
19 versions - Latest release: about 2 months ago - 1 dependent package - 2 dependent repositories - 1,468 stars on GitHub
Top 3.9% on proxy.golang.org
github.com/sigstore/policy-controller v0.9.0
The policy admission controller used to enforce policy on a cluster on verifiable supply-chain me...
24 versions - Latest release: about 2 months ago - 2 dependent packages - 1 dependent repositories - 80 stars on GitHub
Top 6.7% on proxy.golang.org
github.com/volterraedge/terraform-provider-volterra v0.11.32
Volterra's Public Terraform Provider
56 versions - Latest release: about 2 months ago - 8 stars on GitHub
Top 8.2% on proxy.golang.org
github.com/rancher/image-build-rke2-cloud-provider v1.29.3-build20240412
18 versions - Latest release: about 2 months ago - 2 stars on GitHub
Top 0.7% on proxy.golang.org
github.com/flannel-io/flannel v0.25.1
flannel is a network fabric for containers, designed for Kubernetes
77 versions - Latest release: about 2 months ago - 10 dependent packages - 95 dependent repositories - 7,844 stars on GitHub
Top 1.1% on proxy.golang.org
github.com/coreos/flannel v0.25.1
76 versions - Latest release: about 2 months ago - 27 dependent packages - 7 dependent repositories
Top 8.2% on proxy.golang.org
github.com/coreos/rudder v0.25.1
75 versions - Latest release: about 2 months ago
Top 8.2% on proxy.golang.org
github.com/anchore/imgbom v1.2.0
CLI tool and library for generating a Software Bill of Materials from container images and filesy...
200 versions - Latest release: about 2 months ago - 5,408 stars on GitHub
Top 4.7% on proxy.golang.org
github.com/srl-labs/containerlab v0.54.2
containerlab enables container-based networking labs
141 versions - Latest release: about 2 months ago - 1 dependent repositories - 808 stars on GitHub
Top 8.2% on proxy.golang.org
github.com/srl-wim/container-lab v0.54.2
141 versions - Latest release: about 2 months ago
Top 6.3% on proxy.golang.org
github.com/apecloud/kubeblocks v0.8.3
KubeBlocks helps developers and platform engineers manage database workloads (MySQL, PostgresSQL,...
372 versions - Latest release: about 2 months ago - 1 dependent package - 726 stars on GitHub
Top 9.3% on proxy.golang.org
github.com/tencentblueking/blueking-apigateway-operator v1.12.8
蓝鲸 API 网关 - Operator
28 versions - Latest release: about 2 months ago - 13 stars on GitHub
Top 9.3% on proxy.golang.org
github.com/TencentBlueKing/blueking-apigateway-operator v1.12.8
蓝鲸 API 网关 - Operator
28 versions - Latest release: about 2 months ago - 13 stars on GitHub
Top 5.0% on proxy.golang.org
github.com/SigStore/fulcio v1.4.5
Sigstore OIDC PKI
26 versions - Latest release: about 2 months ago - 482 stars on GitHub
Top 1.3% on proxy.golang.org
github.com/sigstore/fulcio v1.4.5
Sigstore OIDC PKI
26 versions - Latest release: about 2 months ago - 326 dependent packages - 671 dependent repositories - 482 stars on GitHub