- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 178 for namespace (0.12 sec)
-
cmd/namespace-lock.go
return &nsMutex } // nsLock - provides primitives for locking critical namespace regions. type nsLock struct { ref int32 *lsync.LRWMutex } // nsLockMap - namespace lock map, provides primitives to Lock, // Unlock, RLock and RUnlock. type nsLockMap struct { // Indicates if namespace is part of a distributed setup. isDistErasure bool lockMap map[string]*nsLock lockMapMutex sync.Mutex
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Sun Sep 29 22:40:36 UTC 2024 - 9.2K bytes - Viewed (0) -
istioctl/pkg/waypoint/waypoint.go
Use: "status", Short: "Show the status of waypoints in a namespace", Long: "Show the status of waypoints for the namespace provided or default namespace if none is provided", Example: ` # Show the status of the waypoint in the default namespace istioctl waypoint status # Show the status of the waypoint in a specific namespace istioctl waypoint status --namespace default`,
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Wed Oct 09 16:05:45 UTC 2024 - 19.6K bytes - Viewed (0) -
istioctl/pkg/describe/describe.go
drName, drNamespace, err := getIstioDestinationRuleNameForSvc(&cd, svc, port.Port) var dr *clientnetworking.DestinationRule if err == nil && drName != "" && drNamespace != "" { exist := false dr, exist = recordDestinationRules[newResourceID(drNamespace, drName)] if !exist {
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Thu Oct 24 17:36:49 UTC 2024 - 50.6K bytes - Viewed (0) -
istioctl/pkg/injector/injector-list.go
retval := make([]corev1.Namespace, 0, len(namespaces)) seen := sets.String{} for _, webhook := range hook.Webhooks { nsSelector, err := metav1.LabelSelectorAsSelector(webhook.NamespaceSelector) if err != nil { return retval } for _, namespace := range namespaces { if !seen.Contains(namespace.Name) && nsSelector.Matches(api_pkg_labels.Set(namespace.Labels)) {
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Fri Oct 18 11:39:52 UTC 2024 - 10.6K bytes - Viewed (0) -
manifests/addons/dashboards/lib/output.json
}, "expr": "sum by (cluster, namespace, job) (\n rate(\n process_cpu_seconds_total{\n cluster=~\"$cluster\",\n namespace=~\"$namespace\",\n job=~\"$job\"\n }\n [$__rate_interval])\n)\n", "intervalFactor": 2, "legendFormat": "{{cluster}} - {{namespace}}\n" } ], "title": "CPU Usage",
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Tue Jun 04 18:05:06 UTC 2024 - 25.2K bytes - Viewed (0) -
istioctl/pkg/describe/describe_test.go
client.Istio().NetworkingV1().DestinationRules(t.Namespace).Create(context.TODO(), t, metav1.CreateOptions{}) case *clientnetworking.Gateway: client.Istio().NetworkingV1().Gateways(t.Namespace).Create(context.TODO(), t, metav1.CreateOptions{}) case *clientnetworking.VirtualService: client.Istio().NetworkingV1().VirtualServices(t.Namespace).Create(context.TODO(), t, metav1.CreateOptions{}) } }
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Thu Aug 01 20:04:20 UTC 2024 - 30.8K bytes - Viewed (0) -
istioctl/pkg/writer/ztunnel/configdump/api.go
NetworkGateway *GatewayAddress `json:"networkGateway,omitempty"` Protocol string `json:"protocol"` Name string `json:"name"` Namespace string `json:"namespace"` ServiceAccount string `json:"serviceAccount"` WorkloadName string `json:"workloadName"` WorkloadType string `json:"workloadType"`
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Tue Jul 30 17:26:39 UTC 2024 - 6.1K bytes - Viewed (0) -
istioctl/pkg/cli/option.go
"Istio system namespace") return r } // Namespace returns the namespace flag value. func (r *RootFlags) Namespace() string { return *r.namespace } // IstioNamespace returns the istioNamespace flag value. func (r *RootFlags) IstioNamespace() string { return *r.istioNamespace } // DefaultNamespace returns the default namespace to use. func (r *RootFlags) DefaultNamespace() string {
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Fri Aug 30 01:19:20 UTC 2024 - 3.9K bytes - Viewed (0) -
cni/pkg/nodeagent/informers.go
if matchAmbient { log.Infof("Namespace %s is enabled in ambient mesh", namespace) } else { log.Infof("Namespace %s is disabled from ambient mesh", namespace) } for _, pod := range s.pods.List(namespace, klabels.Everything()) { // ztunnel pods are never "added to/removed from the mesh", so do not fire // spurious events for them to avoid triggering extra // ztunnel node reconciliation checks.
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Wed Oct 09 16:05:45 UTC 2024 - 11.7K bytes - Viewed (0) -
cni/pkg/nodeagent/informers_test.go
fs.AssertExpectations(t) // unlabelling the namespace should cause only one RemovePodFromMesh to happen fs.On("RemovePodFromMesh", ctx, mock.Anything, false, ).Once().Return(nil) // unlabel the namespace labelsPatch := []byte(fmt.Sprintf(`{"metadata":{"labels":{"%s":null}}}`, label.IoIstioDataplaneMode.Name)) _, err = client.Kube().CoreV1().Namespaces().Patch(ctx, ns.Name,
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Wed Oct 09 16:05:45 UTC 2024 - 22.1K bytes - Viewed (0)