在 io.k8s.api.apps.v1.ReplicaSet 中创建未知未知字段"replicas"时出错



团队,我正在尝试创建一个副本集,但错误为

验证数据时出错:

[验证错误(副本集):未知字段"副本" io.k8s.api.apps.v1.ReplicaSet, ValidationError(ReplicaSet): unknown io.k8s.api.apps.v1.ReplicaSet 中的字段"选择器", ValidationError(ReplicaSet.spec):缺少必填字段"selector" io.k8s.api.apps.v1.ReplicaSetSpec];如果您选择忽略这些 错误,使用 --validate=false 关闭验证

apiVersion: apps/v1
kind: ReplicaSet
metadata:
  name: test-pod-10sec-via-rc1
  labels:
    app: pod-label
spec:
  template:
  metadata:
  name: test-pod-10sec-via-rc1
  labels:
      app: feature-pod-label
  namespace: test-space
spec:
  containers:
  - name: main
    image: ubuntu:latest
    command: ["bash"]
    args: ["-xc", "sleep 10"]
    volumeMounts:
    - name: in-0
      mountPath: /in/0
      readOnly: true
  volumes:
  - name: in-0
    persistentVolumeClaim:
      claimName: 123-123-123
      readOnly: true
  nodeSelector:
    kubernetes.io/hostname: node1
replicas: 1
selector:
  matchLabels:
    app: feature-pod-label

您的 yaml 文件中存在缩进问题,正确的 yaml 将是:

apiVersion: apps/v1
kind: ReplicaSet
metadata:
  name: test-pod-10sec-via-rc1
  labels:
    app: pod-label
spec:
  template:
  metadata:
  name: test-pod-10sec-via-rc1
  labels:
      app: feature-pod-label
  namespace: test-space
spec:
  template:
    spec:
      containers:
      - name: main
        image: ubuntu:latest
        command: ["bash"]
        args: ["-xc", "sleep 10"]
        volumeMounts:
        - name: in-0
          mountPath: /in/0
          readOnly: true
      volumes:
      - name: in-0
        persistentVolumeClaim:
          claimName: 123-123-123
          readOnly: true
      nodeSelector:
       kubernetes.io/hostname: node1
  replicas: 1
  selector:
    matchLabels:
      app: feature-pod-label

最新更新