feat: 新增 18 个 K8s 资源配置模板

工作负载: Pod, StatefulSet, DaemonSet, Job, CronJob
服务发现: Ingress
存储管理: PersistentVolume, PersistentVolumeClaim, StorageClass
配置与密钥: ConfigMap, Secret
安全与权限: ServiceAccount, Role, ClusterRole, RoleBinding, ClusterRoleBinding, NetworkPolicy
集群管理: Namespace

总计支持 26 个组件,覆盖 K8s 核心资源全谱
This commit is contained in:
cnbugs
2026-07-18 19:39:45 +08:00
parent 4c25ae183e
commit 4f702b833a
20 changed files with 3455 additions and 15 deletions
+230
View File
@@ -0,0 +1,230 @@
// K8s Ingress schema + YAML generator for ConfTemplate
// Generated: 2026-07-18
export const k8sIngressSchema = {
id: 'k8s-ingress',
name: 'K8s Ingress',
icon: 'Globe',
category: '云原生',
description: 'Kubernetes Ingress 网络入口资源',
format: 'yaml',
fileName: 'ingress.yaml',
groups: [
{
title: '基础信息',
fields: [
{
key: 'name',
label: 'Ingress 名称',
type: 'text',
placeholder: 'my-ingress',
default: 'my-ingress',
required: true,
tip: '将用作 Ingress 资源名称',
},
{
key: 'namespace',
label: '命名空间',
type: 'text',
placeholder: 'default',
default: 'default',
},
{
key: 'ingressClassName',
label: 'Ingress Class',
type: 'select',
options: [
{ label: 'nginx', value: 'nginx' },
{ label: 'traefik', value: 'traefik' },
{ label: '(不指定)', value: '' },
],
default: 'nginx',
tip: '选择 Ingress 控制器类型',
},
],
},
{
title: '路由规则',
fields: [
{
key: 'host',
label: '域名',
type: 'text',
placeholder: 'example.com',
default: 'example.com',
required: true,
tip: '匹配的主机名',
},
{
key: 'path',
label: '路径',
type: 'text',
placeholder: '/',
default: '/',
},
{
key: 'pathType',
label: '路径类型',
type: 'select',
options: [
{ label: 'Prefix', value: 'Prefix' },
{ label: 'Exact', value: 'Exact' },
{ label: 'ImplementationSpecific', value: 'ImplementationSpecific' },
],
default: 'Prefix',
},
{
key: 'backendServiceName',
label: '后端 Service 名称',
type: 'text',
placeholder: 'my-service',
default: '',
required: true,
tip: '流量转发到的 Service 名称',
},
{
key: 'backendServicePort',
label: '后端 Service 端口',
type: 'number',
min: 1,
max: 65535,
default: 80,
required: true,
},
],
},
{
title: 'TLS 配置',
fields: [
{
key: 'enableTls',
label: '启用 TLS',
type: 'switch',
default: false,
tip: '开启 HTTPS 终止',
},
{
key: 'tlsSecretName',
label: 'TLS Secret 名称',
type: 'text',
placeholder: 'my-tls-secret',
default: '',
dependsOn: 'enableTls',
tip: '包含 TLS 证书的 Secret 名称',
},
],
},
{
title: 'Annotations',
fields: [
{
key: 'enableCors',
label: '启用 CORS',
type: 'switch',
default: false,
tip: '添加 nginx.ingress.kubernetes.io/enable-cors 注解',
},
{
key: 'rewriteTarget',
label: '启用路径重写',
type: 'switch',
default: false,
tip: '添加 nginx.ingress.kubernetes.io/rewrite-target 注解',
},
],
},
],
}
function toYaml(obj, indent = 0) {
const lines = []
const prefix = ' '.repeat(indent)
for (const [key, value] of Object.entries(obj)) {
if (value === null || value === undefined || value === '') continue
if (Array.isArray(value)) {
lines.push(`${prefix}${key}:`)
for (const item of value) {
if (typeof item === 'object' && item !== null) {
const entries = Object.entries(item).filter(([, v]) => v !== null && v !== undefined && v !== '')
if (entries.length === 0) continue
const first = entries[0]
lines.push(`${prefix} - ${first[0]}: ${first[1]}`)
for (let i = 1; i < entries.length; i++) {
lines.push(`${prefix} ${entries[i][0]}: ${entries[i][1]}`)
}
} else {
lines.push(`${prefix} - ${item}`)
}
}
} else if (typeof value === 'object') {
lines.push(`${prefix}${key}:`)
lines.push(toYaml(value, indent + 1))
} else {
lines.push(`${prefix}${key}: ${value}`)
}
}
return lines.join('\n')
}
export function generateK8sIngressYaml(config) {
const annotations = {}
if (config.enableCors) {
annotations['nginx.ingress.kubernetes.io/enable-cors'] = 'true'
}
if (config.rewriteTarget) {
annotations['nginx.ingress.kubernetes.io/rewrite-target'] = '/'
}
const ingress = {
apiVersion: 'networking.k8s.io/v1',
kind: 'Ingress',
metadata: {
name: config.name,
namespace: config.namespace,
annotations: Object.keys(annotations).length > 0 ? annotations : undefined,
},
spec: {
ingressClassName: config.ingressClassName || undefined,
rules: [
{
host: config.host,
http: {
paths: [
{
path: config.path,
pathType: config.pathType,
backend: {
service: {
name: config.backendServiceName,
port: {
number: Number(config.backendServicePort),
},
},
},
},
],
},
},
],
},
}
if (config.enableTls && config.tlsSecretName) {
ingress.spec.tls = [
{
hosts: [config.host],
secretName: config.tlsSecretName,
},
]
}
const header = `# K8s Ingress - 由 ConfTemplate 生成
# 生成时间: ${new Date().toLocaleString('zh-CN')}
# 部署命令: kubectl apply -f ${config.fileName || 'ingress.yaml'}
`
return header + '\n' + toYaml(ingress)
}