- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 31 for ztunnel (0.07 sec)
-
architecture/ambient/ztunnel.md
This means Ztunnel will have multiple distinct certificates at a time, one for each unique identity (service account) running on its node. When fetching certificates, ztunnel will authenticate to the CA with its own identity, but request the identity of another workload. Critically, the CA must enforce that the ztunnel has permission to request that identity.
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Wed Jul 17 23:10:17 UTC 2024 - 16.8K bytes - Viewed (0) -
manifests/addons/dashboards/ztunnel-dashboard.gen.json
"type": "prometheus", "uid": "$datasource" }, "expr": "sum by (tag) (istio_build{component=\"ztunnel\"})", "legendFormat": "Version ({{tag}})" } ], "title": "Ztunnel Versions", "type": "timeseries" }, { "datasource": { "type": "datasource", "uid": "-- Mixed --"
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Fri Jul 26 23:54:32 UTC 2024 - 17.3K bytes - Viewed (0) -
cni/pkg/nodeagent/ztunnelserver.go
switch { case !errors.Is(err, os.ErrDeadlineExceeded): log.Debugf("ztunnel keepalive failed: %v", err) if errors.Is(err, io.EOF) { log.Debug("ztunnel EOF") return nil } return err case err == nil: log.Warn("ztunnel protocol error, unexpected message") return fmt.Errorf("ztunnel protocol error, unexpected message") default:
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Mon Jul 29 16:08:35 UTC 2024 - 13.2K bytes - Viewed (0) -
istioctl/pkg/ztunnelconfig/ztunnelconfig.go
istioctl ztunnel-config workload <ztunnel-name[.namespace]> --address 0.0.0.0 -o json # Retrieve Ztunnel config dump separately and inspect from file. kubectl exec -it $ZTUNNEL -n istio-system -- curl localhost:15000/config_dump > ztunnel-config.json istioctl ztunnel-config workloads --file ztunnel-config.json # Retrieve workload summary for a specific namespace
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Wed Oct 09 19:17:45 UTC 2024 - 22.2K bytes - Viewed (0) -
istioctl/pkg/writer/ztunnel/configdump/testdata/dump.json
], "protocol": "TCP", "uid": "Kubernetes//Pod/istio-system/ztunnel-n5bg2", "name": "ztunnel-n5bg2", "namespace": "istio-system", "trustDomain": "cluster.local", "serviceAccount": "ztunnel", "workloadName": "ztunnel-n5bg2", "workloadType": "pod", "canonicalName": "ztunnel", "canonicalRevision": "latest", "node": "ambient-control-plane",
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Tue Apr 16 03:28:36 UTC 2024 - 33.1K bytes - Viewed (0) -
cni/pkg/cmd/root.go
registerIntegerParameter(constants.MonitoringPort, 15014, "HTTP port to serve prometheus metrics") registerStringParameter(constants.ZtunnelUDSAddress, "/var/run/ztunnel/ztunnel.sock", "The UDS server address which ztunnel will connect to") registerBooleanParameter(constants.AmbientEnabled, false, "Whether ambient controller is enabled") // Repair
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Fri Aug 16 15:33:47 UTC 2024 - 12.7K bytes - Viewed (0) -
cni/README.md
See [architecture doc](../architecture/ambient/ztunnel-cni-lifecycle.md). ## Reference ### Design details Broadly, `istio-cni` accomplishes ambient redirection by instructing ztunnel to set up sockets within the application pod network namespace, where: - one end of the socket is in the application pod - and the other end is in ztunnel's pod and setting up iptables rules to funnel traffic thru that socket "tube" to ztunnel and back.
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Wed Jul 17 23:10:17 UTC 2024 - 10.5K bytes - Viewed (0) -
Makefile.core.mk
TARGET_OUT=$(TARGET_OUT) ISTIO_BIN=$(ISTIO_BIN) GOOS_LOCAL=$(GOOS_LOCAL) bin/retry.sh SSL_ERROR_SYSCALL bin/init.sh touch $(TARGET_OUT)/istio_is_init .PHONY: init-ztunnel-rs init-ztunnel-rs: TARGET_OUT=$(TARGET_OUT) bin/build_ztunnel.sh # Pull dependencies such as envoy depend: init | $(TARGET_OUT) DIRS_TO_CLEAN := $(TARGET_OUT) DIRS_TO_CLEAN += $(TARGET_OUT_LINUX)
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Thu Oct 03 23:53:59 UTC 2024 - 18.4K bytes - Viewed (0) -
cni/pkg/iptables/iptables.go
) var log = scopes.CNIAgent const ( // INPOD marks/masks InpodTProxyMark = 0x111 InpodTProxyMask = 0xfff InpodMark = 1337 // this needs to match the inpod config mark in ztunnel. InpodMask = 0xfff InpodRestoreMask = 0xffffffff ChainInpodOutput = "ISTIO_OUTPUT" ChainInpodPrerouting = "ISTIO_PRERT" ChainHostPostrouting = "ISTIO_POSTRT" RouteTableInbound = 100
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Tue Oct 15 15:39:28 UTC 2024 - 23.3K bytes - Viewed (0) -
istioctl/pkg/dashboard/dashboard.go
CommandLong: `Open the admin dashboard for a proxy, like envoy and ztunnel pods`, CommandExample: ` # Open envoy admin dashboard for the productpage-123-456.default pod istioctl dashboard proxy productpage-123-456.default # Open envoy admin dashboard for one pod under a deployment istioctl dashboard proxy deployment/productpage-v1 # Open dashboard for the ztunnel-bwh89.istio-system pod
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Mon Apr 15 01:29:35 UTC 2024 - 20.5K bytes - Viewed (0)