4censord
4censord
This would work for me. I would still argue that it should be the default behavior. > I think it should be expected that if terraform is to destroy resources...
Changing the `use_graceful_termination` attribute takes almost 30s: ``` Terraform used the selected providers to generate the following execution plan. Resource actions are indicated with the following symbols: ~ update in-place...
> It seems vsphere does this, but uses a 3 min timeout by default. What other providers have you seen? Does or attempts graceful termination: * hyperv * vsphere *...
Is windows able to mount `raw` filesystems that are not on in a partition? I haven't used windows in a while, but I seem to remember something like this. If...
/remove-lifecycle rotten I'm looking for this as well.
/remove-lifecycle rotten /remove-lifecycle stale I hate this bot
It sounds like you don't need a provisioner, but a simple PV or just a volume option. Kubernetes can directly mount NFS as a pod volume. ``` apiVersion: v1 kind:...
check if your host has all the tools for mounting nfs (e.g. on debian `apt install nfs-common`) If it still does not work, i'm not sure. Check the docs of...
Can you specify again exactly what you are trying to do? You are confusing me. In the original post you said you have an NFSv4 server, that already contains data....
Why don't you just create a PV from your NFSv4 server, and then use that in your pod? https://kubernetes.io/docs/concepts/storage/volumes/#nfs ```yaml apiVersion: v1 kind: PersistentVolume metadata: name: nfs spec: capacity: storage:...