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

6/29/2019

I followed this tutorial https://kubernetes.io/docs/tutorials/configuration/configure-redis-using-configmap/

I got the error as bellow when I try to create the pods

kubectl apply -k .
error: json: unknown field "metadata"

My kubectl version is as bellow:

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"}

Bellow are some files that I created following the toturial.

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

Any help?

-- wanghaoming
configmap
kubernetes

1 Answer

6/29/2019

I think you misinterpreted the kustomization.yaml instructions (which are confusing). You don't add the contents of pods/config/redis-pod.yaml to kustomization.yaml. You just download that file and add the resources snippet.

The resulting kustomization.yaml should look like:

configMapGenerator:
- name: example-redis-config
  files:
  - redis-config
resources:
- redis-pod.yaml
-- Andy Shinn
Source: StackOverflow