Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for advanced (0.28 sec)

  1. istioctl/pkg/kubeinject/testdata/mesh-config.yaml

      # the same changes in start up args in istio-ingress pods.
      #
      # TCP connection timeout between Envoy & the application, and between Envoys.
      connectTimeout: 1s
      #
      ### ADVANCED SETTINGS #############
      # Where should envoy's configuration be stored in the istio-proxy container
      configPath: "/etc/istio/proxy"
      binaryPath: "/usr/local/bin/envoy"
      # The pseudo service name used for Envoy.
    Others
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Thu Jun 15 15:02:17 GMT 2023
    - 2.2K bytes
    - Viewed (0)
  2. operator/README.md

    ```yaml
    apiVersion: install.istio.io/v1alpha1
    kind: IstioOperator
    spec:
      values:
        pilot:
          traceSampling: 0.1 # override from 1.0
    ```
    
    ### Advanced K8s resource overlays
    
    Advanced users may occasionally have the need to customize parameters (like container command line flags) which are not
    Plain Text
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Sun Sep 17 08:27:52 GMT 2023
    - 17.5K bytes
    - Viewed (0)
  3. istioctl/pkg/kubeinject/testdata/istio-operator.yaml

        enableTracing: true
        # This is the ingress service name, update if you used a different name
        ingressService: istio-ingress
        connectTimeout: 1s
        defaultConfig:
          ### ADVANCED SETTINGS #############
          # Where should envoy's configuration be stored in the istio-proxy container
          configPath: "/etc/istio/proxy"
          binaryPath: "/usr/local/bin/envoy"
    Others
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Thu Jun 15 15:02:17 GMT 2023
    - 689 bytes
    - Viewed (0)
  4. manifests/charts/UPDATING-CHARTS.md

    The `values.yaml` API is intended to maintain a *minimal core set of configuration* that most users will use.
    For bespoke use cases, [Helm Chart Customization](https://istio.io/latest/docs/setup/additional-setup/customize-installation-helm/#advanced-helm-chart-customization) can be used
    to allow arbitrary customizations.
    
    If the change truly is generally purpose, it is generally preferred to have broader APIs. For example, instead of providing
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Thu Jul 27 18:28:55 GMT 2023
    - 3.2K bytes
    - Viewed (0)
  5. manifests/charts/gateways/istio-egress/values.yaml

          configVolumes: []
          additionalContainers: []
    
          serviceAccount:
            # Annotations to add to the service account
            annotations: {}
    
          ### Advanced options ############
          # TODO: convert to real options, env should not be exposed
          env: {}
            # Set this to "external" if and only if you want the egress gateway to
    Others
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Tue Feb 27 16:55:16 GMT 2024
    - 12.4K bytes
    - Viewed (0)
  6. manifests/charts/gateways/istio-ingress/values.yaml

          ingressPorts: []
          additionalContainers: []
          configVolumes: []
    
          serviceAccount:
            # Annotations to add to the service account
            annotations: {}
    
          ### Advanced options ############
          env: {}
          nodeSelector: {}
          tolerations: []
    
          # Specify the pod anti-affinity that allows you to constrain which nodes
    Others
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Tue Feb 27 16:55:16 GMT 2024
    - 13K bytes
    - Viewed (0)
  7. manifests/charts/istio-control/istio-discovery/values.yaml

        #         hello: world
        #
        # Then starting a pod with the `inject.istio.io/templates: hello` annotation, will result in the pod
        # being injected with the hello=world labels.
        # This is intended for advanced configuration only; most users should use the built in template
        templates: {}
    
        # Default templates specifies a set of default templates that are used in sidecar injection.
    Others
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 16:58:23 GMT 2024
    - 19.6K bytes
    - Viewed (0)
  8. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    accepted. The `values.yaml` API is intended to maintain a *minimal core set of configuration* that most users will use. For bespoke use cases, [Helm Chart Customization](https://istio.io/latest/docs/setup/additional-setup/customize-installation-helm/#advanced-helm-chart-customization) can be used to allow arbitrary customizations. If the change truly is generally purpose, it is generally preferred to have broader APIs. For example, instead of providing direct access to each of the complex fields in [...
    Others
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Wed Jan 10 05:10:03 GMT 2024
    - 198.1K bytes
    - Viewed (1)
  9. manifests/charts/istiod-remote/values.yaml

        #         hello: world
        #
        # Then starting a pod with the `inject.istio.io/templates: hello` annotation, will result in the pod
        # being injected with the hello=world labels.
        # This is intended for advanced configuration only; most users should use the built in template
        templates: {}
        # Default templates specifies a set of default templates that are used in sidecar injection.
    Others
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 16:58:23 GMT 2024
    - 19.6K bytes
    - Viewed (0)
  10. common/scripts/kind_provisioner.sh

    # 1. IMAGE = docker image used as node by KinD
    # 2. IP_FAMILY = either ipv4 or ipv6
    #
    # NOTE: Please call load_cluster_topology before calling this method as it expects
    # cluster topology information to be loaded in advance
    function setup_kind_clusters() {
      IMAGE="${1:-"${DEFAULT_KIND_IMAGE}"}"
      KUBECONFIG_DIR="${ARTIFACTS:-$(mktemp -d)}/kubeconfig"
      IP_FAMILY="${2:-ipv4}"
    
      check_default_cluster_yaml
    
    Shell Script
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Mon Apr 08 19:12:55 GMT 2024
    - 17.3K bytes
    - Viewed (1)
Back to top