Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 519 for Shards (0.1 sec)

  1. samples/ambient-argo/istio/control-plane-appset.yaml

        spec:
          project: default
          sources:
          - repoURL: 'https://istio-release.storage.googleapis.com/charts'
            targetRevision: '{{version}}'
            helm:
              valuesObject:
                revision: '{{revision}}'
              valueFiles:
                - >-
                  $values/manifests/charts/istio-control/istio-discovery/ambient-values.yaml
            chart: istiod
          - repoURL: 'https://github.com/istio/istio.git'
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Nov 04 01:54:50 UTC 2023
    - 1006 bytes
    - Viewed (0)
  2. manifests/addons/gen.sh

      --set fullnameOverride=kiali \
      kiali-server \
      --repo https://kiali.org/helm-charts \
      -f "${WD}/values-kiali.yaml"
    } > "${ADDONS}/kiali.yaml"
    
    # Set up prometheus
    helm3 template prometheus prometheus \
      --namespace istio-system \
      --version 25.21.0 \
      --repo https://prometheus-community.github.io/helm-charts \
      -f "${WD}/values-prometheus.yaml" \
      > "${ADDONS}/prometheus.yaml"
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  3. .gitignore

    vendor
    # Contains the built artifacts
    out/
    etc/
    var/
    # Go compiled tests
    *.test
    # Profiles
    *.prof
    # MacOS extended attributes
    ._*
    # MacOS Desktop Services Store
    .DS_Store
    /manifests/charts/**/charts/
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 21:20:01 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  4. samples/ambient-argo/istio/cni.yaml

          - CreateNamespace=true
      sources:
        - repoURL: 'https://istio-release.storage.googleapis.com/charts'
          targetRevision: 1.18.5
          helm:
            valuesObject:
              revision: rapid
              cni:
                cniBinDir: "/home/kubernetes/bin"
            valueFiles:
              - >-
                $values/manifests/charts/istio-cni/ambient-values.yaml
          chart: cni
        - repoURL: 'https://github.com/istio/istio.git'
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Nov 04 01:54:50 UTC 2023
    - 811 bytes
    - Viewed (0)
  5. manifests/charts/base/README.md

    helm repo update
    ```
    
    _See [helm repo](https://helm.sh/docs/helm/helm_repo/) for command documentation._
    
    ## Installing the Chart
    
    To install the chart with the release name `istio-base`:
    
    ```console
    kubectl create namespace istio-system
    helm install istio-base istio/base -n istio-system
    ```
    
    ### Profiles
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  6. tests/integration/helm/upgrade/util.go

    		sanitycheck.RunTrafficTestClientServer(t, oldClient, oldServer)
    
    		// install the charts from this branch with revision set to "latest"
    		// helm upgrade istio-base ../manifests/charts/base --namespace istio-system -f values.yaml
    		// helm install istiod-latest ../manifests/charts/istio-control/istio-discovery -f values.yaml
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 19:04:51 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  7. manifests/charts/ztunnel/README.md

    # Istio Ztunnel Helm Chart
    
    This chart installs an Istio ztunnel.
    
    ## Setup Repo Info
    
    ```console
    helm repo add istio https://istio-release.storage.googleapis.com/charts
    helm repo update
    ```
    
    _See [helm repo](https://helm.sh/docs/helm/helm_repo/) for command documentation._
    
    ## Installing the Chart
    
    To install the chart:
    
    ```console
    helm install ztunnel istio/ztunnel
    ```
    
    ## Uninstalling the Chart
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  8. testing/internal-performance-testing/src/main/resources/org/gradle/reporting/performanceGraph.js

                    value.points.show = value.lines.show = !value.lines.show;
                }
            });
            plot.setData(plotData);
            plot.draw();
        };
    
        function renderGraphs(allDataJson, charts) {
            charts.forEach(chart => {
                renderGraph(
                    allDataJson[chart.field],
                    {
                        tickFormatter: (index, value) => {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 6K bytes
    - Viewed (0)
  9. operator/pkg/helm/renderer.go

    	pl := len(strings.Split(prefix, "/"))
    	pv := strings.Split(path, "/")
    	return strings.Join(pv[pl:], "/")
    }
    
    // list all the profiles.
    func ListProfiles(charts string) ([]string, error) {
    	profiles, err := readProfiles(charts)
    	if err != nil {
    		return nil, err
    	}
    	return util.StringBoolMapToSlice(profiles), nil
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 13 01:59:17 UTC 2022
    - 5K bytes
    - Viewed (0)
  10. operator/cmd/mesh/profile-list.go

    	"istio.io/istio/operator/pkg/helm"
    )
    
    type profileListArgs struct {
    	// manifestsPath is a path to a charts and profiles directory in the local filesystem with a release tgz.
    	manifestsPath string
    }
    
    func addProfileListFlags(cmd *cobra.Command, args *profileListArgs) {
    	cmd.PersistentFlags().StringVarP(&args.manifestsPath, "charts", "", "", ChartsDeprecatedStr)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 15 01:18:49 UTC 2024
    - 1.9K bytes
    - Viewed (0)
Back to top