get [error: json: unknown field “metadata” ] error when I follow tutorial of kubernetes

get [error: json: unknown field “metadata” ] error when I follow tutorial of kubernetes

我遵循了这个教程https://kubernetes.io/docs/tutorials/configuration/configure-redis-using-configmap/

当我尝试创建 pods

时出现如下错误
kubectl apply -k .
error: json: unknown field "metadata"

我的 kubectl 版本如下:

kubectl version
Client Version: version.Info{Major:"1", Minor:"15", GitVersion:"v1.15.0", GitCommit:"e8462b5b5dc2584fdcd18e6bcfe9f1e4d970a529", GitTreeState:"clean", BuildDate:"2019-06-19T16:40:16Z", GoVersion:"go1.12.5", Compiler:"gc", Platform:"darwin/amd64"}
Server Version: version.Info{Major:"1", Minor:"14", GitVersion:"v1.14.3", GitCommit:"5e53fd6bc17c0dec8434817e69b04a25d8ae0ff0", GitTreeState:"clean", BuildDate:"2019-06-06T01:36:19Z", GoVersion:"go1.12.5", Compiler:"gc", Platform:"linux/amd64"}

以下是我在教程之后创建的一些文件。

kustomization.yaml

configMapGenerator:
- name: example-redis-config
  files:
  - redis-config
apiVersion: v1
kind: Pod
metadata:
  name: redis
spec:
  containers:
  - name: redis
    image: redis:5.0.4
    command:
      - redis-server
      - "/redis-master/redis.conf"
    env:
    - name: MASTER
      value: "true"
    ports:
    - containerPort: 6379
    resources:
      limits:
        cpu: "0.1"
    volumeMounts:
    - mountPath: /redis-master-data
      name: data
    - mountPath: /redis-master
      name: config
  volumes:
    - name: data
      emptyDir: {}
    - name: config
      configMap:
        name: example-redis-config
        items:
        - key: redis-config
          path: redis.conf
resources:
- redis-pod.yaml

redis-config

maxmemory 2mb
maxmemory-policy allkeys-lru

redis-pod.yaml

apiVersion: v1
kind: Pod
metadata:
  name: redis
spec:
  containers:
  - name: redis
    image: redis:5.0.4
    command:
      - redis-server
      - "/redis-master/redis.conf"
    env:
    - name: MASTER
      value: "true"
    ports:
    - containerPort: 6379
    resources:
      limits:
        cpu: "0.1"
    volumeMounts:
    - mountPath: /redis-master-data
      name: data
    - mountPath: /redis-master
      name: config
  volumes:
    - name: data
      emptyDir: {}
    - name: config
      configMap:
        name: example-redis-config
        items:
        - key: redis-config
          path: redis.conf

有什么帮助吗?

我认为您误解了 kustomization.yaml 说明(令人困惑)。您没有将 pods/config/redis-pod.yaml 的内容添加到 kustomization.yaml。您只需下载该文件并添加 resources 片段。

结果 kustomization.yaml 应如下所示:

configMapGenerator:
- name: example-redis-config
  files:
  - redis-config
resources:
- redis-pod.yaml