I have the same issue on k8s. 8 Hours continous efforts reveles that i have PVC decleared in helm chart twice.
just commit it.
apiVersion: apps/v1 kind: Deployment metadata: annotations: kompose.cmd: kompose convert -f cctv.yaml --chart kompose.version: 1.34.0 (cbf2835db) labels: io.kompose.service: cctvfe name: cctvfe spec: replicas: 1 selector: matchLabels: io.kompose.service: cctvfe strategy: type: Recreate template: metadata: annotations: kompose.cmd: kompose convert -f cctv.yaml --chart kompose.version: 1.34.0 (cbf2835db) labels: io.kompose.service: cctvfe spec: containers: - image: registry.kurl.svc.cluster.local/cctv-fe:{{ .Values.image.tag }} name: cctvfe ports: - containerPort: 80 protocol: TCP volumeMounts: #- mountPath: /usr/share/nginx/html # name: cctvfe-claim0 #- mountPath: /etc/nginx/nginx.conf # subPath: nginx.conf # name: cctvfe-claim1 - mountPath: /etc/localtime name: cctvfe-cm2 readOnly: true subPath: localtime imagePullSecrets: - name: regcred restartPolicy: Always volumes: #- name: cctvfe-claim0 # persistentVolumeClaim: # claimName: cctvfe-claim0 #- name: cctvfe-claim1 # persistentVolumeClaim: # claimName: cctvfe-claim1 - configMap: items: - key: localtime path: localtime name: cctvfe-cm2 name: cctvfe-cm2