- Sort Score
- Result 10 results
- Languages All
Results 21 - 30 of 65 for WORKLOAD (0.05 sec)
-
istioctl/pkg/workload/workload_test.go
expectedException: true, expectedOutput: "Error: expecting a workload name\n", }, { description: "Invalid command args - missing service name", args: strings.Split("group create -n bar", " "), expectedException: true, expectedOutput: "Error: expecting a workload name\n", }, { description: "Invalid command args - missing service namespace",
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Thu Aug 01 20:04:20 UTC 2024 - 14.6K bytes - Viewed (0) -
istioctl/pkg/writer/ztunnel/configdump/connections.go
} serviceNames[ip] = s.Hostname } for _, s := range d.Workloads { var ip string if len(s.WorkloadIPs) != 0 { ip = s.WorkloadIPs[0] } if ip == "" { // fallback to None when a workload does not have an IP ip = "None" } workloadNames[ip] = s.Name + "." + s.Namespace } lookupIP := func(addr string) string { if filter.Raw { return addr } ip, port, _ := net.SplitHostPort(addr)
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Fri May 31 21:45:11 UTC 2024 - 3.5K bytes - Viewed (0) -
istioctl/pkg/writer/ztunnel/configdump/configdump_test.go
}, { name: "errors if config dump is not primed", wantErr: true, }, { name: "returns expected workload summary onto Stdout", callPrime: true, wantOutputWorkload: "testdata/workloadsummary.txt", }, { name: "returns expected workload summary with the default namespace", callPrime: true, configNamespace: "default",
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Thu Jun 06 20:18:34 UTC 2024 - 3.6K bytes - Viewed (0) -
manifests/addons/dashboards/istio-service-dashboard.json
"refId": "B", "step": 2 } ], "title": "Incoming Requests By Destination Workload And Response Code", "type": "timeseries" }, { "datasource": { "type": "prometheus", "uid": "${datasource}" }, "fieldConfig": {
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Wed Mar 27 03:47:04 UTC 2024 - 111.8K bytes - Viewed (0) -
manifests/addons/dashboards/lib/panels.libsonnet
overrideSeries('wds', 'Workloads'), overrideSeries('type.googleapis.com/istio.security.Authorization', 'Authorizations'), overrideSeries('type.googleapis.com/istio.workload.Address', 'Addresses'), ]), }, tables: { local table = g.panel.table, local override = table.fieldOverride, base(title, targets, desc=''): table.new(title)
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Fri Jul 26 23:54:32 UTC 2024 - 9.5K bytes - Viewed (0) -
cni/pkg/nodeagent/testdata/localhost.yaml
# This shows an example local config for ztunnel that adds a workload for localhost. # This allows local testing by sending requests through the local ztunnel to other servers running on localhost. workloads: - uid: cluster1//v1/Pod/default/local name: local namespace: default serviceAccount: default workloadIps: ["127.0.0.1"] protocol: HBONE node: local network: "" services: "default/example.com": 80: 8080
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Fri Jan 26 20:34:28 UTC 2024 - 1.2K bytes - Viewed (0) -
cni/pkg/nodeagent/ztunnelserver_test.go
ztunClient *net.UnixConn ztunServer *ztunnelServer uid string } { pods := &fakePodCache{} pod, ns := podAndNetns() workload := WorkloadInfo{ Workload: podToWorkload(pod), Netns: ns, } pods.pods = map[string]WorkloadInfo{ string(pod.UID): workload, } ret := connectWithPods(ctx, pods) return struct { ztunClient *net.UnixConn ztunServer *ztunnelServer
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Fri Apr 12 21:47:31 UTC 2024 - 8.6K bytes - Viewed (0) -
manifests/addons/dashboards/ztunnel.libsonnet
||| ), panels.timeSeries.xdsPushes( 'XDS Pushes', queries.ztunnelXdsMessages, ||| Count of XDS messages, by type. ||| ), panels.timeSeries.base('Workload Manager', queries.workloadManager, ||| Count of active and pending proxies managed by each instance. Pending is expected to converge to zero. ||| ), ]), ], panelHeight=8) )
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Fri Jul 26 23:54:32 UTC 2024 - 1.9K bytes - Viewed (0) -
ci/devinfra/docker/windows/Dockerfile
# Packages, and component versions, can be found here: # https://learn.microsoft.com/en-us/visualstudio/install/workload-component-id-vs-build-tools RUN C:\TEMP\vs_community.exe \ --quiet --wait --norestart --nocache \ --add Microsoft.VisualStudio.Component.VC.Tools.x86.x64 \ --add Microsoft.VisualStudio.Workload.NativeDesktop \ --add Microsoft.VisualStudio.Component.VC.14.39.17.9.x86.64 \
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Tue Aug 20 13:57:04 UTC 2024 - 7.3K bytes - Viewed (0) -
cni/pkg/nodeagent/podcgroupns.go
continue } pod := pods[res.uid] netns := &NetnsWithFd{ netns: res.netns, fd: res.netnsfd, inode: res.inode, } workload := WorkloadInfo{ Workload: podToWorkload(pod), Netns: netns, } podUIDNetns[string(res.uid)] = workload } return podUIDNetns, nil } type PodNetnsEntry struct { uid types.UID netns fs.File netnsfd uintptr inode uint64
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Fri Apr 12 21:47:31 UTC 2024 - 11K bytes - Viewed (0)