Uploaded image for project: 'OpenShift Service Mesh'
  1. OpenShift Service Mesh
  2. OSSM-2585

Service Mesh 2.0's manual still mentions 1.0's way for autoscaling

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Done
    • Icon: Major Major
    • OSSM 2.0.0
    • OSSM 2.0.0
    • Documentation
    • None

      https://bugzilla.redhat.com/show_bug.cgi?id=1898429

      The following configuration mentioned in OpenShift Service Mesh 2.0 manual is wrong.

      ----
        gateways:
             istio-egressgateway:
               autoscaleEnabled: false
               autoscaleMin: 1
               autoscaleMax: 5
             istio-ingressgateway:
               autoscaleEnabled: false
               autoscaleMin: 1
               autoscaleMax: 5
               ior_enabled: true  
      [https://docs.openshift.com/container-platform/4.6/service_mesh/v2x/ossm-custom-resources.html#ossm-cr-gateway_ossm-custom-resources-v2x]
      ----
      

      It should be written as follows.

      ----
        gateways:
          egress:
            enabled: true
            runtime:
              deployment:
                autoScaling:
                  enabled: true
                  maxReplicas: 5
                  minReplicas: 1
          enabled: true
          ingress:
            enabled: true
            runtime:
              deployment:
                autoScaling:
                  enabled: true
                  maxReplicas: 5
                  minReplicas: 1
      ----
      

      It seems that some parts of the manual are still written for Service Mesh 1.0.
      (Please see
      Bug 1896607
      (Cannot disable IOR), too)

      We hope that Red Hat will review the manual again and brush up all parts of it.

              ntimpe@redhat.com Neal Timpe
              jstickler Julie Stickler (Inactive)
              Votes:
              0 Vote for this issue
              Watchers:
              5 Start watching this issue

                Created:
                Updated: