【发布时间】:2022-01-03 12:07:38
【问题描述】:
我的意图是通过 terraform 创建一个 k8s Job。
在此过程中,我需要在其中创建秘密项目的卷和项目列表。
我可以通过以下 yaml 配置的 sn-p 来实现这一点
volumeMounts:
- name: certs
mountPath: /app/certs
- name: ca-certs
mountPath: /app/ca-certs
volumes:
- name: certs
secret:
secretName: "tls-cert-internal"
items:
- key: tls.crt
path: crt.pem
- key: tls.key
path: key.pem
- name: ca-certs
secret:
secretName: ca-bundle
items:
- key: tls.crt
path: ca_crt.pem
但是我喜欢使用我尝试的 terraform 创建它
resource "kubernetes_job" "xxx" {
metadata {
name = "xxxxx"
namespace = "test"
}
wait_for_completion = true
spec {
template {
metadata {}
spec {
container {
name = "test"
image = "test"
image_pull_policy = "Always"
volume_mount {
name = "certs"
mount_path = "/app/certs"
}
volume_mount {
name = "ca-certs"
mount_path = "/app/ca-certs"
}
volume {
name = "certs"
secret {
secret_name = "tls-cert-internal"
items = [
{
key = tls.crt
path = crt.pem
},
{
key = tls.key
path= key.pem
}
]
}
}
volume {
name = "ca-certs"
secret {
secret_name = "ca-bundle"
items = [
{
key = tls.crt
path = tls.crt
}
]
}
}
}
但是它失败了:
on xxxxx, in resource "kubernetes_job" "xxx":
: items = [
An argument named "items" is not expected here. Did you mean to define a block
of type "items"?
我厌倦了关注这个https://registry.terraform.io/providers/hashicorp/kubernetes/latest/docs/resources/pod#secret
但是,我似乎没有提供不正确的语法。请指导我做同样的事情
【问题讨论】:
-
您可以尝试以下方法:
items { key = tls.crt path = tls.crt } -
@Marcin How to define multiple items here 当我将它定义为 items { key = tls.crt path tls.crt } 但是我需要定义多个项目
标签: terraform kubernetes-secrets