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:
@@ -0,0 +1,134 @@
|
||||
// K8s PersistentVolumeClaim schema + YAML generator for ConfTemplate
|
||||
// Generated: 2026-07-18
|
||||
|
||||
export const k8sPvcSchema = {
|
||||
id: 'k8s-pvc',
|
||||
name: 'K8s PersistentVolumeClaim',
|
||||
icon: 'HardDrive',
|
||||
category: '云原生',
|
||||
description: 'Kubernetes 持久化存储声明 (PVC)',
|
||||
format: 'yaml',
|
||||
fileName: 'pvc.yaml',
|
||||
groups: [
|
||||
{
|
||||
title: '基础信息',
|
||||
fields: [
|
||||
{
|
||||
key: 'name',
|
||||
label: 'PVC 名称',
|
||||
type: 'text',
|
||||
placeholder: 'my-pvc',
|
||||
default: 'my-pvc',
|
||||
required: true,
|
||||
tip: 'PersistentVolumeClaim 资源名称',
|
||||
},
|
||||
{
|
||||
key: 'namespace',
|
||||
label: '命名空间',
|
||||
type: 'text',
|
||||
placeholder: 'default',
|
||||
default: 'default',
|
||||
},
|
||||
{
|
||||
key: 'accessModes',
|
||||
label: '访问模式',
|
||||
type: 'select',
|
||||
options: [
|
||||
{ label: 'ReadWriteOnce', value: 'ReadWriteOnce' },
|
||||
{ label: 'ReadWriteMany', value: 'ReadWriteMany' },
|
||||
{ label: 'ReadOnlyMany', value: 'ReadOnlyMany' },
|
||||
],
|
||||
default: 'ReadWriteOnce',
|
||||
tip: '单节点读写 / 多节点读写 / 多节点只读',
|
||||
},
|
||||
{
|
||||
key: 'storageClassName',
|
||||
label: 'StorageClass 名称',
|
||||
type: 'text',
|
||||
placeholder: 'standard',
|
||||
default: 'standard',
|
||||
},
|
||||
{
|
||||
key: 'storageRequest',
|
||||
label: '请求存储容量',
|
||||
type: 'text',
|
||||
placeholder: '10Gi',
|
||||
default: '10Gi',
|
||||
required: true,
|
||||
tip: '例如 10Gi, 100Mi',
|
||||
},
|
||||
{
|
||||
key: 'volumeMode',
|
||||
label: '卷模式',
|
||||
type: 'select',
|
||||
options: [
|
||||
{ label: 'Filesystem', value: 'Filesystem' },
|
||||
{ label: 'Block', value: 'Block' },
|
||||
],
|
||||
default: 'Filesystem',
|
||||
},
|
||||
],
|
||||
},
|
||||
],
|
||||
}
|
||||
|
||||
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 generateK8sPvcYaml(config) {
|
||||
const pvc = {
|
||||
apiVersion: 'v1',
|
||||
kind: 'PersistentVolumeClaim',
|
||||
metadata: {
|
||||
name: config.name,
|
||||
namespace: config.namespace,
|
||||
},
|
||||
spec: {
|
||||
accessModes: [config.accessModes],
|
||||
storageClassName: config.storageClassName,
|
||||
volumeMode: config.volumeMode,
|
||||
resources: {
|
||||
requests: {
|
||||
storage: config.storageRequest,
|
||||
},
|
||||
},
|
||||
},
|
||||
}
|
||||
|
||||
const header = `# K8s PersistentVolumeClaim - 由 ConfTemplate 生成
|
||||
# 生成时间: ${new Date().toLocaleString('zh-CN')}
|
||||
# 部署命令: kubectl apply -f ${config.fileName || 'pvc.yaml'}
|
||||
`
|
||||
|
||||
return header + '\n' + toYaml(pvc)
|
||||
}
|
||||
Reference in New Issue
Block a user