Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 81 for productpage (0.48 sec)

  1. samples/bookinfo/README.md

    ```bash
    $ kubectl exec -it "$(kubectl get pod -l app=ratings -o jsonpath='{.items[0].metadata.name}')" -c ratings -- curl productpage:9080/productpage | grep -o "<title>.*</title>"
    <title>Simple Bookstore App</title>
    ```
    
    You can also test it by hitting productpage in the browser.
    
    ```bash
    http://192.168.39.116:31395/productpage
    ```
    
    You should see the following in the browser.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 23:56:37 UTC 2024
    - 16.1K bytes
    - Viewed (0)
  2. pkg/config/analysis/analyzers/testdata/deprecation.yaml

       # filters is deprecated
       filters:
       - listenerMatch:
           portNumber: 15443
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: VirtualService
    metadata:
      name: productpage
      namespace: foo
    spec:
      hosts:
      - productpage
      http:
      - fault:
          delay:
            percent: 50
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: Sidecar
    metadata:
      name: no-selector
      namespace: default
    spec:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 17 12:28:05 UTC 2021
    - 1K bytes
    - Viewed (0)
  3. pkg/config/analysis/analyzers/testdata/virtualservice_conflictingmeshgatewayhosts.yaml

    kind: VirtualService
    metadata:
      name: productpage
      namespace: foo
    spec:
      hosts:
      - productpage # should generate an error as this conflicts with VirtualService foo/bogus
      http:
      - route:
        - destination:
            host: productpage
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: VirtualService
    metadata:
      name: bogus-productpage
      namespace: foo
    spec:
      hosts:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jul 08 15:13:29 UTC 2022
    - 3.3K bytes
    - Viewed (0)
  4. pkg/config/analysis/analyzers/testdata/telemetry-selector.yaml

    apiVersion: v1
    kind: Pod
    metadata:
      labels:
        app: productpage
      name: productpage
      namespace: default
    ---
    apiVersion: v1
    kind: Pod
    metadata:
      labels:
        app: productpage
      name: productpage-other
      namespace: other
    ---
    apiVersion: v1
    kind: Pod
    metadata:
      labels:
        app: reviews
      name: reviews
      namespace: default
    ---
    apiVersion: v1
    kind: Pod
    metadata:
      labels:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 03 06:56:06 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  5. samples/bookinfo/gateway-api/route-all-v1.yaml

        - name: reviews-v1
          port: 9080
    ---
    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: HTTPRoute
    metadata:
      name: productpage
    spec:
      parentRefs:
      - group: ""
        kind: Service
        name: productpage
        port: 9080
      rules:
      - backendRefs:
        - name: productpage-v1
          port: 9080
    ---
    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: HTTPRoute
    metadata:
      name: ratings
    spec:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Aug 25 22:57:42 UTC 2023
    - 984 bytes
    - Viewed (0)
  6. samples/ambient-argo/application/ingress-gateway.yaml

      - matches:
        - path:
            type: Exact
            value: /productpage
        - path:
            type: PathPrefix
            value: /static
        - path:
            type: Exact
            value: /login
        - path:
            type: Exact
            value: /logout
        - path:
            type: PathPrefix
            value: /api/v1/products
        backendRefs:
        - name: productpage
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Nov 04 01:54:50 UTC 2023
    - 760 bytes
    - Viewed (0)
  7. samples/ambient-argo/application/bookinfo-versions.yaml

    spec:
      ports:
      - port: 9080
        name: http
      selector:
        app: reviews
        version: v3
    ---
    apiVersion: v1
    kind: Service
    metadata:
      name: productpage-v1
    spec:
      ports:
      - port: 9080
        name: http
      selector:
        app: productpage
        version: v1
    ---
    apiVersion: v1
    kind: Service
    metadata:
      name: ratings-v1
    spec:
      ports:
      - port: 9080
        name: http
      selector:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Nov 04 01:54:50 UTC 2023
    - 920 bytes
    - Viewed (0)
  8. pilot/pkg/security/authz/matcher/header_test.go

    	}{
    		{
    			Name: "exact match",
    			K:    ":path",
    			V:    "/productpage",
    			Expect: &routepb.HeaderMatcher{
    				Name: ":path",
    				HeaderMatchSpecifier: &routepb.HeaderMatcher_StringMatch{
    					StringMatch: StringMatcherExact("/productpage", false),
    				},
    			},
    		},
    		{
    			Name: "suffix match",
    			K:    ":path",
    			V:    "*/productpage*",
    			Expect: &routepb.HeaderMatcher{
    				Name: ":path",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Aug 17 22:42:11 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  9. samples/bookinfo/networking/virtual-service-all-v1.yaml

    apiVersion: networking.istio.io/v1alpha3
    kind: VirtualService
    metadata:
      name: productpage
    spec:
      hosts:
      - productpage
      http:
      - route:
        - destination:
            host: productpage
            subset: v1
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: VirtualService
    metadata:
      name: reviews
    spec:
      hosts:
      - reviews
      http:
      - route:
        - destination:
            host: reviews
            subset: v1
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jul 13 06:03:11 UTC 2018
    - 804 bytes
    - Viewed (0)
  10. samples/bookinfo/src/productpage/tests/unit/test_productpage.py

    #   limitations under the License.
    #
    # Run from the top level productpage directory with:
    #
    # pip install -r test-requirements.txt
    # python -m unittest discover tests/unit
    
    import unittest
    
    import requests_mock
    
    import productpage
    
    
    class ApplianceTest(unittest.TestCase):
    
        def setUp(self):
            self.app = productpage.app.test_client()
    
        @requests_mock.Mocker()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 23:56:37 UTC 2024
    - 3.2K bytes
    - Viewed (0)
Back to top