- 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.
The function “state.apply” is running as PID Restart salt-minion with command: service salt-minion restart No matching sls found for ‘init’ in env ‘base’ Add top.sls file in the directory where your main sls file is present. Create the file as follows: 1 2 3 base: 'web*' : - apache If the sls is present in a subdirectory elasticsearch/init.sls then write the top.sls as: 1 2 3 base: '*' : - elasticsearch.init How to execute saltstack-formulas create file /srv/pillar/top.sls with content: base : ' * ' : - salt create file /srv/pillar/salt.sls with content: salt : master : worker_threads : 2 fileserver_backend : - roots - git gitfs_remotes : - git://github.com/saltstack-formulas/epel-formula.git - git://github.com/saltstack-formulas/git-formula.git - git://github.com/saltstack-formulas/nano-formula.git - git://github.com/saltstack-f...
[…] 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