helm - 将 YAML 转换为 JSON 时出错:yaml:第 29 行:在此上下文中不允许映射值
回答问题 在 temp 中使用相同的 deployment.yml 文件定义的标签- {{- define "chart.labels" }} version: v1.0 method: http internet: enabled {{- end }} 我在模板文件夹中有 deployment.yml 文件- apiVersion: apps/v1 kind: Deployment metada
回答问题
在 temp 中使用相同的 deployment.yml 文件定义的标签-
{{- define "chart.labels" }}
version: v1.0
method: http
internet: enabled
{{- end }}
我在模板文件夹中有 deployment.yml 文件-
apiVersion: apps/v1
kind: Deployment
metadata:
name: app1-deployment
namespace: {{ .Values.global.namespace }}
labels:
app: app1
type: microservice1
spec:
replicas: 3
selector:
matchLabels:
app: app1
type: microservice1
strategy:
type: {{ .Values.global.strategytype }}
template:
metadata:
labels:
app: app1
type: microservice1
{{- template "chart.labels" }}
两种方式 - 一种来自关键字 template (以下代码的最后一行)
第二个来自 include 关键字我试图调用模板。
{{include "chart.labels" . | indent 8 }}
- 我收到错误(当我使用关键字_template_调用模板时)。
错误:chart/templates/deployment.yml 上的 YAML 解析错误:将 YAML 转换为 JSON 时出错:yaml:第 27 行:未找到预期的密钥 helm.go:81:[debug] 将 YAML 转换为 JSON 时出错:yaml:第 27 行:在 chart/templates/deployment.yml helm.sh/helm/v3/pkg/releaseutil.(*manifestFile).sort helm.sh/helm/v3/pkg/releaseutil/ 上没有找到预期的关键 YAML 解析错误manifest_sorter.go:146 helm.sh/helm/v3/pkg/releaseutil.SortManifests helm.sh/helm/v3/pkg/releaseutil/manifest_sorter.go:106 helm.sh/helm/v3/pkg/action .(*Configuration).renderResources helm.sh/helm/v3/pkg/action/action.go:165 helm.sh/helm/v3/pkg/action.(*Install).Run helm.sh/helm/ v3/pkg/action/install.go:247
- 得到另一个错误(当我使用_Include_关键字调用模板时)
错误:chart/templates/deployment.yml 上的 YAML 解析错误:将 YAML 转换为 JSON 时出错:yaml:第 29 行:在此上下文中不允许映射值 helm.go:81:[debug] 将 YAML 转换为 JSON 时出错:yaml:第29行:在此上下文中不允许映射值chart/templates/deployment.yml helm.sh/helm/v3/pkg/releaseutil.(*manifestFile).sort helm.sh/helm/上的YAML解析错误v3/pkg/releaseutil/manifest_sorter.go:146 helm.sh/helm/v3/pkg/releaseutil.SortManifests helm.sh/helm/v3/pkg/releaseutil/manifest_sorter.go:106 helm.sh/helm /v3/pkg/action.(*Configuration).renderResources helm.sh/helm/v3/pkg/action/action.go:165 helm.sh/helm/v3/pkg/action.(*Install).Run helm.sh/helm/v3/pkg/action/install.go:247 main.runInstall
我在这里想念什么?
Answers
你需要遵循理智的缩进。你有:
{{- define "chart.labels" }}
version: v1.0
method: http
internet: enabled
{{- end }}
请注意,下面的 chart.labels 定义中没有双空格。
以下作品:
{{- define "chart.labels" }}
version: v1.0
method: http
internet: enabled
{{- end }}
apiVersion: apps/v1
kind: Deployment
metadata:
name: {{ include "test.fullname" . }}
labels:
{{- include "test.labels" . | nindent 4 }}
spec:
{{- if not .Values.autoscaling.enabled }}
replicas: {{ .Values.replicaCount }}
{{- end }}
selector:
matchLabels:
{{- include "test.selectorLabels" . | nindent 6 }}
template:
metadata:
{{- with .Values.podAnnotations }}
annotations:
{{- toYaml . | nindent 8 }}
{{- end }}
labels:
{{- include "test.selectorLabels" . | nindent 8 }}
{{include "chart.labels" . | nindent 8 }}
编辑:或仅更改 nindent 以匹配模板元中的 chart.labels,如下所示:
{{include "chart.labels" . | nindent 6 }}
更多推荐
所有评论(0)