You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The nomad plugin status :plugin_id command lists allocations that implement the plugin being queried. Cluster admins will likely deploy plugins to a dedicated namespace, but the command doesn't support the wildcard namespace:
$ nomad plugin status -namespace '*' org.demo
ID = org.democratic-csi.nfs
Provider = org.democratic-csi.nfs
Version = 1.9.0
Controllers Healthy = 2
Controllers Expected = 2
Nodes Healthy = 3
Nodes Expected = 3
Allocations
No allocations placed
Compare to when passing a specific namespace:
$ nomad plugin status -namespace plugins org.demo
ID = org.democratic-csi.nfs
Provider = org.democratic-csi.nfs
Version = 1.9.0
Controllers Healthy = 2
Controllers Expected = 2
Nodes Healthy = 3
Nodes Expected = 3
Allocations
ID Node ID Task Group Version Desired Status Created Modified
295a2da3 8806d811 nodes 2 run running 5m29s ago 5m11s ago
47ab2f03 8806d811 controller 3 run running 5m25s ago 5m11s ago
903d2e83 a6afad7d controller 3 run running 5m25s ago 5m14s ago
17941b89 a6afad7d nodes 2 run running 5m29s ago 5m18s ago
ed0cf94c 74c50d77 nodes 2 run running 5m29s ago 5m18s ago
The text was updated successfully, but these errors were encountered:
The `nomad plugin status :plugin_id` command lists allocations that implement
the plugin being queried. This list is filtered by the `-namespace` flag as
usual. Cluster admins will likely deploy plugins to a single namespace, but for
convenience they may want to have the wildcard namespace set in their command
environment.
Add support for handling the wildcard namespace to the CSI plugin RPC handler.
Fixes: #20537
The `nomad plugin status :plugin_id` command lists allocations that implement
the plugin being queried. This list is filtered by the `-namespace` flag as
usual. Cluster admins will likely deploy plugins to a single namespace, but for
convenience they may want to have the wildcard namespace set in their command
environment.
Add support for handling the wildcard namespace to the CSI plugin RPC handler.
Fixes: #20537
I'm going to lock this issue because it has been closed for 120 days ⏳. This helps our maintainers find and focus on the active issues.
If you have found a problem that seems similar to this, please open a new issue and complete the issue template so we can capture all the details necessary to investigate further.
The
nomad plugin status :plugin_id
command lists allocations that implement the plugin being queried. Cluster admins will likely deploy plugins to a dedicated namespace, but the command doesn't support the wildcard namespace:Compare to when passing a specific namespace:
The text was updated successfully, but these errors were encountered: