Skip to content
This repository has been archived by the owner on Oct 22, 2024. It is now read-only.

dependency update #764

Merged
merged 5 commits into from
Nov 24, 2020
Merged

dependency update #764

merged 5 commits into from
Nov 24, 2020

Commits on Nov 20, 2020

  1. test: more robust test<->deployment binding

    The anonymous function is bound to the loop variables which change
    their content. This works with the current Ginkgo v1.12.1
    where Describe calls the function immediately, but in Ginkgo v1.14.1
    that changes and the function is stored and called much later.
    
    To prepare for that, each function instance must be bound to copies of
    the loop variables. Otherwise for example a test for
    "operator" runs with the deployment for "direct-testing".
    pohly committed Nov 20, 2020
    Configuration menu
    Copy the full SHA
    b06bde9 View commit details
    Browse the repository at this point in the history
  2. dependency update

    This is the result of `go get -u ./...` with some manual tweaks:
    - gopkg.in/square/go-jose.v2@v2.2.2 and google.golang.org/grpc@v1.27.0
      because that is what Kubernetes uses and newer versions
      changed the API such that Kubernetes code doesn't compile
    - github.com/operator-framework/operator-sdk/version was made
      an internal package, so we can't use it anymore
    - github.com/operator-framework/operator-sdk/pkg/restmapper was
      removed - we don't seem to need it anymore
    pohly committed Nov 20, 2020
    Configuration menu
    Copy the full SHA
    c82cdfc View commit details
    Browse the repository at this point in the history
  3. test: log HTTP metrics response on failure

    When we get an unexpected status code like 500, the body contains an
    explanation of what went wrong.
    pohly committed Nov 20, 2020
    Configuration menu
    Copy the full SHA
    f126da9 View commit details
    Browse the repository at this point in the history
  4. pmem-csi-driver test: enable klog/v2

    To see log output, we must initialize the arguments and run the test
    with -v=5.
    pohly committed Nov 20, 2020
    Configuration menu
    Copy the full SHA
    fba7b1a View commit details
    Browse the repository at this point in the history

Commits on Nov 23, 2020

  1. csi-lib-utils v0.9.0

    The new release adds support for process_start_time, which we don't
    need and don't want because we already get it through the Prometheus
    Golang collector.
    
    Worse, if we keep it enabled in the metrics manager, then metrics
    collection fails because the two definitions are slightly different,
    which Prometheus treats as an error.
    pohly committed Nov 23, 2020
    Configuration menu
    Copy the full SHA
    4a70dae View commit details
    Browse the repository at this point in the history