Update git submodules
authorJohn O Loughlin <john.oloughlin@intel.com>
Tue, 15 May 2018 15:20:33 +0000 (16:20 +0100)
committerGerrit Code Review <gerrit@opnfv.org>
Tue, 10 Jul 2018 09:53:44 +0000 (09:53 +0000)
commit9f8b07340f3ca66422e0f8e47de8ba73a8034384
treec1b41db8dbf7f882948247db88ce474f90c3795b
parenta40ad1997c0a1bfb7e262e103d7376c2dd682eb7
Update git submodules

* Update docs/submodules/yardstick from branch 'master'
  - Add "restartPolicy" parameter in Kubernetes policy

    This new parameter, "restartPolicy", will allow define the restart policy per pod.

    Example of yaml definition in Kubernetes:
    apiVersion: v1
    kind: Pod
    metadata:
      name: frontend
    spec:
      containers:
        - name: db
          ...
      restartPolicy: Always  # Possible values: "Always", "OnFailure" and "Never"

    Example of definition in a Yardstick context:
    context:
      type: Kubernetes
        servers:
          host:
            containers:
              - name: ...
            restartPolicy: Always  # Default value: "Always"

    Restart policy [1].
    [1] https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle/#restart-policy

    JIRA: YARDSTICK-1175

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