Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 160 for Shards (0.12 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. operator/scripts/update_version.sh

        # Update version string in global.yaml.
        sed -i "s|hub: gcr.io/istio-release|hub: ${DOCKER_HUB}|g" "${RELEASE_DIR}"/charts/global.yaml
        sed -i "s|tag: .*-latest-daily|tag: ${DOCKER_TAG}|g"      "${RELEASE_DIR}"/charts/global.yaml
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jul 14 23:24:30 UTC 2020
    - 1.1K bytes
    - Viewed (0)
  6. 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)
  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. maven-model-builder/src/test/resources/poms/validation/hard-coded-system-path.xml

      <dependencies>
        <dependency>
          <groupId>test</groupId>
          <artifactId>a</artifactId>
          <version>0.2</version>
          <scope>system</scope>
          <systemPath>should-use-variables-and-not-hard-code-this-path</systemPath>
        </dependency>
        <dependency>
          <groupId>test</groupId>
          <artifactId>b</artifactId>
          <version>0.1</version>
          <scope>system</scope>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Dec 27 17:19:32 UTC 2010
    - 1.4K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top