Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 1,034 for It (0.09 sec)

  1. pkg/version/cobra.go

    	DataPlaneVersion *[]ProxyInfo `json:"dataPlaneVersion,omitempty" yaml:"dataPlaneVersion,omitempty"`
    }
    
    // GetRemoteVersionFunc is the function prototype to be passed to CobraOptions so that it is
    // called when invoking `cmd version`
    type (
    	GetRemoteVersionFunc func() (*MeshInfo, error)
    	GetProxyVersionFunc  func() (*[]ProxyInfo, error)
    )
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 08 16:43:05 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  2. 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
        local local_config
        local_config="$(mktemp)"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 14:37:27 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  3. cni/pkg/install/cniconfig.go

    		return cniConfigFilepath, err
    	}
    
    	if cfg.ChainedCNIPlugin && strings.HasSuffix(cniConfigFilepath, ".conf") {
    		// If the old CNI config filename ends with .conf, rename it to .conflist, because it has to be changed to a list
    		installLog.Infof("Renaming %s extension to .conflist", cniConfigFilepath)
    		err = os.Rename(cniConfigFilepath, cniConfigFilepath+"list")
    		if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  4. operator/pkg/util/testdata/overlay-iop.yaml

          k8s:
            resources:
              requests:
                cpu: 10m
                memory: 40Mi
            service:
              ports:
                ## You can add custom gateway ports in user values overrides, but it must include those ports since helm replaces.
                # Note that AWS ELB will by default perform health checks on the first port
                # on this list. Setting this to the health check port will ensure that health
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Aug 15 20:10:17 UTC 2022
    - 2.5K bytes
    - Viewed (0)
  5. pilot/pkg/serviceregistry/kube/controller/endpointslice.go

    	}
    }
    
    // getPod fetches a pod by name or IP address.
    // A pod may be missing (nil) for two reasons:
    //   - It is an endpoint without an associated Pod. In this case, expectPod will be false.
    //   - It is an endpoint with an associate Pod, but its not found. In this case, expectPod will be true.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  6. security/pkg/pki/ca/ca.go

    	RootCertFile = "root-cert.pem"
    	// TLSSecretCACertFile is the CA certificate file name as it exists in tls type k8s secret.
    	TLSSecretCACertFile = "tls.crt"
    	// TLSSecretCAPrivateKeyFile is the CA certificate key file name as it exists in tls type k8s secret.
    	TLSSecretCAPrivateKeyFile = "tls.key"
    	// TLSSecretRootCertFile is the root cert file name as it exists in tls type k8s secret.
    	TLSSecretRootCertFile = "ca.crt"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 30 19:33:26 UTC 2023
    - 17.2K bytes
    - Viewed (0)
  7. samples/tcp-echo/README.md

    # TCP Echo Service
    
    This sample runs [TCP Echo Server](src/) as an Istio service. TCP Echo Server
    allows you to connect to it over TCP and echoes back data sent to it along with
    a preconfigured prefix.
    
    ## Usage
    
    To run the TCP Echo Service sample:
    
    1. Install Istio by following the [istio install instructions](https://istio.io/docs/setup/kubernetes/quick-start.html).
    
    1. Start the `tcp-echo-server` service inside the Istio service mesh:
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Oct 28 07:41:56 UTC 2022
    - 1.2K bytes
    - Viewed (0)
  8. manifests/charts/istio-control/istio-discovery/values.yaml

        # By default, a template `sidecar` is always provided, which contains the template of default sidecar.
        # To inject other additional templates, define it using the `templates` option, and add it to
        # the default templates list.
        # For example:
        #
        # templates:
        #   hello: |
        #     metadata:
        #       labels:
        #         hello: world
        #
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/loadbalancer/loadbalancer.go

    				loadAssignment.Endpoints[index].Priority = uint32(i)
    			}
    		}
    	}
    }
    
    // WrappedLocalityLbEndpoints contain an envoy LocalityLbEndpoints
    // and the original IstioEndpoints used to generate it.
    // It is used to do failover priority label match with proxy labels.
    type WrappedLocalityLbEndpoints struct {
    	IstioEndpoints      []*model.IstioEndpoint
    	LocalityLbEndpoints *endpoint.LocalityLbEndpoints
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 23 05:38:57 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  10. pilot/pkg/credentials/kube/secrets.go

    	}
    	// No cert found. Try to generate a helpful error message
    	if hasKeys(scrt.Data, GenericScrtCaCert) {
    		return nil, fmt.Errorf("found key %q, but it was empty", GenericScrtCaCert)
    	}
    	if hasKeys(scrt.Data, TLSSecretCaCert) {
    		return nil, fmt.Errorf("found key %q, but it was empty", TLSSecretCaCert)
    	}
    	found := truncatedKeysMessage(scrt.Data)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 19:18:21 UTC 2024
    - 10K bytes
    - Viewed (0)
Back to top