Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 147 for ztunnelds (0.1 sec)

  1. samples/ambient-argo/documentation/argo-reference-arch.dot

      edge[weight=5]
      appfiles[label="application/*"]
      app -> appfiles [constraint=false]
      appfiles -> appcontents
      appfiles -> appwp
      appfiles -> ig
      appfiles -> nwc
      ztunchart[label="ztunnel",class="helm"]
      ztunnel -> ztunchart -> ztunnelds
      istiodchart[label="istiod",class="helm"]
      cpt -> istiodchart
      istiodchart -> istiod18
      istiodchart -> istiod19
      cnichart[label="cni",class="helm"]
      cni -> cnichart -> cnids
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Nov 04 01:54:50 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  2. architecture/ambient/ztunnel.md

    ## Traffic routing
    
    Based on the three [redirection](#redirection) paths, the ztunnel has three primary types of traffic it handles.
    
    ### Outbound
    
    Requests leaving a pod go through the "outbound" code path on port 15001.
    This is where most of Ztunnel's logic lives.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 22:35:16 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  3. samples/ambient-argo/istio/ztunnel.yaml

    apiVersion: argoproj.io/v1alpha1
    kind: Application
    metadata:
      name: istio-ztunnel
      namespace: argocd
      finalizers:
        - resources-finalizer.argocd.argoproj.io
    spec:
      project: default
      source:
        repoURL: 'https://istio-release.storage.googleapis.com/charts'
        targetRevision: 1.18.5
        chart: ztunnel
        helm:
          valuesObject:
            revision: rapid
      destination:
        name: ambient-cluster
        namespace: istio-system
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Nov 04 01:54:50 UTC 2023
    - 547 bytes
    - Viewed (0)
  4. manifests/addons/dashboards/ztunnel.libsonnet

    local queries = (import './queries.libsonnet').queries({
      container: "istio-proxy",
      pod: "ztunnel-.*",
      component: "ztunnel",
      app: "ztunnel",
    });
    
    dashboard.new('Istio Ztunnel Dashboard')
    + g.dashboard.withPanels(
      grid.makeGrid([
        row.new('Process')
        + row.withPanels([
          panels.timeSeries.base('Ztunnel Versions', queries.istioBuild, 'Version number of each running instance'),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  5. pilot/docker/Dockerfile.ztunnel

    FROM ${BASE_DISTRIBUTION:-debug}
    
    WORKDIR /
    
    ARG istio_version
    
    # Install ztunnel.
    ARG TARGETARCH
    COPY ${TARGETARCH:-amd64}/ztunnel /usr/local/bin/ztunnel
    
    # Environment variable indicating the exact build, for debugging
    ENV ISTIO_META_ISTIO_VERSION $istio_version
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 00:17:51 UTC 2024
    - 944 bytes
    - Viewed (0)
  6. operator/cmd/mesh/testdata/manifest-generate/input/ztunnel.yaml

    apiVersion: install.istio.io/v1alpha1
    kind: IstioOperator
    metadata:
      name: istio-operator
    spec:
      profile: ambient
      components:
        ztunnel:
          enabled: true
          k8s:
            resources:
              requests:
                cpu: 100m
                memory: 100Mi
              limits:
                cpu: 200m
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 12 03:09:45 UTC 2023
    - 327 bytes
    - Viewed (0)
  7. operator/cmd/mesh/testdata/manifest-generate/output/ztunnel.golden.yaml

    apiVersion: apps/v1
    kind: DaemonSet
    metadata:
      annotations: {}
      labels: {}
      name: ztunnel
      namespace: istio-system
    spec:
      selector:
        matchLabels:
          app: ztunnel
      template:
        metadata:
          annotations:
            ambient.istio.io/redirection: disabled
            cni.projectcalico.org/allowedSourcePrefixes: '["0.0.0.0/0"]'
            prometheus.io/port: "15020"
            prometheus.io/scrape: "true"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 31 23:49:40 UTC 2024
    - 3K bytes
    - Viewed (0)
  8. manifests/addons/dashboards/ztunnel-dashboard.gen.json

                      "type": "prometheus",
                      "uid": "$datasource"
                   },
                   "expr": "sum(istio_build{component=\"ztunnel\"}) by (tag)",
                   "legendFormat": "Version ({{tag}})"
                }
             ],
             "title": "Ztunnel Versions",
             "type": "timeseries"
          },
          {
             "datasource": {
                "type": "datasource",
                "uid": "-- Mixed --"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  9. releasenotes/notes/ztunnel-chart-priorityclassname.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: installation
    issue:
      - 47867
    
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 30 19:33:33 UTC 2023
    - 219 bytes
    - Viewed (0)
  10. releasenotes/notes/ztunnel-chart-termgrace.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: installation
    issue: []
    
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 01 16:57:01 UTC 2023
    - 183 bytes
    - Viewed (0)
Back to top