Displaying 2 results from an estimated 2 matches for "volumemount".
Did you mean:
volumemounts
2017 Sep 07
1
Redis db permission issue while running GitLab in Kubernetes with Gluster
...other reason
?except for mount?.
One thing i would like to highlight is that all the three containers are
using the *same* PVC
- name: gluster-vol1
persistentVolumeClaim:
claimName: gluster-dyn-pvc
Above is common for all three. What differs is shown below:
a) postgresql-deployment.yaml
volumeMounts:
- name: gluster-vol1
mountPath: /var/lib/postgresql
b) redisio-deployment.yaml
volumeMounts:
- name: gluster-vol1
mountPath: /var/lib/redis
c) gitlab-deployment.yaml
volumeMounts:
- name: gluster-vol1
mountPath: /home/git/data
Any suggestion? Also, i
? guess this is not
the right way t...
2017 Sep 08
1
Redis db permission issue while running GitLab in Kubernetes with Gluster
...ntainers are
>> using the *same* PVC
>>
>> - name: gluster-vol1
>> persistentVolumeClaim:
>> claimName: gluster-dyn-pvc
>>
>> Above is common for all three. What differs is shown below:
>>
>> a) postgresql-deployment.yaml
>>
>> volumeMounts:
>> - name: gluster-vol1
>> mountPath: /var/lib/postgresql
>>
>> b) redisio-deployment.yaml
>>
>> volumeMounts:
>> - name: gluster-vol1
>> mountPath: /var/lib/redis
>>
>> c) gitlab-deployment.yaml
>>
>> volumeMounts:
>&...