Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 21 for Networks (0.24 sec)

  1. cni/pkg/cmd/root.go

    	// Not configurable in CNI helm charts
    	registerStringParameter(constants.MountedCNINetDir, "/host/etc/cni/net.d", "Directory on the container where CNI networks are installed")
    	registerStringParameter(constants.CNINetworkConfigFile, "", "CNI config template as a file")
    	registerStringParameter(constants.KubeconfigFilename, "ZZZ-istio-cni-kubeconfig",
    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)
  2. cmd/storage-rest-client.go

    	case strings.Contains(err.Error(), "server closed idle connection"):
    		return true
    	}
    
    	return false
    }
    
    // Converts network error to storageErr. This function is
    // written so that the storageAPI errors are consistent
    // across network disks.
    func toStorageErr(err error) error {
    	if err == nil {
    		return nil
    	}
    
    	if isNetworkError(err) {
    		return errDiskNotFound
    	}
    
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Sun Apr 28 17:53:50 GMT 2024
    - 26.1K bytes
    - Viewed (0)
  3. cni/README.md

    The ambient CNI agent is the only place where ambient network config and pod redirection machinery happens.
    Plain Text
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Tue Apr 30 22:24:38 GMT 2024
    - 12.3K bytes
    - Viewed (0)
  4. istioctl/pkg/writer/ztunnel/configdump/api.go

    	TrustDomain       string            `json:"trustDomain,omitempty"`
    	Locality          Locality          `json:"locality,omitempty"`
    	Node              string            `json:"node"`
    	Network           string            `json:"network,omitempty"`
    	Status            string            `json:"status"`
    	ApplicationTunnel ApplicationTunnel `json:"applicationTunnel,omitempty"`
    }
    
    type ApplicationTunnel struct {
    Go
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Thu Apr 25 02:16:06 GMT 2024
    - 5.2K bytes
    - Viewed (0)
  5. cni/pkg/constants/constants.go

    	MountedCNINetDir     = "mounted-cni-net-dir"
    	CNINetDir            = "cni-net-dir"
    	CNIConfName          = "cni-conf-name"
    	ChainedCNIPlugin     = "chained-cni-plugin"
    	CNINetworkConfigFile = "cni-network-config-file"
    	CNINetworkConfig     = "cni-network-config"
    	LogLevel             = "log-level"
    	KubeconfigFilename   = "kubecfg-file-name"
    	KubeconfigMode       = "kubeconfig-mode"
    	KubeCAFile           = "kube-ca-file"
    Go
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Tue Apr 30 22:24:38 GMT 2024
    - 2.7K bytes
    - Viewed (0)
  6. docs/metrics/v3.md

    | `minio_system_network_internode_dial_errors_total`   | `counter` | Total number of internode TCP dial timeouts and errors   | `server,pool_index` |
    | `minio_system_network_internode_dial_avg_time_nanos` | `gauge`   | Average dial time of internodes TCP calls in nanoseconds | `server,pool_index` |
    Plain Text
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Fri Apr 26 16:07:23 GMT 2024
    - 26K bytes
    - Viewed (0)
  7. architecture/ambient/ztunnel.md

      * In practice, this largely means that references are fully qualified in the API. IP Addresses (generally) have a network associated with them, node names have a cluster associated with them, etc.
    
    See the [XDS Evolution](https://docs.google.com/document/d/1V5wkeBHbLSLMzAMbwFlFZNHdZPyUEspG4lHbnB0UaCg/edit) document for more history and details.
    
    Plain Text
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Thu Apr 25 22:35:16 GMT 2024
    - 16.6K bytes
    - Viewed (0)
  8. helm/minio/values.yaml

      # Can leave empty
      claimPrefix: ""
      comment: ""
      displayName: ""
    
    networkPolicy:
      enabled: false
      # Specifies whether the policies created will be standard Network Policies (flavor: kubernetes)
      # or Cilium Network Policies (flavor: cilium)
      flavor: kubernetes
      allowExternal: true
      # only when using flavor: cilium
      egressEntities:
       - kube-apiserver
    
    ## PodDisruptionBudget settings
    Others
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Sun Apr 28 10:14:37 GMT 2024
    - 18.4K bytes
    - Viewed (0)
  9. cmd/metrics-v3.go

    const (
    	apiRequestsCollectorPath collectorPath = "/api/requests"
    	apiBucketCollectorPath   collectorPath = "/api/bucket"
    
    	systemNetworkInternodeCollectorPath collectorPath = "/system/network/internode"
    	systemDriveCollectorPath            collectorPath = "/system/drive"
    	systemMemoryCollectorPath           collectorPath = "/system/memory"
    	systemCPUCollectorPath              collectorPath = "/system/cpu"
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Fri Apr 26 16:07:23 GMT 2024
    - 10K bytes
    - Viewed (0)
  10. cni/pkg/iptables/iptables.go

    			}
    		}
    	}
    	return errors.Join(delErrs...)
    }
    
    // Setup iptables rules for in-pod mode. Ideally this should be an idempotent function.
    // NOTE that this expects to be run from within the pod network namespace!
    func (cfg *IptablesConfigurator) CreateInpodRules(hostProbeSNAT *netip.Addr) error {
    	// Append our rules here
    	builder := cfg.appendInpodRules(hostProbeSNAT)
    
    	if err := cfg.addLoopbackRoute(); err != nil {
    Go
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Tue Apr 30 22:24:38 GMT 2024
    - 19.6K bytes
    - Viewed (0)
Back to top