Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 20 for generic (0.23 sec)

  1. operator/cmd/mesh/manifest-generate.go

    	InFilenames []string
    	// OutFilename is the path to the generated output directory.
    	OutFilename string
    
    	// EnableClusterSpecific determines if the current Kubernetes cluster will be used to autodetect values.
    	// If false, generic defaults will be used. This is useful when generating once and then applying later.
    	EnableClusterSpecific bool
    
    	// Set is a string with element format "path=value" where path is an IstioOperator path and the value is a
    Go
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Fri Mar 15 01:18:49 GMT 2024
    - 8.5K bytes
    - Viewed (0)
  2. common-protos/k8s.io/api/core/v1/generated.proto

      // Either wwids or combination of targetWWNs and lun must be set, but not both simultaneously.
      // +optional
      repeated string wwids = 5;
    }
    
    // FlexPersistentVolumeSource represents a generic persistent volume resource that is
    // provisioned/attached using an exec based plugin.
    message FlexPersistentVolumeSource {
      // driver is the name of the driver to use for this volume.
      optional string driver = 1;
    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)
  3. licenses/github.com/hashicorp/go-multierror/LICENSE

          either its Contributions or its Contributor Version.
    
    1.12. “Secondary License”
    
          means either the GNU General Public License, Version 2.0, the GNU Lesser
          General Public License, Version 2.1, the GNU Affero General Public
          License, Version 3.0, or any later versions of those licenses.
    
    1.13. “Source Code Form”
    
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Sat Oct 26 02:47:39 GMT 2019
    - 15.6K bytes
    - Viewed (0)
  4. architecture/networking/controllers.md

    Typically, the whole `kclient.Client` is used,though.
    
    Functionality offered by `kclient` includes:
    * Typed clients (via generics) and more ergonomic APIs
    * Ability to make a _delayed_ client. This is used when making clients based on CRDs that may not exist.
      In general, Istio does not fail on missing CRDs and prefers to treat these as if there were just zero resources for that client.
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Fri Feb 09 17:41:25 GMT 2024
    - 4.9K bytes
    - Viewed (0)
  5. licenses/github.com/hashicorp/go-version/LICENSE

          either its Contributions or its Contributor Version.
    
    1.12. “Secondary License”
    
          means either the GNU General Public License, Version 2.0, the GNU Lesser
          General Public License, Version 2.1, the GNU Affero General Public
          License, Version 3.0, or any later versions of those licenses.
    
    1.13. “Source Code Form”
    
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Sat Oct 26 02:47:39 GMT 2019
    - 15.6K bytes
    - Viewed (0)
  6. istioctl/pkg/tag/generate.go

    	}
    
    	// Here we filter out the "app" label, to generate a general label set for the incoming generated
    	// MutatingWebhookConfiguration and ValidatingWebhookConfiguration. The app of the webhooks are not general
    	// since they are functioned differently with different name.
    	// The filtered common labels are then added to the incoming generated
    Go
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Tue Jan 16 17:43:49 GMT 2024
    - 13.2K bytes
    - Viewed (0)
  7. manifests/charts/gateway/README.md

    * Published to official Istio Helm repository.
    * Single chart for all gateways (Ingress, Egress, East West).
    
    #### General concerns
    
    For a smooth migration, the resource names and `Deployment.spec.selector` labels must match.
    
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Tue Apr 02 19:38:07 GMT 2024
    - 6.6K bytes
    - Viewed (0)
  8. licenses/github.com/hashicorp/errwrap/LICENSE

          either its Contributions or its Contributor Version.
    
    1.12. “Secondary License”
    
          means either the GNU General Public License, Version 2.0, the GNU Lesser
          General Public License, Version 2.1, the GNU Affero General Public
          License, Version 3.0, or any later versions of those licenses.
    
    1.13. “Source Code Form”
    
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Sat Oct 26 02:47:39 GMT 2019
    - 15.6K bytes
    - Viewed (0)
  9. licenses/github.com/hashicorp/hcl/LICENSE

          either its Contributions or its Contributor Version.
    
    1.12. “Secondary License”
    
          means either the GNU General Public License, Version 2.0, the GNU Lesser
          General Public License, Version 2.1, the GNU Affero General Public
          License, Version 3.0, or any later versions of those licenses.
    
    1.13. “Source Code Form”
    
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Sat Oct 26 02:47:39 GMT 2019
    - 15.6K bytes
    - Viewed (0)
  10. istioctl/pkg/validate/validate.go

    ) (validation.Warning, error) {
    	decoder := yaml.NewDecoder(reader)
    	decoder.SetStrict(true)
    	var errs error
    	var warnings validation.Warning
    	for {
    		// YAML allows non-string keys and the produces generic keys for nested fields
    		raw := make(map[any]any)
    		err := decoder.Decode(&raw)
    		if err == io.EOF {
    			return warnings, errs
    		}
    		if err != nil {
    Go
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Jan 22 17:58:52 GMT 2024
    - 15K bytes
    - Viewed (0)
Back to top