- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 377 for Istiod (0.09 sec)
-
manifests/addons/dashboards/istio-performance-dashboard.json
}, "expr": "sum(container_memory_working_set_bytes{namespace!=\"istio-system\",container=\"istio-proxy\"}) / count(container_memory_working_set_bytes{namespace!=\"istio-system\",container=\"istio-proxy\"})", "format": "time_series", "intervalFactor": 1, "legendFormat": "per istio proxy", "refId": "B" } ], "title": "Memory Usage",
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Wed Mar 27 03:47:04 UTC 2024 - 39.6K bytes - Viewed (0) -
istioctl/pkg/admin/admin.go
package admin import ( "fmt" "github.com/spf13/cobra" "istio.io/istio/istioctl/pkg/cli" ) func Cmd(ctx cli.Context) *cobra.Command { adminCmd := &cobra.Command{ Use: "admin", Short: "Manage control plane (istiod) configuration", Long: "A group of commands used to manage istiod configuration", Example: ` # Retrieve information about istiod configuration. istioctl admin log`, Aliases: []string{"istiod"},
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Thu Jun 15 15:02:17 UTC 2023 - 1.4K bytes - Viewed (0) -
istioctl/pkg/multixds/gather.go
"google.golang.org/grpc" v1 "k8s.io/api/core/v1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" "istio.io/api/label" "istio.io/istio/istioctl/pkg/clioptions" "istio.io/istio/istioctl/pkg/xds" pilotxds "istio.io/istio/pilot/pkg/xds" "istio.io/istio/pkg/kube" istioversion "istio.io/istio/pkg/version" ) const ( // Service account to create tokens in tokenServiceAccount = "default"
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Wed Oct 09 16:05:45 UTC 2024 - 13.6K bytes - Viewed (0) -
manifests/addons/dashboards/pilot-dashboard.gen.json
"legendFormat": "Container ({{pod}})" }, { "datasource": { "type": "prometheus", "uid": "$datasource" }, "expr": "sum by (pod) (go_memstats_stack_inuse_bytes{app=\"istiod\"})", "legendFormat": "Stack ({{pod}})"
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Fri Jul 26 23:54:32 UTC 2024 - 24.7K bytes - Viewed (0) -
istioctl/pkg/dashboard/dashboard.go
istioctl dashboard istiod-debug istiod-123-456.istio-system # Open Istio debug web UI for the istiod-56dd66799-jfdvs pod in a custom namespace istioctl dashboard istiod-debug istiod-123-456 -n custom-ns # Open Istio debug web UI for any Istiod pod istioctl dashboard istiod-debug deployment/istiod.istio-system # with short syntax istioctl dash istiod-debug pilot-123-456.istio-system
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Mon Apr 15 01:29:35 UTC 2024 - 20.5K bytes - Viewed (0) -
istioctl/pkg/proxyconfig/clusters.go
package proxyconfig import ( "context" "encoding/json" "fmt" "io" "text/tabwriter" "github.com/spf13/cobra" "istio.io/istio/istioctl/pkg/cli" "istio.io/istio/istioctl/pkg/clioptions" "istio.io/istio/pkg/cluster" ) // TODO move to multicluster package; requires exposing some private funcs/vars in this package func ClustersCommand(ctx cli.Context) *cobra.Command {
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Thu Jun 15 15:02:17 UTC 2023 - 2.3K bytes - Viewed (0) -
istioctl/pkg/writer/pilot/testdata/multiXdsStatusMultiPilot.txt
NAME CLUSTER CDS LDS EDS RDS ECDS ISTIOD VERSION proxy1 cluster1 STALE SYNCED SYNCED NOT SENT SYNCED istiod1 1.20 proxy2 cluster2 STALE SYNCED STALE SYNCED STALE istiod2 1.19 proxy3 cluster3 NOT SENT ERROR STALE NOT SENT NOT SENT istiod3 1.20
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Wed Mar 06 03:42:52 UTC 2024 - 522 bytes - Viewed (0) -
istioctl/pkg/writer/compare/comparator.go
"google.golang.org/protobuf/reflect/protoregistry" "google.golang.org/protobuf/types/known/emptypb" "istio.io/istio/istioctl/pkg/util/configdump" ) // Comparator diffs between a config dump from Istiod and one from Envoy type Comparator struct { envoy, istiod *configdump.Wrapper w io.Writer context int location string } // NewComparator is a comparator constructor
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Sun Apr 21 17:42:54 UTC 2024 - 3.7K bytes - Viewed (0) -
istioctl/pkg/writer/ztunnel/configdump/testdata/dump.json
], "protocol": "TCP", "uid": "Kubernetes//Pod/istio-system/istiod-test-6bdfb786d-s58pj", "name": "istiod-test-6bdfb786d-s58pj", "namespace": "istio-system", "trustDomain": "cluster.local", "serviceAccount": "istiod-test", "workloadName": "istiod-test", "workloadType": "deployment", "canonicalName": "istiod", "canonicalRevision": "latest", "network": "network2",
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Tue Apr 16 03:28:36 UTC 2024 - 33.1K bytes - Viewed (0) -
istioctl/pkg/writer/compare/cluster.go
} istiodClusterDump, err := c.istiod.GetDynamicClusterDump(true) if err != nil { istiodBytes.WriteString(err.Error()) } else { istiod, err := protomarshal.ToJSONWithAnyResolver(istiodClusterDump, " ", &envoyResolver) if err != nil { return err } istiodBytes.WriteString(istiod) } diff := difflib.UnifiedDiff{ FromFile: "Istiod Clusters",
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Tue Mar 12 10:02:09 UTC 2024 - 1.9K bytes - Viewed (0)