- Sort Score
- Result 10 results
- Languages All
Results 101 - 110 of 149 for Kube (0.03 sec)
-
CHANGELOG/CHANGELOG-1.8.md
- [Multi-platform](#multi-platform) - [Cloud Providers](#cloud-providers) - [Network](#network) - [network-policy](#network-policy) - [kube-proxy ipvs mode](#kube-proxy-ipvs-mode) - [API Machinery](#api-machinery) - [kube-apiserver](#kube-apiserver) - [Dynamic Admission Control](#dynamic-admission-control) - [Custom Resource Definitions (CRDs)](#custom-resource-definitions-crds)
Registered: Fri Nov 01 09:05:11 UTC 2024 - Last Modified: Tue Feb 20 15:45:02 UTC 2024 - 312.2K bytes - Viewed (0) -
istioctl/pkg/cli/option.go
if err != nil { r.defaultNamespace = v1.NamespaceDefault return } // If a specific context was specified, use that. Otherwise, just use the current context from the kube config. selectedContext := config.CurrentContext if *r.configContext != "" { selectedContext = *r.configContext } // Use the namespace associated with the selected context as default, if the context has one
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Fri Aug 30 01:19:20 UTC 2024 - 3.9K bytes - Viewed (0) -
architecture/ambient/peer-authentication.md
scope: WORKLOAD_SELECTOR ``` The above policies reject unauthenticated traffic at the ztunnel unless its destination is port 9090. For more complete examples, read through the [test cases](../../pilot/pkg/serviceregistry/kube/controller/ambientindex_test.go) in the `TestRBACConvert` function. ## PeerAuthentication and the Waypoint Proxy
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Thu Aug 01 20:04:20 UTC 2024 - 3.9K bytes - Viewed (0) -
istioctl/pkg/authz/testdata/configdump.yaml
"typed_config": { "@type": "type.googleapis.com/envoy.extensions.filters.network.tcp_proxy.v3.TcpProxy", "stat_prefix": "outbound|53||kube-dns.kube-system.svc.cluster.local", "cluster": "outbound|53||kube-dns.kube-system.svc.cluster.local" } } ] } ], "traffic_direction": "OUTBOUND", "bind_to_port": false },
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Wed Jun 21 14:20:23 UTC 2023 - 206.7K bytes - Viewed (0) -
istioctl/pkg/proxyconfig/proxyconfig_test.go
"k8s.io/client-go/rest/fake" cmdtesting "k8s.io/kubectl/pkg/cmd/testing" cmdutil "k8s.io/kubectl/pkg/cmd/util" "istio.io/istio/istioctl/pkg/cli" "istio.io/istio/pilot/test/util" "istio.io/istio/pkg/kube" "istio.io/istio/pkg/test/util/assert" ) type execTestCase struct { execClientConfig map[string][]byte args []string // Typically use one of the three
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Wed Apr 10 21:51:29 UTC 2024 - 8.9K bytes - Viewed (0) -
cni/pkg/nodeagent/options.go
HostProbeSNATIPV6 = netip.MustParseAddr(env.RegisterStringVar("HOST_PROBE_SNAT_IPV6", DefaultHostProbeSNATIPV6, "").Get()) ) const ( // to reliably identify kubelet healthprobes from inside the pod (versus standard kube-proxy traffic, // since the IP is normally the same), we SNAT identified host probes in the host netns to a fixed // APIPA/"link-local" IP. //
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Fri Aug 16 15:33:47 UTC 2024 - 2.1K bytes - Viewed (0) -
manifests/charts/README.md
workloads can talk with each other and obey the Istio configuration resources, but each environment can use different Istio versions and different configuration defaults. `istioctl kube-inject` or the automatic sidecar injector are used to select the environment. In the case of the sidecar injector, the namespace label `istio-env: <NAME_OF_ENV>` is used instead
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Thu Oct 31 16:56:50 UTC 2024 - 7.4K bytes - Viewed (0) -
CODEOWNERS
/pkg/keepalive/ @istio/wg-networking-maintainers /pkg/monitoring/ @istio/wg-networking-maintainers @istio/wg-policies-and-telemetry-maintainers /pkg/kube/ @istio/wg-networking-maintainers /pkg/mcp/ @istio/wg-networking-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/pkg/install/kubeconfig_test.go
"path/filepath" "testing" "istio.io/istio/cni/pkg/config" testutils "istio.io/istio/pilot/test/util" ) const ( k8sServiceHost = "10.96.0.1" k8sServicePort = "443" kubeCAFilepath = "testdata/kube-ca.crt" saToken = "service_account_token_string" ) func TestCreateValidKubeconfigFile(t *testing.T) { tmp := t.TempDir() os.WriteFile(filepath.Join(tmp, "token"), []byte(saToken), 0o644) cases := []struct {
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Wed Aug 14 19:36:19 UTC 2024 - 3.8K bytes - Viewed (0) -
cni/pkg/nodeagent/cni-watcher.go
PodNamespace string IPs []IPConfig } // IPConfig contains an interface/gateway/address combo defined for a newly-started pod by CNI. // This is "from the horse's mouth" so to speak and will be populated before Kube is informed of the // pod IP. type IPConfig struct { Interface *int Address net.IPNet Gateway net.IP } type CniPluginServer struct { cniListenServer *http.Server
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Tue Jul 02 18:48:50 UTC 2024 - 6.7K bytes - Viewed (0)