Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Kubectl create for persistent storage erroring out

I'm trying to deploy a persistent storage for couch DB and it is failing out with the error


kubectl create -f couch_persistant_deploy.yaml

error: error validating "couch_persistant_deploy.yaml": error validating data: couldn't find type: v1.Deployment; if you choose to ignore these errors, turn validation off with --validate=false

Create volume.yaml

apiVersion: v1
kind: PersistentVolume
metadata:
  name: task-pv-volume
  labels:
    type: local
spec:
  storageClassName: manual
  capacity:
    storage: 2Gi
  accessModes:
    - ReadWriteOnce
  hostPath:
    path: /mnt/sda1/data/test

Claim volume.yaml

apiVersion: v1
kind: PersistentVolumeClaim
metadata:
  name: task-pv-claim
  labels:
    app: couchdb
spec:
  storageClassName: manual
  accessModes:
    - ReadWriteOnce
  resources:
    requests:
      storage: 1Gi

Deploy the VM.yaml

apiVersion: extensions/v1beta1
#apiVersion: v1
kind: Deployment
#kind: ReplicationController
metadata:
  name: couchdb
spec:
  replicas: 1
  template:
    metadata:
      labels:
        app: couchdb
    spec:
      containers:
        - name: couchdb
          image: "couchdb"
          imagePullPolicy: Always
          env:
          - name: COUCHDB_USER
            value: admin
          - name: COUCHDB_PASSWORD
            value: password
          ports:
          - name: couchdb
            containerPort: 5984
          - name: epmd
            containerPort: 4369
            containerPort: 9100
          volumeMounts:
          - mountPath: "/opt/couchdb/data"
            name: task-pv-storage
      imagePullSecrets:
      - name: registrypullsecret2
      #volumes:
        #- name: database-storage
        #  emptyDir: {}
      volumes:
      - name: task-pv-storage
        persistentVolumeClaim:
        claimName: task-pv-claim

Any leads is really appreciated.

like image 820
anish anil Avatar asked Dec 18 '22 01:12

anish anil


1 Answers

Your error message should be like this:

error: error validating "couch_persistant_deploy.yaml": error validating data: ValidationError(Deployment.spec.template.spec.volumes[0]): unknown field "claimName" in io.k8s.api.core.v1.Volume; if you choose to ignore these errors, turn validation off with --validate=false

See, error message is specific: unknown field "claimName" in io.k8s.api.core.v1.Volume

You need to put claimName under persistentVolumeClaim.

  volumes:
  - name: task-pv-storage
    persistentVolumeClaim:
      claimName: task-pv-claim  # fix is here

But you did

  volumes:
  - name: task-pv-storage
    persistentVolumeClaim:
    claimName: task-pv-claim  # invalid

Which makes your Deployment object invalid

like image 160
Shahriar Avatar answered Dec 28 '22 22:12

Shahriar