Helm未正确导入文件



我正在创建一个Helm Chart,我在导入文件时遇到了问题:

apiVersion: v1
kind: ConfigMap
metadata:
name: vcl-template
namespace: {{.Release.Namespace}}
data:
{{- (.Files.Glob "config/varnish/default.vcl.tmpl").AsConfig | nindent 2 }}
{{- (.Files.Glob "config/varnish/nginx.conf").AsConfig | nindent 2 }}

导入文件config/varnish/nginx.conf很好,但文件config/varnish/default.vcl.tmpl是用n而不是换行符导入的,所以ConfigMap上的数据都有问题:

apiVersion: v1
kind: ConfigMap
metadata:
name: vcl-template
namespace: default
data:
default.vcl.tmpl: "vcl 4.0;nnimport std;nimport directors;nn{{ range .Frontends
}}nbackend {{ .Name }} {n    .host = "{{ .Host }}";n    .port = "{{ .Port
}}";n}n{{- end }}nn{{ range .Backends }}nbackend be-{{ .Name }} {n    .host
= "{{ .Host }}";n    .port = "{{ .Port }}";n}n{{- end }}nnacl purge {n
   "127.0.0.1";n    "localhost";n    "::1";n    {{- range .Frontends }}n
   "{{ .Host }}";n    {{- end }}n    {{- range .Backends }}n    "{{ .Host
}}";n    {{- end }}n}nnsub vcl_init {n    new cluster = directors.hash();nn
   {{ range .Frontends -}}n    cluster.add_backend({{ .Name }}, 1);n    {{ end
}}nn    new lb = directors.round_robin();nn    {{ range .Backends -}}n    lb.add_backend(be-{{
.Name }});n    {{ end }}n}nnsub vcl_recv {nn    unset req.http.x-cache;n
   set req.backend_hint = cluster.backend(req.url);n    set req.http.x-shard =
req.backend_hint;n    if (req.http.x-shard != server.identity) {n        return(pass);n
   }n    set req.backend_hint = lb.backend();nn    if (req.method == "PURGE")
{n        if (client.ip !~ purge) {n            return (synth(405, "Method not
allowed"));n        }n        # To use the X-Pool header for purging varnish
during automated deployments, make sure the X-Pool headern        # has been added
to the response in your backend server config. This is used, for example, by then
       # capistrano-magento2 gem for purging old content from varnish during it's
deploy routine.n        if (!req.http.X-Magento-Tags-Pattern && !req.http.X-Pool)
{n            return (synth(400, "X-Magento-Tags-Pattern or X-Pool header required"));n
       }n        if (req.http.X-Magento-Tags-Pattern) {n            ban("obj.http.X-Magento-Tags
~ " + req.http.X-Magento-Tags-Pattern);n        }n        if (req.http.X-Pool)
{n            ban("obj.http.X-Pool ~ " + req.http.X-Pool);n        }n        return
(synth(200, "Purged"));n    }nn    if (req.method != "GET" &&n        req.method
!= "HEAD" &&n        req.method != "PUT" &&n        req.method != "POST"
&&n        req.method != "TRACE" &&n        req.method != "OPTIONS" &&n        req.method
!= "DELETE") {n            /* Non-RFC2616 or CONNECT which is weird. */n            return
(pipe);n    }nn    # We only deal with GET and HEAD by defaultn    if (req.method
!= "GET" && req.method != "HEAD") {n        return (pass);n    }nn    #
Bypass shopping cart, checkout and search requestsn    if (req.url ~ "/checkout"
|| req.url ~ "/catalogsearch") {n        return (pass);n    }nn    # Bypass
adminn    if (req.url ~ "^/admin($|/.*)") {n        return (pass);n    }nn
   # Bypass health check requestsn    if (req.url ~ "/pub/health_check.php")
{n        return (pass);n    }nn    # Set initial grace period usage statusn
   set req.http.grace = "none";nn    # normalize url in case of leading HTTP
scheme and domainn    set req.url = regsub(req.url, "^http[s]?://", "");nn
   # collect all cookiesn    std.collect(req.http.Cookie);nn    # Compression
filter. See https://www.varnish-cache.org/trac/wiki/FAQ/Compressionn    if (req.http.Accept-Encoding)
{n        if (req.url ~ "\.(jpg|jpeg|png|gif|gz|tgz|bz2|tbz|mp3|ogg|swf|flv)$")
{n            # No point in compressing thesen            unset req.http.Accept-Encoding;n
       } elsif (req.http.Accept-Encoding ~ "gzip") {n            set req.http.Accept-Encoding
= "gzip";n        } elsif (req.http.Accept-Encoding ~ "deflate" && req.http.user-agent
!~ "MSIE") {n            set req.http.Accept-Encoding = "deflate";n        }
else {n            # unknown algorithmn            unset req.http.Accept-Encoding;n
       }n    }nn    # Remove all marketing get parameters to minimize the cache
objectsn    if (req.url ~ "(\?|&)(gclid|cx|ie|cof|siteurl|zanpid|origin|fbclid|mc_[a-z]+|utm_[a-z]+|_bta_[a-z]+)=")
{n        set req.url = regsuball(req.url, "(gclid|cx|ie|cof|siteurl|zanpid|origin|fbclid|mc_[a-z]+|utm_[a-z]+|_bta_[a-z]+)=[-_A-z0-9+()%.]+&?",
"");n        set req.url = regsub(req.url, "[?|&]+$", "");n    }nn    #
Static files cachingn    if (req.url ~ "^/(pub/)?(media|static)/") {n        return
(pass);n    }nn    return (hash);n}nnsub vcl_hash {n    if (req.http.cookie
~ "X-Magento-Vary=") {n        hash_data(regsub(req.http.cookie, "^.*?X-Magento-Vary=([^;]+);*.*$",
"\1"));n    }nn    # For multi site configurations to not cache each other's
contentn    if (req.http.host) {n        hash_data(req.http.host);n    } else
{n        hash_data(server.ip);n    }nn    if (req.url ~ "/graphql") {n        call
process_graphql_headers;n    }nn    # To make sure http users don't see ssl warningn
   if (req.http.X-Forwarded-Proto) {n        hash_data(req.http.X-Forwarded-Proto);n
   }n    n}nnsub process_graphql_headers {n    if (req.http.Store) {n        hash_data(req.http.Store);n
   }n    if (req.http.Content-Currency) {n        hash_data(req.http.Content-Currency);n
   }n}nnsub vcl_backend_response {nn    set beresp.grace = 3d;nn    if (beresp.http.content-type
~ "text") {n        set beresp.do_esi = true;n    }nn    if (bereq.url ~ "\.js$"
|| beresp.http.content-type ~ "text") {n        set beresp.do_gzip = true;n
   }nn    if (beresp.http.X-Magento-Debug) {n        set beresp.http.X-Magento-Cache-Control
= beresp.http.Cache-Control;n    }nn    # cache only successfully responses and
404sn    if (beresp.status != 200 && beresp.status != 404) {n        set beresp.ttl
= 0s;n        set beresp.uncacheable = true;n        return (deliver);n    }
elsif (beresp.http.Cache-Control ~ "private") {n        set beresp.uncacheable
= true;n        set beresp.ttl = 86400s;n        return (deliver);n    }nn
   # validate if we need to cache it and prevent from setting cookien    if (beresp.ttl
> 0s && (bereq.method == "GET" || bereq.method == "HEAD")) {n        unset
beresp.http.set-cookie;n    }nn    # If page is not cacheable then bypass varnish
for 2 minutes as Hit-For-Passn    if (beresp.ttl <= 0s ||n        beresp.http.Surrogate-control
~ "no-store" ||n        (!beresp.http.Surrogate-Control &&n        beresp.http.Cache-Control
~ "no-cache|no-store") ||n        beresp.http.Vary == "*") {n        # Mark
as Hit-For-Pass for the next 2 minutesn        set beresp.ttl = 120s;n        set
beresp.uncacheable = true;n    }nn    return (deliver);n}nnsub vcl_deliver
{n    if (resp.http.X-Magento-Debug) {n        if (resp.http.x-varnish ~ " ")
{n            set resp.http.X-Magento-Cache-Debug = "HIT";n            set resp.http.Grace
= req.http.grace;n        } else {n            set resp.http.X-Magento-Cache-Debug
= "MISS";n        }n    } else {n        unset resp.http.Age;n    }nn    #
Not letting browser to cache non-static files.n    if (resp.http.Cache-Control
!~ "private" && req.url !~ "^/(pub/)?(media|static)/") {n        set resp.http.Pragma
= "no-cache";n        set resp.http.Expires = "-1";n        set resp.http.Cache-Control
= "no-store, no-cache, must-revalidate, max-age=0";n    }nn    unset resp.http.X-Magento-Debug;n
   unset resp.http.X-Magento-Tags;n    unset resp.http.X-Powered-By;n    unset
resp.http.Server;n    unset resp.http.X-Varnish;n    unset resp.http.Via;n    unset
resp.http.Link;n}nnsub vcl_hit {n    if (obj.ttl >= 0s) {n        # Hit within
TTL periodn        return (deliver);n    }n    if (std.healthy(req.backend_hint))
{n        if (obj.ttl + 300s > 0s) {n            # Hit after TTL expiration, but
within grace periodn            set req.http.grace = "normal (healthy server)";n
           return (deliver);n        } else {n            # Hit after TTL and
grace expirationn            return (miss);n        }n    } else {n        #
server is not healthy, retrieve from cachen        set req.http.grace = "unlimited
(unhealthy server)";n        return (deliver);n    }n}n"
nginx.conf: |
worker_processes auto;

events {
worker_connections 1024;
}

pcre_jit on;
error_log /var/log/nginx/error.log warn;
include /etc/nginx/modules/*.conf;

http {
include /etc/nginx/mime.types;
default_type application/octet-stream;
server_tokens off;
client_max_body_size 15m;
keepalive_timeout 30;
sendfile on;
tcp_nodelay on;
gzip_vary on;
log_format main '$remote_addr - $remote_user [$time_local] "$request" '
'$status $body_bytes_sent "$http_referer" '
'"$http_user_agent" "$http_x_forwarded_for"';
access_log /var/log/nginx/access.log main;
include /etc/nginx/conf.d/*.conf;
}

nginx.conf:

worker_processes auto;
events {
worker_connections 1024;
}
pcre_jit on;
error_log /var/log/nginx/error.log warn;
include /etc/nginx/modules/*.conf;
http {
include /etc/nginx/mime.types;
default_type application/octet-stream;
server_tokens off;
client_max_body_size 15m;
keepalive_timeout 30;
sendfile on;
tcp_nodelay on;
gzip_vary on;
log_format main '$remote_addr - $remote_user [$time_local] "$request" '
'$status $body_bytes_sent "$http_referer" '
'"$http_user_agent" "$http_x_forwarded_for"';
access_log /var/log/nginx/access.log main;
include /etc/nginx/conf.d/*.conf;
}

default.vcl.tmpl:

vcl 4.0;
import std;
import directors;
{{ range .Frontends }}
backend {{ .Name }} {
.host = "{{ .Host }}";
.port = "{{ .Port }}";
}
{{- end }}
{{ range .Backends }}
backend be-{{ .Name }} {
.host = "{{ .Host }}";
.port = "{{ .Port }}";
}
{{- end }}
acl purge {
"127.0.0.1";
"localhost";
"::1";
{{- range .Frontends }}
"{{ .Host }}";
{{- end }}
{{- range .Backends }}
"{{ .Host }}";
{{- end }}
}
sub vcl_init {
new cluster = directors.hash();
{{ range .Frontends -}}
cluster.add_backend({{ .Name }}, 1);
{{ end }}
new lb = directors.round_robin();
{{ range .Backends -}}
lb.add_backend(be-{{ .Name }});
{{ end }}
}
sub vcl_recv {
unset req.http.x-cache;
set req.backend_hint = cluster.backend(req.url);
set req.http.x-shard = req.backend_hint;
if (req.http.x-shard != server.identity) {
return(pass);
}
set req.backend_hint = lb.backend();
if (req.method == "PURGE") {
if (client.ip !~ purge) {
return (synth(405, "Method not allowed"));
}
# To use the X-Pool header for purging varnish during automated deployments, make sure the X-Pool header
# has been added to the response in your backend server config. This is used, for example, by the
# capistrano-magento2 gem for purging old content from varnish during it's deploy routine.
if (!req.http.X-Magento-Tags-Pattern && !req.http.X-Pool) {
return (synth(400, "X-Magento-Tags-Pattern or X-Pool header required"));
}
if (req.http.X-Magento-Tags-Pattern) {
ban("obj.http.X-Magento-Tags ~ " + req.http.X-Magento-Tags-Pattern);
}
if (req.http.X-Pool) {
ban("obj.http.X-Pool ~ " + req.http.X-Pool);
}
return (synth(200, "Purged"));
}
if (req.method != "GET" &&
req.method != "HEAD" &&
req.method != "PUT" &&
req.method != "POST" &&
req.method != "TRACE" &&
req.method != "OPTIONS" &&
req.method != "DELETE") {
/* Non-RFC2616 or CONNECT which is weird. */
return (pipe);
}
# We only deal with GET and HEAD by default
if (req.method != "GET" && req.method != "HEAD") {
return (pass);
}
# Bypass shopping cart, checkout and search requests
if (req.url ~ "/checkout" || req.url ~ "/catalogsearch") {
return (pass);
}
# Bypass admin
if (req.url ~ "^/admin($|/.*)") {
return (pass);
}
# Bypass health check requests
if (req.url ~ "/pub/health_check.php") {
return (pass);
}
# Set initial grace period usage status
set req.http.grace = "none";
# normalize url in case of leading HTTP scheme and domain
set req.url = regsub(req.url, "^http[s]?://", "");
# collect all cookies
std.collect(req.http.Cookie);
# Compression filter. See https://www.varnish-cache.org/trac/wiki/FAQ/Compression
if (req.http.Accept-Encoding) {
if (req.url ~ ".(jpg|jpeg|png|gif|gz|tgz|bz2|tbz|mp3|ogg|swf|flv)$") {
# No point in compressing these
unset req.http.Accept-Encoding;
} elsif (req.http.Accept-Encoding ~ "gzip") {
set req.http.Accept-Encoding = "gzip";
} elsif (req.http.Accept-Encoding ~ "deflate" && req.http.user-agent !~ "MSIE") {
set req.http.Accept-Encoding = "deflate";
} else {
# unknown algorithm
unset req.http.Accept-Encoding;
}
}
# Remove all marketing get parameters to minimize the cache objects
if (req.url ~ "(?|&)(gclid|cx|ie|cof|siteurl|zanpid|origin|fbclid|mc_[a-z]+|utm_[a-z]+|_bta_[a-z]+)=") {
set req.url = regsuball(req.url, "(gclid|cx|ie|cof|siteurl|zanpid|origin|fbclid|mc_[a-z]+|utm_[a-z]+|_bta_[a-z]+)=[-_A-z0-9+()%.]+&?", "");
set req.url = regsub(req.url, "[?|&]+$", "");
}
# Static files caching
if (req.url ~ "^/(pub/)?(media|static)/") {
return (pass);
}
return (hash);
}
sub vcl_hash {
if (req.http.cookie ~ "X-Magento-Vary=") {
hash_data(regsub(req.http.cookie, "^.*?X-Magento-Vary=([^;]+);*.*$", "1"));
}
# For multi site configurations to not cache each other's content
if (req.http.host) {
hash_data(req.http.host);
} else {
hash_data(server.ip);
}
if (req.url ~ "/graphql") {
call process_graphql_headers;
}
# To make sure http users don't see ssl warning
if (req.http.X-Forwarded-Proto) {
hash_data(req.http.X-Forwarded-Proto);
}

}
sub process_graphql_headers {
if (req.http.Store) {
hash_data(req.http.Store);
}
if (req.http.Content-Currency) {
hash_data(req.http.Content-Currency);
}
}
sub vcl_backend_response {
set beresp.grace = 3d;
if (beresp.http.content-type ~ "text") {
set beresp.do_esi = true;
}
if (bereq.url ~ ".js$" || beresp.http.content-type ~ "text") {
set beresp.do_gzip = true;
}
if (beresp.http.X-Magento-Debug) {
set beresp.http.X-Magento-Cache-Control = beresp.http.Cache-Control;
}
# cache only successfully responses and 404s
if (beresp.status != 200 && beresp.status != 404) {
set beresp.ttl = 0s;
set beresp.uncacheable = true;
return (deliver);
} elsif (beresp.http.Cache-Control ~ "private") {
set beresp.uncacheable = true;
set beresp.ttl = 86400s;
return (deliver);
}
# validate if we need to cache it and prevent from setting cookie
if (beresp.ttl > 0s && (bereq.method == "GET" || bereq.method == "HEAD")) {
unset beresp.http.set-cookie;
}
# If page is not cacheable then bypass varnish for 2 minutes as Hit-For-Pass
if (beresp.ttl <= 0s ||
beresp.http.Surrogate-control ~ "no-store" ||
(!beresp.http.Surrogate-Control &&
beresp.http.Cache-Control ~ "no-cache|no-store") ||
beresp.http.Vary == "*") {
# Mark as Hit-For-Pass for the next 2 minutes
set beresp.ttl = 120s;
set beresp.uncacheable = true;
}
return (deliver);
}
sub vcl_deliver {
if (resp.http.X-Magento-Debug) {
if (resp.http.x-varnish ~ " ") {
set resp.http.X-Magento-Cache-Debug = "HIT";
set resp.http.Grace = req.http.grace;
} else {
set resp.http.X-Magento-Cache-Debug = "MISS";
}
} else {
unset resp.http.Age;
}
# Not letting browser to cache non-static files.
if (resp.http.Cache-Control !~ "private" && req.url !~ "^/(pub/)?(media|static)/") {
set resp.http.Pragma = "no-cache";
set resp.http.Expires = "-1";
set resp.http.Cache-Control = "no-store, no-cache, must-revalidate, max-age=0";
}
unset resp.http.X-Magento-Debug;
unset resp.http.X-Magento-Tags;
unset resp.http.X-Powered-By;
unset resp.http.Server;
unset resp.http.X-Varnish;
unset resp.http.Via;
unset resp.http.Link;
}
sub vcl_hit {
if (obj.ttl >= 0s) {
# Hit within TTL period
return (deliver);
}
if (std.healthy(req.backend_hint)) {
if (obj.ttl + 300s > 0s) {
# Hit after TTL expiration, but within grace period
set req.http.grace = "normal (healthy server)";
return (deliver);
} else {
# Hit after TTL and grace expiration
return (miss);
}
} else {
# server is not healthy, retrieve from cache
set req.http.grace = "unlimited (unhealthy server)";
return (deliver);
}
}

为什么第二个文件没有正确导入?最新的Helm版本和最新的Go版本

有人有什么想法吗?这两个文件在VSCode上的编码显示为UTF8.

它们实际上与YAML的PoV是等价的,只是不那么漂亮,但对于您的特定情况最重要的是,这是因为YAML不能表示尾随空格而不引用它,这是由于.tmpl文件的第164行所做的,如:

中的n n所示
   }n    n}nnsub process_graphql_headers {n    if (req.http.Store) {n        hash_data(req.http.Store);n
$ sed -ne 164p default.vcl.tmpl | xxd
00000000: 2020 2020 0a                                 .

打开"条带尾随空格"在你的编辑器中会有帮助,或者对于这种特殊情况,你可以修改第164行

最新更新