根据选择的堆栈修改 kubernetes 容器的最佳方法是什么?我看到不能修改输入类型。我找到了传播运算符,例如:
const ledgerDeployment = new k8s.extensions.v1beta1.Deployment("ledger", {
metadata: {
namespace: ledgerNamespace.metadata.name,
},
spec: {
template: {
metadata: {
labels: {name: "ledger"},
},
spec: {
containers: [
// containers
],
volumes: [
{
//volume 1
},
{
// volume 2
},
// conditional volume based on the stack
...(stack == 'dev' ? [{
name: dbTLS.metadata.name,
secret: {secretName: dbTLS.metadata.name, defaultMode: 256}
}] : [])
]
}
}
}
});
但这感觉有点恶心,并且在我看来增加了大型资源声明的复杂性(特别是当条件变得更加复杂时)。我尝试将容器定义提取到变量中,但由于我无法声明变量的类型,因此在将 an 分配给Output
变量中的一个键时遇到了一些问题:
let apiContainer = {
name: "api",
image: appImage.imageName,
// more stuff ...
volumeMounts: [
{
mountPath: "/app/gunicorn-socket",
name: "gunicorn-socket-dir",
readOnly: false
},
],
}
if (stack != 'local') {
apiContainer.volumeMounts.push({
mountPath: "/etc/secret/db",
name: dbTLS.metadata.name,
readOnly: true
})
}
name
在with上给出错误Type 'Output<string>' is not assignable to type 'string'
。
似乎接口是在 github 上导出的标签1.4.5
,但是当我在本地查看接口时它没有导出:
12:41PM /Users/paymahn/qwil/ledger/pulumi/infra pulumi ⬆ ⬇ ✱ ➜
❯❯❯ rg "interface Container" --no-ignore -g "**/*kube*/**"
node_modules/@pulumi/kubernetes/types/input.d.ts
8424: interface Container {
8575: interface ContainerImage {
8589: interface ContainerPort {
8619: interface ContainerState {
8636: interface ContainerStateRunning {
8645: interface ContainerStateTerminated {
8678: interface ContainerStateWaiting {
8691: interface ContainerStatus {
node_modules/@pulumi/kubernetes/types/output.d.ts
8508: interface Container {
8659: interface ContainerImage {
8673: interface ContainerPort {
8703: interface ContainerState {
8720: interface ContainerStateRunning {
8729: interface ContainerStateTerminated {
8762: interface ContainerStateWaiting {
8775: interface ContainerStatus {
我已经验证我在本地使用 v1.4.5:
12:37PM /Users/paymahn/qwil/ledger/pulumi/infra ✘ 1 pulumi ⬆ ⬇ ✱ ➜
❯❯❯ npm list "@pulumi/kubernetes"
kubernetes-typescript@ /Users/paymahn/qwil/ledger/pulumi/infra
├── @pulumi/kubernetes@1.4.5
└─┬ @pulumi/kubernetesx@0.1.1
└── @pulumi/kubernetes@1.3.3