- Sort Score
- Result 10 results
- Languages All
Results 71 - 80 of 93 for envoy (0.06 sec)
-
istioctl/pkg/writer/envoy/configdump/ecds.go
// limitations under the License. package configdump import ( "fmt" "sort" "strings" "text/tabwriter" core "github.com/envoyproxy/go-control-plane/envoy/config/core/v3" "sigs.k8s.io/yaml" "istio.io/istio/pkg/util/protomarshal" ) const typeURLPrefix = "type.googleapis.com/" func (c *ConfigWriter) PrintEcds(outputFormat string) error {
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Sat Jan 14 02:41:27 UTC 2023 - 2.6K bytes - Viewed (0) -
istioctl/pkg/xds/client.go
// limitations under the License. package xds // xds uses ADSC to call XDS import ( "context" "crypto/tls" "fmt" "strings" discovery "github.com/envoyproxy/go-control-plane/envoy/service/discovery/v3" "google.golang.org/grpc" "google.golang.org/grpc/credentials" "istio.io/istio/istioctl/pkg/clioptions" "istio.io/istio/pilot/pkg/model" "istio.io/istio/pkg/adsc" "istio.io/istio/pkg/kube"
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Tue Dec 19 22:42:42 UTC 2023 - 3.7K bytes - Viewed (0) -
bin/build_ztunnel.sh
DOWNLOAD_COMMAND="wget -qO -" return fi echo wget is not installed. echo Error: curl is not installed or does not support https, wget is not installed. \ Cannot download envoy. Please install wget or add support of https to curl. exit 1 } # Params: # $1: The URL of the ztunnel binary to be downloaded. # $2: The full path of the output binary. # $3: Non-versioned name to use
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Tue Apr 02 21:46:06 UTC 2024 - 5K bytes - Viewed (0) -
istioctl/pkg/internaldebug/internal-debug_test.go
// limitations under the License. package internaldebug import ( "bytes" "context" "fmt" "net/http" "strings" "testing" discovery "github.com/envoyproxy/go-control-plane/envoy/service/discovery/v3" "github.com/spf13/cobra" "google.golang.org/grpc" corev1 "k8s.io/api/core/v1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" "k8s.io/cli-runtime/pkg/resource" "k8s.io/client-go/rest/fake"
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Fri Mar 15 08:28:50 UTC 2024 - 4.5K bytes - Viewed (0) -
istioctl/pkg/writer/envoy/configdump/configdump_test.go
tests := []struct { name string wantOutputFile string callPrime bool wantErr bool }{ { name: "returns expected bootstrap dump from Envoy onto Stdout", callPrime: true, wantOutputFile: "testdata/bootstrapdump.json", }, { name: "errors if config dump is not primed", wantErr: true, }, } for _, tt := range tests {
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Wed Jan 03 23:08:06 UTC 2024 - 3.5K bytes - Viewed (0) -
istioctl/pkg/proxystatus/proxystatus_test.go
// limitations under the License. package proxystatus import ( "bytes" "context" "fmt" "net/http" "strings" "testing" discovery "github.com/envoyproxy/go-control-plane/envoy/service/discovery/v3" "github.com/spf13/cobra" "google.golang.org/grpc" corev1 "k8s.io/api/core/v1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" "k8s.io/cli-runtime/pkg/resource" "k8s.io/client-go/rest/fake"
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Fri Mar 15 08:28:50 UTC 2024 - 5.5K bytes - Viewed (0) -
CODEOWNERS
/pkg/config/analysis/ @istio/wg-networking-maintainers @istio/wg-user-experience-maintainers /pkg/dns/ @istio/wg-networking-maintainers /pkg/envoy/ @istio/wg-networking-maintainers /pkg/istio-agent/ @istio/wg-networking-maintainers @istio/wg-security-maintainers
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Mon Apr 22 19:22:33 UTC 2024 - 7.2K bytes - Viewed (0) -
cni/README.md
### Redirect API The annotation based control is currently only supported in 'sidecar' mode. See plugin/redirect.go for details. - redirectMode allows TPROXY may to be set, required envoy has extra permissions. Default is redirect. - includeIPCidr, excludeIPCidr - includeInboudPorts, excludeInboundPorts - includeOutboutPorts, excludeOutboundPorts - excludeInterfaces - kubevirtInterfaces
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Wed Jul 17 23:10:17 UTC 2024 - 10.5K bytes - Viewed (0) -
istioctl/pkg/describe/describe_test.go
"istio.io/istio/istioctl/pkg/cli" "istio.io/istio/istioctl/pkg/util/configdump" "istio.io/istio/pilot/test/util" "istio.io/istio/pkg/test/util/assert" ) // execAndK8sConfigTestCase lets a test case hold some Envoy, Istio, and Kubernetes configuration type execAndK8sConfigTestCase struct { k8sConfigs []runtime.Object // Canned K8s configuration istioConfigs []runtime.Object // Canned Istio configuration
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/envoy/configdump/cluster.go
// limitations under the License. package configdump import ( "encoding/json" "fmt" "sort" "strings" "text/tabwriter" cluster "github.com/envoyproxy/go-control-plane/envoy/config/cluster/v3" "sigs.k8s.io/yaml" "istio.io/istio/istioctl/pkg/util/proto" "istio.io/istio/pilot/pkg/model" v3 "istio.io/istio/pilot/pkg/xds/v3" "istio.io/istio/pkg/config/host" )
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Thu May 11 05:38:17 UTC 2023 - 5.9K bytes - Viewed (0)