Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 53 for GetWork (0.21 sec)

  1. pkg/kubelet/kubelet.go

    	if networkReady == nil || !networkReady.Status {
    		klogErrorS(nil, "Container runtime network not ready", "networkReady", networkReady)
    		kl.runtimeState.setNetworkState(fmt.Errorf("container runtime network not ready: %v", networkReady))
    	} else {
    		// Set nil if the container runtime network is ready.
    		kl.runtimeState.setNetworkState(nil)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  2. cluster/gce/util.sh

          --network "${NETWORK}" \
          --source-ranges "10.0.0.0/8" \
          --allow "tcp:1-65535,udp:1-65535,icmp" \
          --target-tags "${NODE_TAG}"&
      fi
    
      if ! gcloud compute firewall-rules describe --project "${NETWORK_PROJECT}" "${NETWORK}-default-ssh" &>/dev/null; then
        gcloud compute firewall-rules create "${NETWORK}-default-ssh" \
          --project "${NETWORK_PROJECT}" \
          --network "${NETWORK}" \
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  3. operator/cmd/mesh/testdata/manifest-generate/output/pilot_default.golden.yaml

                      value: "{{ valueOrDefault .Values.global.multiCluster.clusterName `Kubernetes` }}"
                    {{- $network := valueOrDefault (index .InfrastructureLabels `topology.istio.io/network`) .Values.global.network }}
                    {{- if $network }}
                    - name: ISTIO_META_NETWORK
                      value: "{{ $network }}"
                    {{- end }}
                    - name: ISTIO_META_INTERCEPTION_MODE
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 102.6K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/cluster_builder_test.go

    			Namespace: "test-ns",
    		},
    	}
    
    	buildMetadata := func(networkID network.ID, tlsMode, workloadname, namespace string,
    		clusterID istiocluster.ID, lbls labels.Instance,
    	) *core.Metadata {
    		newmeta := &core.Metadata{}
    		util.AppendLbEndpointMetadata(&model.EndpointMetadata{
    			Network:      networkID,
    			TLSMode:      tlsMode,
    			WorkloadName: workloadname,
    			Namespace:    namespace,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 110.4K bytes
    - Viewed (0)
  5. src/net/http/transport_test.go

    		PutIdleConn:  func(err error) { t.Logf("PutIdleConn(%v)", err) },
    		ConnectStart: func(network, addr string) { t.Logf("ConnectStart(%q, %q)", network, addr) },
    		ConnectDone:  func(network, addr string, err error) { t.Logf("ConnectDone(%q, %q, %v)", network, addr, err) },
    	}
    	ctx := httptrace.WithClientTrace(context.Background(), trace)
    
    	for i := 0; i < 2; i++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  6. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    ks/traffic-management/egress/egress-gateway/): ```yaml service: # Egress gateways do not need an external LoadBalancer IP type: ClusterIP ``` #### Multi-network/VM Gateway Deploying a Gateway to be used as a [Multi-network Gateway](https://istio.io/latest/docs/setup/install/multicluster/) for network `network-1`: ```yaml networkGateway: network-1 ``` ### Migrating from other installation methods Installations from other installation methods (such as istioctl, Istio Operator, other helm charts, etc)...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 198.1K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/gateway_test.go

    					{
    						TotalMatch: true,
    						NetworkFilters: []string{
    							"extenstions.istio.io/wasmplugin/istio-system.wasm-network-authn",
    							"extenstions.istio.io/wasmplugin/istio-system.wasm-network-authz",
    							"extenstions.istio.io/wasmplugin/istio-system.wasm-network-stats",
    							wellknown.HTTPConnectionManager,
    						},
    						HTTPFilters: []string{
    							xdsfilters.MxFilterName,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 144K bytes
    - Viewed (0)
  8. tests/integration/pilot/common/routing.go

      - name: tcp
        port: {{.TcpPort}}
        targetPort: {{.TcpTargetPort}}
      selector:
        test.istio.io/class: standard
        {{- if .Network }}
        topology.istio.io/network: {{.Network}}
    	{{- end }}
    `, map[string]any{
    				"Service":        svcName,
    				"Network":        c.Config().Cluster.NetworkName(),
    				"Port":           ports.HTTP.ServicePort,
    				"TargetPort":     ports.HTTP.WorkloadPort,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 21:52:51 UTC 2024
    - 135.9K bytes
    - Viewed (0)
  9. cmd/admin-handlers.go

    	connectTime := time.Now()
    	for {
    		n, err := io.CopyN(xioutil.Discard, r.Body, 128*humanize.KiByte)
    		if err != nil && err != io.EOF && err != io.ErrUnexpectedEOF {
    			// would mean the network is not stable. Logging here will help in debugging network issues.
    			if time.Since(connectTime) < (globalNetPerfMinDuration - time.Second) {
    				adminLogIf(ctx, err)
    			}
    		}
    		totalRx += n
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 98K bytes
    - Viewed (0)
  10. cluster/gce/gci/configure-helper.sh

        use_cloud_config="true"
        cat <<EOF >>/etc/gce.conf
    network-project-id = ${NETWORK_PROJECT_ID}
    EOF
      fi
      if [[ -n "${STACK_TYPE:-}" ]]; then
        use_cloud_config="true"
        cat <<EOF >>/etc/gce.conf
    stack-type = ${STACK_TYPE}
    EOF
      fi
      if [[ -n "${NODE_NETWORK:-}" ]]; then
        use_cloud_config="true"
        cat <<EOF >>/etc/gce.conf
    network-name = ${NODE_NETWORK}
    EOF
      fi
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
Back to top