舍我其谁
舍我其谁
consul & consul-esm provides a basic framework for service/process inspection, non tcp-http checks can be used to check the status of a process(running or exit)
@tgross Thanks for your guidance, I've updated the docs and the changelog
> Hi @shumin1027! I think this was fixed in #15096, which if I'm reading correctly was released in Nomad 1.4.3. Can you confirm which version of Nomad you're running? @tgross...
@tgross The `PropagationMode` option is not processed when mounting `Host Volume` and `CSI Volume` `func hostVolumeMountConfigurations`: https://github.com/hashicorp/nomad/blob/fc4abf24f2e358963fdf3eedd800245068a3832f/client/allocrunner/taskrunner/volume_hook.go#L81-L86 `func prepareCSIVolumes`: https://github.com/hashicorp/nomad/blob/fc4abf24f2e358963fdf3eedd800245068a3832f/client/allocrunner/taskrunner/volume_hook.go#L172-L179
@tgross The correct configuration parameters should be like this,: ```hcl volume_mount { volume = "cvmfs" destination = "/cvmfs" read_only = true propagation_mode = "host-to-task" } ``` `propagation_mode` should be filled...
@gman0 The example given above is to manually create volume ```shell nomad volume create cvmfs.volume.hcl ``` This is the log output by the controller plugin when creating a volume manually:...
> What I meant is to just register an existing volume without actually triggering `CreateVolume` call on the driver. I'm not familiar with Nomad so I'm not sure if it's...
@gman0 Thank you for your help,your guess might be right,`nomad` seems to be temporarily unsupported `mount-propagation` This is the mount information of application container: 
@gman0 I fixed this issue: https://github.com/hashicorp/nomad/issues/15524, the `mount-propagation` option can be successfully set when mounting the `volume` When I use the `host volume` and directly mount '/cvmfs' on the host...