Update git submodules
authorRodolfo Alonso Hernandez <rodolfo.alonso.hernandez@intel.com>
Tue, 10 Jul 2018 09:23:29 +0000 (09:23 +0000)
committerGerrit Code Review <gerrit@opnfv.org>
Tue, 10 Jul 2018 09:23:29 +0000 (09:23 +0000)
commita40ad1997c0a1bfb7e262e103d7376c2dd682eb7
tree6b14245e35473a8435977ae23005c8f90e1d056a
parent32814786d7d72c1a9cd3bab93fb370aa78c9b778
Update git submodules

* Update docs/submodules/yardstick from branch 'master'
  - Merge "Add "resources" parameter in Kubernetes context"
  - Add "resources" parameter in Kubernetes context

    This new parameter, "resources", will allow the user to automatically
    add resources in a pod definition per container.

    Example of yaml definition in Kubernetes:
    apiVersion: v1
    kind: Pod
    metadata:
      name: frontend
    spec:
      containers:
        - name: db
          image: mysql
          resources:
            requests:
              memory: "64Mi"
              cpu: "250m"
            limits:
              memory: "128Mi"
              cpu: "500m"

    Example of definition in a Yardstick context:
    context:
      type: Kubernetes
        servers:
            host:
                resources:    # There are two possible keys in this dict:
                              # "requests" and "limits".
                  limits: <dictionary>
                  requests: <dictionary>

    Resources in containers [1].

    [1] https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/

    JIRA:YARDSTICK-1171

    Change-Id: I163d72d9d3e88b538fca73eb4dbf38613aa23ff4
Signed-off-by: John O Loughlin <john.oloughlin@intel.com>
docs/submodules/yardstick