operator-framework/operator-sdk

SDK for building Kubernetes applications. Provides high level APIs, useful abstractions, and project scaffolding.

View on GitHub ↗Jump to charts ↓

Summary Information

Updated 50 minutes ago
Added to GitGenius on March 6th, 2026
Created on February 7th, 2018
Open Issues & Pull Requests: 69 (+0)
Number of forks: 1,777
Total Stargazers: 7,673 (+0)
Total Subscribers: 123 (+0)

Repository Insights (GitGenius)

Median issue/PR response: 34.2 days
Mean response time: 175.0 days
90th percentile: 629.1 days
Tracked items: 141

How this project is maintained

Around half of the issues opened in the past year never receive a reply. Only 5% of issues opened in the past year have been closed. Three people close 79% of everything that gets resolved.

Charts & Analytics

Fetching additional details & charts...

Issue Activity (beta)

Open issues: 12
New in 7 days: 0
Closed in 7 days: 0
Avg open age: 487 days
Stale 30+ days: 8
Stale 90+ days: 7

Recent activity

Opened in 7 days: 0
Closed in 7 days: 0
Comments in 7 days: 1
Events in 7 days: 3

Top labels

  • lifecycle/rotten (80)
  • language/go (32)
  • triage/support (22)
  • help wanted (19)
  • language/helm (18)
  • kind/documentation (14)
  • triage/needs-information (12)
  • language/ansible (10)

Detailed Description

The Operator SDK is a framework for building Kubernetes applications, specifically designed to simplify the creation and management of Operators. Written primarily in Go, it serves as a key component of the broader Operator Framework, an open source toolkit for managing Kubernetes native applications in an automated and scalable manner. The project addresses fundamental challenges developers face when building Operators, including the complexity of low-level Kubernetes APIs, the burden of writing boilerplate code, and the lack of modularity that leads to code duplication.

The SDK provides three core capabilities to streamline Operator development. First, it offers high-level APIs and abstractions built on top of the controller-runtime library, enabling developers to express operational logic more intuitively rather than working directly with low-level Kubernetes primitives. Second, it includes tools for scaffolding and code generation that bootstrap new projects quickly, reducing setup time and initial complexity. Third, it provides extensions designed to address common Operator use cases, allowing developers to leverage pre-built solutions for frequent patterns rather than implementing them from scratch.

The project has attracted contributors who also work on major technology projects, as evidenced by overlapping contributor presence with microsoft/vscode, microsoft/typescript, and rust-lang/rust repositories, suggesting the SDK appeals to developers with diverse technical backgrounds.

A significant recent development documented in the README involves a migration away from kube-rbac-proxy. The project has discontinued use of the kube-rbac-proxy image hosted at gcr.io/kubebuilder/, replacing it with authentication and authorization protection via Controller-Runtime's WithAuthenticationAndAuthorization feature. This change requires existing projects using the old image to migrate before early 2025 when the GCR hosting will become unavailable, representing an important maintenance consideration for users of the SDK.

The framework supports multiple Go versions as specified in developer documentation, with compatibility determined by the Go compiler version used for release binaries. Kubernetes version compatibility and platform support are documented through dedicated guides on the project website, ensuring users can identify appropriate versions for their infrastructure. The project operates under the Apache 2.0 license and maintains active community engagement through the Operator Framework's communication channels, project meetings, and contribution guidelines.