- Helm install pod in pending state:
When you execute kubectl get events you will see the following error:
no persistent volumes available for this claim and no storage class is set or
PersistentVolumeClaim is not bound
This error usually comes in kubernetes set with kubeadm.
You will need to create persistentvolume with the following yaml file:
[code]
kind: PersistentVolume
apiVersion: v1
metadata:
name: redis-data
labels:
type: local
spec:
storageClassName: generic
capacity:
storage: 8Gi
accessModes:
- ReadWriteOnce
hostPath:
path: "/bitnami/redis"
[/code]
create pv with kubectl create -f pv-create.ymlThen you will need to create pvc with following yaml
[code]
kind: PersistentVolumeClaim
apiVersion: v1
metadata:
name: redis-data
spec:
storageClassName: generic
accessModes:
- ReadWriteOnce
resources:
requests:
storage: 8Gi
[/code]
You will need to create pvc with kubectl create -f pv-claim.ymlCheck the pvc status with kubectl get pvc with status should be bound.
Terraform is a tool for building, changing, and versioning infrastructure safely and efficiently. Terraform can manage existing and popular service providers as well as custom in-house solutions. Configuration files describe to Terraform the components needed to run a single application or your entire datacenter. Terraform generates an execution plan describing what it will do to reach the desired state, and then executes it to build the described infrastructure. As the configuration changes, Terraform is able to determine what changed and create incremental execution plans which can be applied. The infrastructure Terraform can manage includes low-level components such as compute instances, storage, and networking, as well as high-level components such as DNS entries, SaaS features, etc. The key features of Terraform are: Infrastructure as Code : Infrastructure is described using a high-level configuration syntax. This allows a blueprint of your datacenter to be versioned and...
[…] Helm issues October 17, 2017 […]
ReplyDeleteReblogged this on Linux the great.
ReplyDeleteAmazing issues here. I'm very happy to see your post. Thanks so much and I am looking ahead to touch you. Will you kindly drop me a e-mail?
ReplyDelete