Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 25 for usage (0.15 sec)

  1. manifests/charts/UPDATING-CHARTS.md

    This provides maximum flexibility with minimal API surface overhead.
    
    ## Making changes
    
    ## Step 1. Make changes in charts and values.yaml in `manifests` directory
    
    Be sure to provide sufficient documentation and example usage in values.yaml.
    If the chart has a `values.schema.json`, that should be updated as well.
    
    ## Step 2. Update the istioctl/Operator values
    
    If you are modifying the `gateway` chart, you can stop here.
    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)
  2. common-protos/k8s.io/api/certificates/v1beta1/generated.proto

      //
      // The minimum valid value for expirationSeconds is 600, i.e. 10 minutes.
      //
      // +optional
      optional int32 expirationSeconds = 8;
    
      // allowedUsages specifies a set of usage contexts the key will be
      // valid for.
      // See:
      // 	https://tools.ietf.org/html/rfc5280#section-4.2.1.3
      // 	https://tools.ietf.org/html/rfc5280#section-4.2.1.12
      //
      // Valid values are:
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 6.7K bytes
    - Viewed (0)
  3. manifests/charts/istio-control/istio-discovery/values.yaml

        # mechanisms (e.g., environmental variable CA_PROVIDER).
        caName: ""
    
        # whether to use autoscaling/v2 template for HPA settings
        # for internal usage only, not to be configured by users.
        autoscalingv2API: true
    
      base:
        # For istioctl usage to disable istio config crds in base
        enableIstioConfigCRDs: true
    
      # `istio_cni` has been deprecated and will be removed in a future release. use `pilot.cni` instead
    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)
  4. common/scripts/tracing.sh

    # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    # See the License for the specific language governing permissions and
    # limitations under the License.
    
    # Usage: tracing::extract_prow_trace.
    # If running in a prow job, this sets the parent trace to the same value Prow tracing will use, as defined in https://github.com/kubernetes/test-infra/issues/30010
    function tracing::extract_prow_trace() {
    Shell Script
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Fri Jul 28 15:25:47 GMT 2023
    - 4.1K bytes
    - Viewed (0)
  5. manifests/charts/base/values.yaml

        # For example: https://$remotePilotAddress:15017/validate
        validationURL: ""
        # Validation webhook caBundle value. Useful when running pilot with a well known cert
        validationCABundle: ""
    
        # For istioctl usage to disable istio config crds in base
        enableIstioConfigCRDs: true
    
      defaultRevision: "default"
      experimental:
    Others
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Apr 22 22:00:40 GMT 2024
    - 1.3K bytes
    - Viewed (0)
  6. common-protos/k8s.io/api/core/v1/generated.proto

    // New uses of this type are discouraged because of difficulty describing its usage when embedded in APIs.
    //  1. Ignored fields.  It includes many fields which are not generally honored.  For instance, ResourceVersion and FieldPath are both very rarely valid in actual usage.
    //  2. Invalid usage help.  It is impossible to add specific help for individual usage.  In most embedded usages, there are particular
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 255.8K bytes
    - Viewed (0)
  7. manifests/charts/istiod-remote/values.yaml

        # mechanisms (e.g., environmental variable CA_PROVIDER).
        caName: ""
        # whether to use autoscaling/v2 template for HPA settings
        # for internal usage only, not to be configured by users.
        autoscalingv2API: true
      base:
        # For istioctl usage to disable istio config crds in base
        enableIstioConfigCRDs: true
      # `istio_cni` has been deprecated and will be removed in a future release. use `pilot.cni` instead
    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. architecture/networking/pilot.md

    Istio reads from over 20 different resources types, and aggregates them together to build the proxy configuration. These resources can be sourced from Kubernetes (via watches), files, or over xDS; Kubernetes is by far the most common usage, though.
    
    Primarily for historical reasons, ingestion is split into a few components.
    
    #### ConfigStore
    
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Wed Feb 07 17:53:24 GMT 2024
    - 19.1K bytes
    - Viewed (0)
  9. common-protos/k8s.io/api/storage/v1/generated.proto

      //
      // +optional
      optional bool podInfoOnMount = 2;
    
      // volumeLifecycleModes defines what kind of volumes this CSI volume driver supports.
      // The default if the list is empty is "Persistent", which is the usage defined by the
      // CSI specification and implemented in Kubernetes via the usual PV/PVC mechanism.
      //
      // The other mode is "Ephemeral". In this mode, volumes are defined inline inside the pod spec
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 24.7K bytes
    - Viewed (0)
  10. cni/pkg/cmd/root.go

    }
    
    func registerStringParameter(name, value, usage string) {
    	rootCmd.Flags().String(name, value, usage)
    	registerEnvironment(name, value, usage)
    }
    
    func registerIntegerParameter(name string, value int, usage string) {
    	rootCmd.Flags().Int(name, value, usage)
    	registerEnvironment(name, value, usage)
    }
    
    func registerBooleanParameter(name string, value bool, usage string) {
    	rootCmd.Flags().Bool(name, value, usage)
    Go
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Thu Apr 11 21:42:29 GMT 2024
    - 12.4K bytes
    - Viewed (0)
Back to top