Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 128 for bookinfo (0.15 sec)

  1. samples/bookinfo/platform/kube/cleanup.sh

          kubectl delete -n "${NAMESPACE}" "$resource";
        done
      done
      kubectl delete -n "${NAMESPACE}" -f "$SCRIPTDIR/bookinfo-versions.yaml" >/dev/null 2>&1
    fi
    
    OUTPUT=$(mktemp)
    export OUTPUT
    echo "Application cleanup may take up to one minute"
    kubectl delete -n "${NAMESPACE}" -f "$SCRIPTDIR/bookinfo.yaml" > "${OUTPUT}" 2>&1
    ret=$?
    function cleanup() {
      rm -f "${OUTPUT}"
    }
    
    trap cleanup EXIT
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 16:07:18 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  2. tests/testdata/config/rule-route-via-egressgateway.yaml

    apiVersion: networking.istio.io/v1alpha3
    kind: VirtualService
    metadata:
      name: route-via-egressgateway
      namespace: testns
    spec:
      hosts:
        - egressgateway.bookinfo.com
      gateways:
      # Pinned to both the sidecars (mesh) and egress gateway
      - istio-egressgateway
      - mesh
      http:
        - match:
          - gateways:
            - mesh # from sidecars, route to egress gateway service
          route:
          - destination:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Jan 19 04:56:49 UTC 2019
    - 735 bytes
    - Viewed (0)
  3. istioctl/pkg/describe/describe_test.go

    VirtualService: bookinfo
       Route to host "productpage" with weight 30%
       Route to host "productpage2" with weight 20%
       Route to host "productpage3" with weight 50%
       Match: /prefix*
    --------------------
    Exposed on Ingress Gateway http://1.1.1.1
    Exposed on Ingress Gateway http://2.2.2.2
    VirtualService: bookinfo
       Route to host "productpage" with weight 30%
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 09:54:01 UTC 2024
    - 30.4K bytes
    - Viewed (0)
  4. pkg/config/analysis/analyzers/testdata/relative-envoy-filter-operation.yaml

    # If the patch operation is INSERT_FIRST or priority is set, then the analyzer will not do anything
    apiVersion: networking.istio.io/v1alpha3
    kind: EnvoyFilter
    metadata:
      name: test-relative-1
      namespace: bookinfo
    spec:
      workloadSelector:
        labels:
          app: reviews1
      configPatches:
        # The first patch adds the Lua filter to the listener/http connection manager
      - applyTo: HTTP_FILTER
        match:
          context: SIDECAR_INBOUND
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 31 19:38:42 UTC 2022
    - 6.1K bytes
    - Viewed (0)
  5. tests/testdata/config/ingressgateway.yaml

          number: 80 #also declared in gateway's deployment files
          name: http
          protocol: HTTP
        hosts:
        - uk.bookinfo.com
        #tls:
        #  httpsRedirect: true # sends 302 redirect for http requests
      - port:
          number: 443
          name: https
          protocol: HTTPS
        hosts:
        - uk.bookinfo.com
        tls:
          # We can reuse the standard Istio certs mounted in the gateway
          mode: SIMPLE #enables HTTPS on this port
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Jan 19 04:56:49 UTC 2019
    - 914 bytes
    - Viewed (0)
  6. pkg/config/analysis/analyzers/testdata/absolute-envoy-filter-operation.yaml

    # If the patch operation is INSERT_FIRST or priority is set, then the analyzer will not do anything
    apiVersion: networking.istio.io/v1alpha3
    kind: EnvoyFilter
    metadata:
      name: test-reviews-lua-1
      namespace: bookinfo
    spec:
      workloadSelector:
        labels:
          app: reviews
      configPatches:
        # The first patch adds the lua filter to the listener/http connection manager
      - applyTo: HTTP_FILTER
        match:
          context: SIDECAR_INBOUND
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 28 12:58:54 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  7. pkg/config/analysis/analyzers/testdata/envoy-filter-patch-operation.yaml

    # If the patch operation is REPLACE but the applyTo is not HTTP_FILTER or NETWORK_FILTER, then an error will occur
    apiVersion: networking.istio.io/v1alpha3
    kind: EnvoyFilter
    metadata:
      name: test-patch-1
      namespace: bookinfo
    spec:
      workloadSelector:
        labels:
          app: reviews
      priority: 10
      configPatches:
      - applyTo: HTTP_FILTER
        match:
          context: SIDECAR_INBOUND
        patch:
          operation: REPLACE
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 31 19:38:42 UTC 2022
    - 5K bytes
    - Viewed (0)
  8. pkg/config/analysis/analyzers/analyzers_test.go

    		expected: []message{
    			{msg.EnvoyFilterUsesRelativeOperation, "EnvoyFilter bookinfo/test-relative-1"},
    			{msg.EnvoyFilterUsesRelativeOperation, "EnvoyFilter bookinfo/test-relative-2"},
    			{msg.EnvoyFilterUsesRelativeOperation, "EnvoyFilter bookinfo/test-relative-3"},
    			{msg.EnvoyFilterUsesRelativeOperationWithProxyVersion, "EnvoyFilter bookinfo/test-relative-3"},
    		},
    	},
    	{
    		name:       "EnvoyFilterFilterChainMatch",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 07:22:31 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  9. pkg/test/datasets/validation/dataset/networking-v1alpha3-ServiceEntry.yaml

    apiVersion: networking.istio.io/v1alpha3
    kind: ServiceEntry
    metadata:
      name: valid-service-entry
    spec:
      hosts:
      - eu.bookinfo.com
      ports:
      - number: 80
        name: http
        protocol: HTTP
      resolution: DNS
      endpoints:
      # Rather than relying on an external host that might become unreachable (causing test failures)
      # we can mock the external endpoint using service t which has no sidecar.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 17 07:02:38 UTC 2023
    - 512 bytes
    - Viewed (0)
  10. pilot/pkg/serviceregistry/kube/controller/controller_test.go

    			proxy: &model.Proxy{
    				Metadata: &model.NodeMetadata{}, IPAddresses: []string{"2.2.2.21"},
    				ID: "reviews-1.bookinfo-reviews", ConfigNamespace: "bookinfo-reviews",
    			},
    			want: []model.ServiceTarget{{
    				Service: &model.Service{
    					Hostname: "details.bookinfo-details.svc.company.com",
    				},
    				Port: model.ServiceInstancePort{
    					ServicePort: nil,
    					TargetPort:  9090,
    				},
    			}},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 85K bytes
    - Viewed (0)
Back to top