小编use*_*171的帖子

如何在 terraform 中为 s3 后端声明变量?

s3.tf

terraform {
backend "s3" {
bucket = "some-bucket"
key = "path/to/key"
region = "some-aws-region" 
}}
Run Code Online (Sandbox Code Playgroud)

如何将存储桶和区域值从 variables.tf 文件传递​​给这个?

variables runtime amazon-s3 terraform

4
推荐指数
3
解决办法
2751
查看次数

如何安装特定版本的 helm?

我正在通过使用这些命令安装最新版本的脚本安装 helm -

curl -fsSL -o get_helm.sh https://raw.githubusercontent.com/helm/helm/master/scripts/get-helm-3.2.0
chmod 700 get_helm.sh
./get_helm.sh
Run Code Online (Sandbox Code Playgroud)

但是,我不希望它总是安装最新版本。如何始终安装 v3.2.4 版本?

shell command version kubernetes kubernetes-helm

0
推荐指数
2
解决办法
1176
查看次数