pulumi/pulumi-kubernetes là dự án phía máy chủ trên GitHub với 457 sao, viết chủ yếu bằng Go. A Pulumi resource provider for Kubernetes to manage API resources and workloads in running clusters
Tóm tắt dựng từ metadata GitHub của chính dự án — chưa có bài review TopGit. Trang sẽ tự động cập nhật khi bài review đầy đủ được xuất bản.
VÌ SAO CHƯA CÓ REVIEW
TopGit viết bài đầy đủ cho repo có nhiều sao nhất và được yêu cầu nhiều nhất. Trang này là snapshot trong thời gian chờ — xem README gốc ở tab READ ME.
The Kubernetes resource provider for Pulumi lets you create, deploy, and manage Kubernetes API resources and workloads in a running cluster. For a streamlined Pulumi walkthrough, including language runtime installation and Kubernetes configuration, select "Get Started" below.
Introduction
Kubernetes API Version Support
How does API support for Kubernetes work?
References
Prerequisites
Installing
Quick Examples
Deploying a YAML Manifest
Deploying a Helm Chart
Deploying a Workload using the Resource API
Contributing
Code of Conduct
Introduction
pulumi-kubernetes provides an SDK to create any of the API resources
available in Kubernetes.
This includes the resources you know and love, such as:
Deployments
ReplicaSets
ConfigMaps
Secrets
Jobs etc.
Kubernetes API Version Support
The pulumi-kubernetes SDK closely tracks the latest upstream release, and provides access
to the full API surface, including deprecated endpoints.
The SDK API is 100% compatible with the Kubernetes API, and is
schematically identical to what Kubernetes users expect.
We support Kubernetes clusters with version >=1.13.0.
How does API support for Kubernetes work?
Pulumi’s Kubernetes SDK is manufactured by automatically wrapping our
library functionality around the Kubernetes resource OpenAPI
spec as soon as a
new version is released! Ultimately, this means that Pulumi users do not have
to learn a new Kubernetes API model, nor wait long to work with the latest
available versions.
Note: Pulumi also supports alpha and beta APIs.
Visit the FAQ
for more details.
References
Reference Documentation
API Documentation
Node.js API
Python API
All Examples
How-to Guides
Prerequisites
Install Pulumi.
Install a language runtime such as Node.js, Python or .NET.
Install a package manager
For Node.js, use NPM or Yarn.
For Python, use pip.
For .NET, use Nuget which is integrated with the dotnet CLI.
Have access to a running Kubernetes cluster
If kubectl already works for your running cluster, Pulumi respects and uses this configuration.
If you do not have a cluster already running and available, we encourage you to
explore Pulumi's SDKs for AWS EKS, Azure AKS, and GCP GKE. Visit the
API reference docs in the Pulumi Registry for more details.
Install kubectl.
Installing
This package is available in many languages in the standard packaging formats.
For Node.js use either npm or yarn:
npm:
npm install @pulumi/kubernetes
yarn:
yarn add @pulumi/kubernetes
For Python use pip:
pip install pulumi-kubernetes
For .NET, dependencies will be automatically installed as part of your Pulumi deployments using dotnet build.
To use from Go, use go install to grab the latest version of the library
$ go install github.com/pulumi/pulumi-kubernetes/sdk/v4/go/kubernetes@latest
Quick Examples
The following examples demonstrate how to work with pulumi-kubernetes in
a couple of ways.
Examples may include the creation of an AWS EKS cluster, although an EKS cluster
is not required to use pulumi/kubernetes. It is simply used to ensure
we have access to a running Kubernetes cluster to deploy resources and workloads into.
Deploying a YAML Manifest
This example deploys resources from a YAML manifest file path, using the
transient, default kubeconfig credentials on the local machine, just as kubectl does.
import * as k8s from "@pulumi/kubernetes";
const myApp = new k8s.yaml.ConfigFile("app", {
file: "app.yaml"
});
Deploying a Helm Chart
This example creates an EKS cluster with pulumi/eks,
and then deploys a WordPress Helm chart from Bitnami's OCI registry using the
kubeconfig credentials from the cluster's Pulumi provider.
import * as eks from "@pulumi/eks";
import * as k8s from "@pulumi/kubernetes";
// Create an EKS cluster.
const cluster = new eks.Cluster("my-cluster");
// Deploy Wordpress into our cluster.
const wordpress = new k8s.helm.v3.Chart("wordpress", {
chart: "oci://registry-1.docker.io/bitnamicharts/wordpress",
values: {
wordpressBlogName: "My Cool Kubernetes Blog!",
},
}, { providers: { "kubernetes": cluster.provider } });
// Export the cluster's kubeconfig.
export const kubeconfig = cluster.kubeconfig;
Deploying a Workload using the Resource API
This example creates a EKS cluster with pulumi/eks,
and then deploys an NGINX Deployment and Service using the SDK resource API, and the
kubeconfig credentials from the cluster's Pulumi provider.
import * as eks from "@pulumi/eks";
import * as k8s from "@pulumi/kubernetes";
// Create an EKS cluster with the default configuration.
const cluster = new eks.Cluster("my-cluster");
// Create a NGINX Deployment and Service.
const appName = "my-app";
const appLabels = { appClass: appName };
const deployment = new k8s.apps.v1.Deployment(`${appName}-dep`, {
metadata: { labels: appLabels },
spec: {
replicas: 2,
selector: { matchLabels: appLabels },
template: {
metadata: { labels: appLabels },
spec: {
containers: [{
name: appName,
image: "nginx",
ports: [{ name: "http", containerPort: 80 }]
}],
}
}
},
}, { provider: cluster.provider });
const service = new k8s.core.v1.Service(`${appName}-svc`, {
metadata: { labels: appLabels },
spec: {
type: "LoadBalancer",
ports: [{ port: 80, targetPort: "http" }],
selector: appLabels,
},
}, { provider: cluster.provider });
// Export the URL for the load balanced service.
export const url = service.status.loadBalancer.ingress[0].hostname;
// Export the cluster's kubeconfig.
export const kubeconfig = cluster.kubeconfig;
Contributing
If you are interested in contributing, please see the contributing docs.
Trang TopGit này là một snapshot — tab "Readme" hiển thị nguyên văn README của repo (đã bỏ link, giữ ảnh). Repo GitHub ở github.com/pulumi/pulumi-kubernetes là nguồn chính thức.
pulumi/pulumi-kubernetes có bao nhiêu sao?
pulumi/pulumi-kubernetes có 457 sao GitHub — tải lại trang để xem số mới nhất, hoặc xem trực tiếp github.com/pulumi/pulumi-kubernetes. TopGit phản chiếu số sao của GitHub nhưng không cam kết đến từng phút.
pulumi/pulumi-kubernetes có phải mã nguồn mở không?
Có — pulumi/pulumi-kubernetes phát hành theo license Apache-2.0, nghĩa là mã nguồn mở để đọc, fork và (tùy license) tái sử dụng. Mã: github.com/pulumi/pulumi-kubernetes.
pulumi/pulumi-kubernetes còn đang phát triển không?
Commit gần nhất trên pulumi/pulumi-kubernetes là 3 ngày trước (theo timestamp GitHub). Repo có 135 fork — một chỉ báo về mức độ quan tâm của cộng đồng.
pulumi/pulumi-kubernetes là gì?
pulumi/pulumi-kubernetes (pulumi/pulumi-kubernetes) là dự án Go trên GitHub. Theo mô tả gốc: A Pulumi resource provider for Kubernetes to manage API resources and workloads in running clusters
pulumi/pulumi-kubernetes so với các dự án Backend khác thế nào?
pulumi/pulumi-kubernetes được TopGit xếp vào nhóm Backend, với 457 sao GitHub và viết bằng Go. Xem trang chủ đề Backend trên TopGit để so sánh với các dự án tương tự theo số sao và mức độ hoạt động.
Đọc đầy đủ README ở tab phía trên.
Chưa chắc pulumi-kubernetes có hợp với bạn?
Để ChatGPT, Claude hoặc Perplexity tìm hiểu giúp — bấm bên dưới và xem AI nói gì về pulumi-kubernetes.