Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 128 for bookinfo (0.17 sec)

  1. samples/bookinfo/platform/kube/bookinfo.yaml

    # This file defines the services, service accounts, and deployments for the Bookinfo sample.
    #
    # To apply all 4 Bookinfo services, their corresponding service accounts, and deployments:
    #
    #   kubectl apply -f samples/bookinfo/platform/kube/bookinfo.yaml
    #
    # Alternatively, you can deploy any resource separately:
    #
    #   kubectl apply -f samples/bookinfo/platform/kube/bookinfo.yaml -l service=reviews # reviews Service
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 19:54:05 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  2. samples/bookinfo/platform/kube/bookinfo-mysql.yaml

          version: v1
      template:
        metadata:
          labels:
            app: mysqldb
            version: v1
        spec:
          containers:
          - name: mysqldb
            image: docker.io/istio/examples-bookinfo-mysqldb:1.20.1
            imagePullPolicy: IfNotPresent
            ports:
            - containerPort: 3306
            env:
              - name: MYSQL_ROOT_PASSWORD
                valueFrom:
                  secretKeyRef:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 19:54:05 UTC 2024
    - 2K bytes
    - Viewed (0)
  3. samples/bookinfo/platform/kube/bookinfo-details.yaml

          version: v1
      template:
        metadata:
          labels:
            app: details
            version: v1
        spec:
          containers:
          - name: details
            image: docker.io/istio/examples-bookinfo-details-v1:1.20.1
            imagePullPolicy: IfNotPresent
            ports:
            - containerPort: 9080
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 19:54:05 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  4. releasenotes/notes/bookinfo-openshift.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: documentation
    docs:
    - 'https://istio.io/latest/docs/setup/platform-setup/openshift/'
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 15 13:53:27 UTC 2023
    - 250 bytes
    - Viewed (0)
  5. samples/bookinfo/platform/kube/bookinfo-psa.yaml

    ##################################################################################################
    # This file defines the same services, service accounts, and deployments as bookinfo.yaml with
    # added securityContext fields to allow the bookinfo demo to run on a PodSecurityAdmission
    # enabled cluster that enforces the baseline policy.
    ##################################################################################################
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 19:54:05 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  6. samples/bookinfo/platform/kube/bookinfo-dualstack.yaml

    # This file defines the services, service accounts, and deployments for the Bookinfo sample.
    #
    # To apply all 4 Bookinfo services, their corresponding service accounts, and deployments:
    #
    #   kubectl apply -f samples/bookinfo/platform/kube/bookinfo.yaml
    #
    # Alternatively, you can deploy any resource separately:
    #
    #   kubectl apply -f samples/bookinfo/platform/kube/bookinfo.yaml -l service=reviews # reviews Service
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 19:54:05 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  7. samples/bookinfo/gateway-api/bookinfo-gateway.yaml

    kind: Gateway
    metadata:
      name: bookinfo-gateway
    spec:
      gatewayClassName: istio
      listeners:
      - name: http
        port: 80
        protocol: HTTP
        allowedRoutes:
          namespaces:
            from: Same
    ---
    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: HTTPRoute
    metadata:
      name: bookinfo
    spec:
      parentRefs:
      - name: bookinfo-gateway
      rules:
      - matches:
        - path:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Oct 03 18:46:50 UTC 2022
    - 761 bytes
    - Viewed (0)
  8. samples/bookinfo/networking/bookinfo-gateway.yaml

    apiVersion: networking.istio.io/v1alpha3
    kind: VirtualService
    metadata:
      name: bookinfo
    spec:
      hosts:
      - "*"
      gateways:
      - bookinfo-gateway
      http:
      - match:
        - uri:
            exact: /productpage
        - uri:
            prefix: /static
        - uri:
            exact: /login
        - uri:
            exact: /logout
        - uri:
            prefix: /api/v1/products
        route:
        - destination:
            host: productpage
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jul 11 14:13:54 UTC 2023
    - 873 bytes
    - Viewed (0)
  9. samples/bookinfo/platform/kube/bookinfo-certificate.yaml

    spec:
      secretName: istio-ingressgateway-certs
      issuerRef:
        name: letsencrypt-staging
        kind: ClusterIssuer
      commonName: bookinfo.example.com
      dnsNames:
      - bookinfo.example.com
      acme:
        config:
        - http01:
            ingressClass: none
          domains:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 02 15:32:24 UTC 2019
    - 914 bytes
    - Viewed (0)
  10. samples/bookinfo/platform/kube/bookinfo-ratings.yaml

          version: v1
      template:
        metadata:
          labels:
            app: ratings
            version: v1
        spec:
          containers:
          - name: ratings
            image: docker.io/istio/examples-bookinfo-ratings-v1:1.20.1
            imagePullPolicy: IfNotPresent
            ports:
            - containerPort: 9080
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 19:54:05 UTC 2024
    - 1.4K bytes
    - Viewed (0)
Back to top