gpt4 book ai didi

kubernetes - 无需离开全局范围的 Helm 范围

转载 作者:行者123 更新时间:2023-12-02 11:28:32 25 4
gpt4 key购买 nike

我需要遍历实例列表并为每个实例创建 1 个有状态集。但是,在范围内,我将自己限制在该循环的范围内。我需要访问我的 statefulset 中的一些全局值。

我已经通过将我需要的所有全局对象放在一个 env 变量中来解决它,但是......这看起来很hacky。

在仍然能够引用全局对象的同时循环遍历范围的正确方法是什么?

我的循环示例

{{- $values := .Values -}}
{{- $release := .Release -}}

{{- range .Values.nodes }}

apiVersion: apps/v1
kind: StatefulSet
metadata:
name: {{ $release.Name }} <-- Global Scope
labels:
.
.
.
env:
- name: IP_ADDRESS
value: {{ .ip_address }} <-- From range scope
.
.
.
{{- end }}

值示例
# Global
image:
repository: ..ecr.....

# Instances
nodes:

- node1:
name: node-1
iP: 1.1.1.1
- node2:
name: node-2
iP: 1.1.1.1

最佳答案

进入循环块时,使用 . 会丢失全局上下文.您可以使用 $. 访问全局上下文。反而。
Helm docs 中所写——

there is one variable that is always global - $ - this variable will always point to the root context. This can be very useful when you are looping in a range and need to know the chart's release name.


在您的示例中,使用它看起来像:
{{- range .Values.nodes }}
apiVersion: apps/v1
kind: StatefulSet
metadata:
name: {{ $.Release.Name }}
labels:
.
.
.
env:
- name: IP_ADDRESS
value: {{ .ip_address }}
.
.
.
{{- end }}

关于kubernetes - 无需离开全局范围的 Helm 范围,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55213545/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com