Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 128 for bookinfo (0.62 sec)

  1. samples/bookinfo/platform/kube/README.md

    See the [Bookinfo guide](https://istio.io/docs/guides/bookinfo.html) in Istio
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 11 00:26:44 UTC 2018
    - 137 bytes
    - Viewed (0)
  2. samples/bookinfo/swagger.yaml

    swagger: "2.0"
    info:
      description: "This is the API of the Istio BookInfo sample application."
      version: "1.0.0"
      title: "BookInfo API"
      termsOfService: "https://istio.io/"
      license:
        name: "Apache 2.0"
        url: "http://www.apache.org/licenses/LICENSE-2.0.html"
    basePath: "/api/v1"
    tags:
    - name: "product"
      description: "Information about a product (in this case a book)"
    - name: "review"
      description: "Review information for a product"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Sep 21 17:00:23 UTC 2017
    - 6.2K bytes
    - Viewed (0)
  3. tests/testdata/config/egressgateway.yaml

          name: http
          protocol: HTTP
        hosts:
        - egressgateway.bookinfo.com
        #tls:
        #  httpsRedirect: true # sends 302 redirect for http requests
      - port:
          number: 443
          name: https
          protocol: HTTPS
        hosts:
        - egressgateway.bookinfo.com
        tls:
          # We can reuse the standard Istio certs mounted in the gateway
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Jan 19 04:56:49 UTC 2019
    - 933 bytes
    - Viewed (0)
  4. samples/sleep/README.md

        kubectl apply -f <(istioctl kube-inject -f sleep.yaml)
        ```
    
    1. Start some other services, for example, the [Bookinfo sample](https://istio.io/docs/examples/bookinfo/).
    
        Now you can `kubectl exec` into the sleep service to experiment with Istio networking.
        For example, the following commands can be used to call the Bookinfo `ratings` service:
    
        ```bash
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 03 03:51:51 UTC 2021
    - 1.4K bytes
    - Viewed (0)
  5. istioctl/pkg/waypoint/waypoint_test.go

    			gateways: []*gateway.Gateway{
    				makeGateway("bookinfo", "default", false, true),
    				makeGateway("bookinfo-invalid", "fake", true, false),
    				makeGateway(constants.DefaultNamespaceWaypoint, "default", false, true),
    				makeGateway("bookinfo-valid", "bookinfo", true, true),
    				makeGateway("no-name-convention", "default", true, true),
    				makeGatewayWithRevision("bookinfo-rev", "bookinfo", true, true, "rev1"),
    			},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 04 15:53:09 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  6. pkg/config/analysis/analyzers/testdata/envoy-filter-replace-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-replace-1
      namespace: bookinfo
    spec:
      workloadSelector:
        labels:
          app: reviews1
      priority: 10
      configPatches:
      - applyTo: CLUSTER
        match:
          context: SIDECAR_OUTBOUND
        patch:
          operation: REPLACE
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 31 19:38:42 UTC 2022
    - 4.9K bytes
    - Viewed (0)
  7. tests/testdata/config/virtual-service-all.yaml

    apiVersion: networking.istio.io/v1alpha3
    kind: VirtualService
    metadata:
      name: all
      namespace: testns
    spec:
      hosts:
      - service3.default.svc.cluster.local
      - uk.bookinfo.com
      - eu.bookinfo.com
      gateways:
      - my-gateway
      - mesh # applies to all the sidecars in the mesh
      http:
      - match:
        - headers:
            cookie:
              regex: "^(.*?;)?(user=dev-123)(;.*)?"
        route:
        - destination:
            port:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Jan 19 04:56:49 UTC 2019
    - 790 bytes
    - Viewed (0)
  8. istioctl/pkg/describe/testdata/describe/http_config.json

                        "metadata": {
                          "filter_metadata": {
                            "istio": {
                              "config": "/apis/networking.istio.io/v1alpha3/namespaces/default/virtual-service/bookinfo"
                            }
                          }
                        },
                        "decorator": {
                          "operation": "productpage.default.svc.cluster.local:9080/productpage"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 15 15:02:17 UTC 2023
    - 13.7K bytes
    - Viewed (0)
  9. samples/ambient-argo/application/details-waypoint.yaml

    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: Gateway
    metadata:
      labels:
        istio.io/rev: stable
      name: bookinfo-details
    spec:
      gatewayClassName: istio-waypoint
      listeners:
      - name: mesh
        port: 15008
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 03 21:10:07 UTC 2024
    - 234 bytes
    - Viewed (0)
  10. pkg/config/analysis/analyzers/testdata/injection-image-distroless.yaml

    apiVersion: v1
    kind: Pod
    metadata:
      labels:
        app: details
      name: details-v1-pod-old
      namespace: enabled-namespace
    spec:
      containers:
      - image: docker.io/istio/examples-bookinfo-details-v1:1.15.0
        name: details
      - image: docker.io/istio/proxyv2:1.3.0
        name: istio-proxy
    ---
    # details-v1-pod-new is up-to-date and should not get a warning.
    apiVersion: v1
    kind: Pod
    metadata:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Nov 28 02:55:12 UTC 2023
    - 1.4K bytes
    - Viewed (0)
Back to top