Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 30 for Prestes (0.2 sec)

  1. manifests/charts/istio-control/istio-discovery/README.md

    To view support configuration options and documentation, run:
    
    ```console
    helm show values istio/istiod
    ```
    
    ### Profiles
    
    Istio Helm charts have a concept of a `profile`, which is a bundled collection of value presets.
    These can be set with `--set profile=<profile>`.
    For example, the `demo` profile offers a preset configuration to try out Istio in a test environment, with additional features enabled and lowered resource requirements.
    
    Plain Text
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Wed Jan 10 05:10:03 GMT 2024
    - 2K bytes
    - Viewed (0)
  2. manifests/charts/istio-cni/README.md

    To view support configuration options and documentation, run:
    
    ```console
    helm show values istio/istio-cni
    ```
    
    ### Profiles
    
    Istio Helm charts have a concept of a `profile`, which is a bundled collection of value presets.
    These can be set with `--set profile=<profile>`.
    For example, the `demo` profile offers a preset configuration to try out Istio in a test environment, with additional features enabled and lowered resource requirements.
    
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Wed Jan 10 05:10:03 GMT 2024
    - 2.5K bytes
    - Viewed (0)
  3. licenses/github.com/hashicorp/go-multierror/LICENSE

    Mozilla Public License, version 2.0
    
    1. Definitions
    
    1.1. “Contributor”
    
         means each individual or legal entity that creates, contributes to the
         creation of, or owns Covered Software.
    
    1.2. “Contributor Version”
    
         means the combination of the Contributions of others (if any) used by a
         Contributor and that particular Contributor’s Contribution.
    
    1.3. “Contribution”
    
    Plain Text
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Sat Oct 26 02:47:39 GMT 2019
    - 15.6K bytes
    - Viewed (0)
  4. common-protos/k8s.io/api/core/v1/generated.proto

      // More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes
      repeated PersistentVolume items = 2;
    }
    
    // PersistentVolumeSource is similar to VolumeSource but meant for the
    // administrator who creates PVs. Exactly one of its members must be set.
    message PersistentVolumeSource {
      // gcePersistentDisk represents a GCE Disk resource that is attached to a
    Plain Text
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 255.8K bytes
    - Viewed (0)
  5. cni/pkg/util/pluginutil.go

    	select {
    	case <-w.Events:
    		return nil
    	case err := <-w.Errors:
    		return err
    	case <-ctx.Done():
    		return ctx.Err()
    	}
    }
    
    func (w *Watcher) Close() {
    	_ = w.watcher.Close()
    }
    
    // Creates a file watcher that watches for any changes to the directory
    func CreateFileWatcher(paths ...string) (*Watcher, error) {
    	watcher, err := fsnotify.NewWatcher()
    	if err != nil {
    		return nil, fmt.Errorf("watcher create: %v", err)
    Go
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Fri Jan 26 20:34:28 GMT 2024
    - 3.6K bytes
    - Viewed (0)
  6. istioctl/pkg/workload/workload.go

    	return entryCmd
    }
    
    func createCommand(ctx cli.Context) *cobra.Command {
    	createCmd := &cobra.Command{
    		Use:   "create",
    		Short: "Creates a WorkloadGroup resource that provides a template for associated WorkloadEntries",
    		Long: `Creates a WorkloadGroup resource that provides a template for associated WorkloadEntries.
    Go
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Wed Apr 17 20:06:41 GMT 2024
    - 25.5K bytes
    - Viewed (0)
  7. common/scripts/setup_env.sh

    fi
    
    # echo ${CONDITIONAL_HOST_MOUNTS}
    
    # This function checks if the file exists. If it does, it creates a randomly named host location
    # for the file, adds it to the host KUBECONFIG, and creates a mount for it. Note that we use a copy
    # of the original file, so that the container can write to it.
    add_KUBECONFIG_if_exists () {
      if [[ -f "$1" ]]; then
    Shell Script
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Tue Apr 23 19:52:28 GMT 2024
    - 7.6K bytes
    - Viewed (0)
  8. manifests/charts/gateway/README.md

    To view support configuration options and documentation, run:
    
    ```console
    helm show values istio/gateway
    ```
    
    ### Profiles
    
    Istio Helm charts have a concept of a `profile`, which is a bundled collection of value presets.
    These can be set with `--set profile=<profile>`.
    For example, the `demo` profile offers a preset configuration to try out Istio in a test environment, with additional features enabled and lowered resource requirements.
    
    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)
  9. istioctl/pkg/multicluster/remote_secret.go

    	configSecretKey    = "config"
    )
    
    func remoteSecretNameFromClusterName(clusterName string) string {
    	return remoteSecretPrefix + clusterName
    }
    
    // NewCreateRemoteSecretCommand creates a new command for joining two contexts
    // together in a multi-cluster mesh.
    func NewCreateRemoteSecretCommand(ctx cli.Context) *cobra.Command {
    	opts := RemoteSecretOptions{
    		AuthType:         RemoteSecretAuthTypeBearerToken,
    Go
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Wed Oct 11 01:43:17 GMT 2023
    - 24K bytes
    - Viewed (0)
  10. cni/pkg/cmd/root.go

    		udsLogger := udsLog.NewUDSLogger()
    		if err = udsLogger.StartUDSLogServer(cfg.InstallConfig.LogUDSAddress, ctx.Done()); err != nil {
    			log.Errorf("Failed to start up UDS Log Server: %v", err)
    			return
    		}
    
    		// Creates a basic health endpoint server that reports health status
    		// based on atomic flag, as set by installer
    		// TODO nodeagent watch server should affect this too, and drop atomic flag
    Go
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Tue Apr 30 22:24:38 GMT 2024
    - 12.5K bytes
    - Viewed (0)
Back to top