Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 18 for Sleep (0.16 sec)

  1. istioctl/pkg/writer/ztunnel/configdump/testdata/workloadsummary_default.txt

    default   reviews-v2-5b667bcbf8-twvx6    10.244.1.42 ambient-worker  None     HBONE
    default   reviews-v3-5b9bd44f4-z9ms4     10.244.1.43 ambient-worker  None     HBONE
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Tue Apr 23 21:30:30 GMT 2024
    - 757 bytes
    - Viewed (0)
  2. istioctl/pkg/writer/ztunnel/configdump/testdata/workloadsummary.txt

    local-path-storage local-path-provisioner-6f8956fb48-vvnpn              10.244.0.4  ambient-control-plane None                                TCP
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Tue Apr 23 21:30:30 GMT 2024
    - 4K bytes
    - Viewed (0)
  3. istioctl/pkg/proxystatus/proxystatus_test.go

    			revision:       "canary",
    		},
    		{ // case 7: supplying type that doesn't select pods should fail
    			args:          strings.Split("serviceaccount/sleep", " "),
    			wantException: true,
    		},
    	}
    	multixds.GetXdsResponse = func(_ *discovery.DiscoveryRequest, _ string, _ string, _ clioptions.CentralControlPlaneOptions, _ []grpc.DialOption,
    Go
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Fri Mar 15 08:28:50 GMT 2024
    - 5.5K bytes
    - Viewed (0)
  4. istioctl/pkg/writer/envoy/configdump/testdata/endpoint/emptyfilter_output.txt

    10.244.0.189:8080                                HEALTHY                  outbound|80||skywalking-ui.skywalking.svc.cluster.local
    10.244.0.177:80                                  HEALTHY                  outbound|80||sleep.default.svc.cluster.local
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Fri Apr 21 14:17:23 GMT 2023
    - 4.5K bytes
    - Viewed (0)
  5. istioctl/pkg/writer/ztunnel/configdump/testdata/dump.json

        },
        "/10.96.89.127": {
          "name": "sleep",
          "namespace": "sleep",
          "hostname": "sleep.sleep.svc.cluster.local",
          "vips": [
            "/10.96.89.127"
          ],
          "ports": {
            "80": 80
          },
          "endpoints": {
            "Kubernetes//Pod/sleep/sleep-7656cf8794-qpvbm:/10.244.1.16": {
              "workloadUid": "Kubernetes//Pod/sleep/sleep-7656cf8794-qpvbm",
    Json
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Tue Apr 16 03:28:36 GMT 2024
    - 33.1K bytes
    - Viewed (0)
  6. istioctl/pkg/writer/compare/testdata/configdump_diff.json

                                            "name": "inbound-vip|80||sleep.default.svc.cluster.local-http",
                                            "typed_config": {
                                              "@type": "type.googleapis.com/google.protobuf.StringValue",
                                              "value": "inbound-vip|80||sleep.default.svc.cluster.local-http"
                                            }
    Json
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Tue Mar 12 10:02:09 GMT 2024
    - 51.6K bytes
    - Viewed (0)
  7. bin/update_proxy.sh

    ISTIO_ENVOY_ARM_RELEASE_URL=${ISTIO_ENVOY_ARM_RELEASE_URL:-${ISTIO_ENVOY_BASE_URL}/envoy-alpha-${ISTIO_ENVOY_LINUX_VERSION}-arm64.tar.gz}
    SLEEP_TIME=60
    
    printf "Verifying %s is available\n" "$ISTIO_ENVOY_RELEASE_URL"
    until curl --output /dev/null --silent --head --fail "$ISTIO_ENVOY_RELEASE_URL"; do
        printf '.'
        sleep $SLEEP_TIME
    done
    printf '\n'
    
    printf "Verifying %s is available\n" "$ISTIO_ENVOY_ARM_RELEASE_URL"
    Shell Script
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Aug 28 07:59:44 GMT 2023
    - 1.9K bytes
    - Viewed (0)
  8. istioctl/pkg/writer/envoy/configdump/testdata/endpoint/emptyfilter_output.yaml

          healthStatus: HEALTHY
          loadBalancingWeight: 1
          metadata:
            filterMetadata:
              envoy.transport_socket_match:
                tlsMode: istio
              istio:
                workload: sleep;default;sleep;latest;Kubernetes
        loadBalancingWeight: 1
        locality: {}
      policy:
        overprovisioningFactor: 140
    - clusterName: xds-grpc
      endpoints:
      - lbEndpoints:
        - endpoint:
            address:
    Others
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Tue Jul 12 02:25:59 GMT 2022
    - 17.1K bytes
    - Viewed (0)
  9. common/scripts/kind_provisioner.sh

    }
    
    function retry() {
      local n=1
      local max=5
      local delay=5
      while true; do
        "$@" && break
        if [[ $n -lt $max ]]; then
          ((n++))
          log "Command failed. Attempt $n/$max:"
          sleep $delay;
        else
          log "The command has failed after $n attempts."  >&2
          return 2
        fi
      done
    }
    
    # load_cluster_topology function reads cluster configuration topology file and
    Shell Script
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Apr 08 19:12:55 GMT 2024
    - 17.3K bytes
    - Viewed (1)
  10. cni/pkg/nodeagent/informers_test.go

    		if err != nil {
    			t.Fatal(err)
    		}
    		if p.Annotations[constants.AmbientRedirection] == constants.AmbientRedirectionEnabled {
    			return
    		}
    		time.Sleep(1 * time.Second)
    	}
    	t.Fatal("Pod not annotated")
    }
    
    func assertPodNotAnnotated(t *testing.T, client kube.Client, pod *corev1.Pod) {
    	for i := 0; i < 5; i++ {
    Go
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Thu Feb 08 01:03:24 GMT 2024
    - 15.8K bytes
    - Viewed (0)
Back to top