gpt4 book ai didi

templates - 在 consul-template 的循环中覆盖变量

转载 作者:IT王子 更新时间:2023-10-29 00:55:56 31 4
gpt4 key购买 nike

我在领事模板中使用以下模板:

{{ range services }}
{{ $server_name := .Name | replaceAll "_" "." }}
{{ range .Tags }}
{{ if . | regexMatch "server_name=" }}
# found matching server_name in {{ . }}
{{ $server_name := . | regexReplaceAll ".*=" "" }}
{{ end }}
{{ end }}
# server_name = {{ $server_name }}
acl host_{{ .Name }} hdr(host) -i {{ $server_name }}
use_backend {{ .Name }}_backend if host_{{ .Name }}
{{ end }}

产生

  # found matching server_name in server_name=geoserver.hello.org






# server_name = geoserver.dev.hello.org
acl host_geoserver_dev_hello_org hdr(host) -i geoserver.dev.hello.org
use_backend geoserver_dev_hello_org_backend if host_geoserver_dev_hello_org

其中 .Namegeoserver_dev_hello_org 并且有一个 server_name=geoserver.hello.org 标签。我希望在 .Tags 范围循环结束时,$server_name 应该有值 geoserver.hello.org,但它仍然有它的值geoserver.dev.hello.org 的原始值。

我怎样才能使循环覆盖 $server_name(并在找到值时退出循环)?

最佳答案

consul-template 模板中,您可以使用 the scratch - 在模板的整个生命周期内可用的临时键值存储。

您的代码如下所示:

{{ range services }}
{{ $server_name := .Name | replaceAll "_" "." }}
{{ scratch.Set "server_name" $server_name }}
{{ range .Tags }}
{{ if . | regexMatch "server_name=" }}
# found matching server_name in {{ . }}
{{ $server_name := . | regexReplaceAll ".*=" "" }}
{{ scratch.Set "server_name" $server_name }}
{{ end }}
{{ end }}
# server_name = {{ scratch.Get "server_name" }}
acl host_{{ .Name }} hdr(host) -i {{ $server_name }}
use_backend {{ .Name }}_backend if host_{{ .Name }}
{{ end }}

关于templates - 在 consul-template 的循环中覆盖变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34761716/

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