Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add release tools #3

Merged
merged 181 commits into from
Oct 7, 2020

Commits on Jan 16, 2019

  1. Configuration menu
    Copy the full SHA
    0535c0d View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    b41cac3 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    d23a16c View commit details
    Browse the repository at this point in the history

Commits on Jan 21, 2019

  1. build.make: initial content

    The repo was created with an HTML version of the build.make file from
    https://github.com/pohly/csi-build-rules/. Here's the raw file.
    pohly committed Jan 21, 2019
    Configuration menu
    Copy the full SHA
    a113647 View commit details
    Browse the repository at this point in the history
  2. RELEASE.md: clarify release process

    It's worth calling out explicitly that only the master branch is
    maintained.
    pohly committed Jan 21, 2019
    Configuration menu
    Copy the full SHA
    51e16be View commit details
    Browse the repository at this point in the history
  3. README.md: update repo name, add initial setup step

    The actual repository was not named like the prototype repo.
    pohly committed Jan 21, 2019
    Configuration menu
    Copy the full SHA
    c876547 View commit details
    Browse the repository at this point in the history
  4. Merge pull request kubernetes-sigs#1 from pohly/master

    initial content
    k8s-ci-robot committed Jan 21, 2019
    Configuration menu
    Copy the full SHA
    b32dd01 View commit details
    Browse the repository at this point in the history

Commits on Jan 22, 2019

  1. README.md: fix repo URL for initial setup

    Copy-and-paste error from the time when the
    kubernetes-csi/csi-release-tools repo didn't have the code...
    pohly committed Jan 22, 2019
    Configuration menu
    Copy the full SHA
    f49080e View commit details
    Browse the repository at this point in the history
  2. Merge pull request kubernetes-sigs#2 from pohly/repo-fix

    README.md: fix repo URL for initial setup
    k8s-ci-robot committed Jan 22, 2019
    Configuration menu
    Copy the full SHA
    520a04a View commit details
    Browse the repository at this point in the history

Commits on Jan 23, 2019

  1. verify-subtree.sh: ensure that there are no local commits

    The goal is to enforce that changes get merged upstream first and only
    get into the local repo via a normal "git subtree merge".
    pohly committed Jan 23, 2019
    Configuration menu
    Copy the full SHA
    73db459 View commit details
    Browse the repository at this point in the history
  2. test: split up into individual targets, run all

    "make test" used to abort after the first test failure. That was
    partly intentional: if the simple tests already fail (for example,
    because of a syntax error), then there is no point in continuing to
    test.
    
    However, it also makes it harder to find all errors in a CI system
    when the errors are unrelated (first error shows up, gets fixed, next
    error shows up, etc.).
    
    Now "make test" still aborts early, but "make -k test" is used in the
    CI and will run all individual tests because they are split up into
    different targets.
    pohly committed Jan 23, 2019
    Configuration menu
    Copy the full SHA
    9132a01 View commit details
    Browse the repository at this point in the history
  3. test: verify that 'release-tools' subtree is clean

    We don't want to allow local modifications in the subtree. Everything
    should go to the csi-release-tools repo first.
    pohly committed Jan 23, 2019
    Configuration menu
    Copy the full SHA
    f28c6b6 View commit details
    Browse the repository at this point in the history
  4. Merge pull request kubernetes-sigs#3 from pohly/verify-subtree

    check subtree for changes
    k8s-ci-robot committed Jan 23, 2019
    Configuration menu
    Copy the full SHA
    3041b8a View commit details
    Browse the repository at this point in the history

Commits on Jan 24, 2019

  1. build.make: clarify usage of "make V=1"

    This may or may not work, depending on which packages have tests and
    whether they contain glog.
    pohly committed Jan 24, 2019
    Configuration menu
    Copy the full SHA
    154e33d View commit details
    Browse the repository at this point in the history
  2. build.make: support suppressing checks

    Individual repos may have to filter out certain packages from
    testing. For example, in csi-test the cmd/csi-sanity directory
    contains a special test that depends on additional parameters that set
    the CSI driver to test against.
    pohly committed Jan 24, 2019
    Configuration menu
    Copy the full SHA
    147892c View commit details
    Browse the repository at this point in the history

Commits on Jan 25, 2019

  1. build.make: fix pushing of "canary" image from master branch

    After merging into external-attacher, the next Travis CI run did not
    push the "canary" image because the check for "canary" only covered
    the case where "-canary" is used as
    suffix (https://travis-ci.org/kubernetes-csi/external-attacher/builds/484095261).
    pohly committed Jan 25, 2019
    Configuration menu
    Copy the full SHA
    09436b9 View commit details
    Browse the repository at this point in the history
  2. build.make: more readable "make test" output

    The introduction for each individual test looked like an actual
    command:
    
      test-subtree
      ./release-tools/verify-subtree.sh release-tools
      Directory 'release-tools' contains non-upstream changes:
      ...
    
    It's better to make it look like a shell comment and increase its
    visibility with a longer prefix:
    
      ### test-subtree:
      ./release-tools/verify-subtree.sh release-tools
      ...
    pohly committed Jan 25, 2019
    Configuration menu
    Copy the full SHA
    b0336b5 View commit details
    Browse the repository at this point in the history
  3. Merge pull request kubernetes-sigs#4 from pohly/canary-fix

    build.make: fix pushing of "canary" image from master branch
    k8s-ci-robot committed Jan 25, 2019
    Configuration menu
    Copy the full SHA
    be8a440 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    33d58fd View commit details
    Browse the repository at this point in the history

Commits on Mar 6, 2019

  1. verify-subtree.sh: relax check and ignore old content

    If for whatever reasons a repo already had a `release-tools` directory
    before doing a clean import of it with `git subtree`, the check used
    to fail because it found those old commits.
    
    This can be fixed by telling `git log` to stop when the directory
    disappears from the repo. There has to be a commit with removes the
    old content, because otherwise `git subtree add` doesn't work.
    
    Fixes: kubernetes-csi/external-resizer#21
    pohly committed Mar 6, 2019
    Configuration menu
    Copy the full SHA
    cc564f9 View commit details
    Browse the repository at this point in the history
  2. Merge pull request kubernetes-sigs#8 from pohly/subtree-check-relax

    verify-subtree.sh: relax check and ignore old content
    k8s-ci-robot committed Mar 6, 2019
    Configuration menu
    Copy the full SHA
    849db0a View commit details
    Browse the repository at this point in the history

Commits on Mar 15, 2019

  1. build.make: avoid unit-testing E2E test suite

    In repos that have a test/e2e, that test suite should be run
    separately because it depends on a running cluster.
    pohly committed Mar 15, 2019
    Configuration menu
    Copy the full SHA
    94fc1e3 View commit details
    Browse the repository at this point in the history
  2. verify-shellcheck.sh: import from Kubernetes

    This is an unmodified copy of kubernetes/hack/verify-shellcheck.sh
    revision d5a3db003916b1d33b503ccd2e4897e094d8af77.
    pohly committed Mar 15, 2019
    Configuration menu
    Copy the full SHA
    fb13c51 View commit details
    Browse the repository at this point in the history

Commits on Mar 27, 2019

  1. check vendor directory

    This runs "dep check" to verify that the vendor directory is
    up-to-date and meets expectations (= done with dep >= 0.5.0).
    pohly committed Mar 27, 2019
    Configuration menu
    Copy the full SHA
    e6db50d View commit details
    Browse the repository at this point in the history
  2. Merge pull request kubernetes-sigs#10 from pohly/vendor-check

    check vendor directory
    k8s-ci-robot committed Mar 27, 2019
    Configuration menu
    Copy the full SHA
    34010e7 View commit details
    Browse the repository at this point in the history

Commits on Mar 28, 2019

  1. build.make: avoid unit-testing E2E test suite

    In repos that have a test/e2e, that test suite should be run
    separately because it depends on a running cluster.
    pohly committed Mar 28, 2019
    Configuration menu
    Copy the full SHA
    104a1ac View commit details
    Browse the repository at this point in the history

Commits on Mar 29, 2019

  1. Merge pull request kubernetes-sigs#12 from pohly/local-e2e-suite

    build.make: avoid unit-testing E2E test suite
    k8s-ci-robot committed Mar 29, 2019
    Configuration menu
    Copy the full SHA
    3b6af7b View commit details
    Browse the repository at this point in the history

Commits on Apr 2, 2019

  1. verify-shellcheck.sh: make it usable in csi-release-tools

    These are the modifications that were necessary to call this outside
    of Kubernetes. The support for excluding files from checking gets
    removed to simplify the script. It shouldn't be needed, because
    linting can be enabled after fixing whatever scripts might fail the
    check.
    pohly committed Apr 2, 2019
    Configuration menu
    Copy the full SHA
    b2d25d4 View commit details
    Browse the repository at this point in the history
  2. build.make: integrate shellcheck into "make test"

    By default this only tests the scripts inside the "release-tools"
    directory, which is useful when making experimental changes to them in
    a component that uses csi-release-tools. But a component can also
    enable checking for other directories.
    pohly committed Apr 2, 2019
    Configuration menu
    Copy the full SHA
    6c7ba1b View commit details
    Browse the repository at this point in the history
  3. initial Prow test job

    This enables testing of other repos and of this repo itself inside
    Prow. Currently supported is unit testing ("make test") and E2E
    testing (either via a local test suite or the Kubernetes E2E test
    suite applied to the hostpath driver example deployment).
    
    The script passes shellcheck and uses Prow to verify that for future
    PRs.
    pohly committed Apr 2, 2019
    Configuration menu
    Copy the full SHA
    55212ff View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    2069a0a View commit details
    Browse the repository at this point in the history
  5. prow.sh: comment clarification

    pohly committed Apr 2, 2019
    Configuration menu
    Copy the full SHA
    0a0fd49 View commit details
    Browse the repository at this point in the history
  6. prow.sh: pull Go version from travis.yml

    The travis.yml is now the only place where the Go version for the
    component itself needs to be configured.
    pohly committed Apr 2, 2019
    Configuration menu
    Copy the full SHA
    429581c View commit details
    Browse the repository at this point in the history

Commits on Apr 3, 2019

  1. prow.sh: take Go version from Kubernetes source

    Using the same (recent) Go version for all Kubernetes versions can
    break for older versions when there are incompatible changes in Go. To
    avoid that, we use exactly the minimum version of Go required for each
    Kubernetes version. This is based on the assumption that this
    combination was tested successfully.
    
    When building the E2E suite from Kubernetes (the default) we do the
    same, but still allow building it from elsewhere.
    
    We allow the Go version to be empty when it doesn't matter.
    pohly committed Apr 3, 2019
    Configuration menu
    Copy the full SHA
    29545bb View commit details
    Browse the repository at this point in the history
  2. prow.sh: improve building Kubernetes from source

    While switching back and forth between release-1.13 and release-1.14
    locally, there was the problem that the local kind image kept using
    the wrong kubelet binary despite rebuilding from source. The problem
    went away after cleaning the Bazel cache. Exact root cause unknown,
    but perhaps using unique tags and properly cleaning the repo helps.
    
    If not, then the unique tags at least will show what the problem is.
    pohly committed Apr 3, 2019
    Configuration menu
    Copy the full SHA
    741319b View commit details
    Browse the repository at this point in the history
  3. prow.sh: different E2E suite depending on Kubernetes version

    Instead of always using the latest E2E tests for all Kubernetes
    versions, the plan now is to use the tests that match the Kubernetes
    version. However, for 1.13 we have to make an exception because the
    suite for that version did not support the necessary
    --storage.testdriver parameter.
    pohly committed Apr 3, 2019
    Configuration menu
    Copy the full SHA
    6602d38 View commit details
    Browse the repository at this point in the history
  4. prow.sh: switch back to upstream csi-driver-host-path

    The temporary fork was merged, we can use the upstream repo again.
    pohly committed Apr 3, 2019
    Configuration menu
    Copy the full SHA
    d87eccb View commit details
    Browse the repository at this point in the history
  5. Merge pull request kubernetes-sigs#9 from pohly/prow

    Prow testing
    k8s-ci-robot committed Apr 3, 2019
    Configuration menu
    Copy the full SHA
    95ae9de View commit details
    Browse the repository at this point in the history

Commits on Apr 8, 2019

  1. prow.sh: AllAlpha=true for unknown Kubernetes versions

    This ensures that also new, currently unknown alpha gates are enabled
    when testing against a future Kubernetes versions. For all currently
    known Kubernetes versions we just use the minimal set of alpha gates,
    which ensures that we don't miss any of them in our documentation.
    pohly committed Apr 8, 2019
    Configuration menu
    Copy the full SHA
    f501443 View commit details
    Browse the repository at this point in the history
  2. prow.sh: fix running of just "alpha" tests

    "grep -w" treated "serial-alpha" as two words and therefore
    CSI_PROW_TESTS sometimes ran too many tests.
    pohly committed Apr 8, 2019
    Configuration menu
    Copy the full SHA
    31dfaf3 View commit details
    Browse the repository at this point in the history
  3. prow.sh: fix hostpath driver version check

    The previous logic failed for canary jobs, those also deploy a recent
    driver. Instead of guessing what driver gets installed based on job
    parameters, check what really runs in the cluster and base the
    decision on that.
    
    We only need to maintain this blacklist for 1.0.x until we replace it
    with 1.1.0, then this entire hostpath_supports_block can be removed.
    pohly committed Apr 8, 2019
    Configuration menu
    Copy the full SHA
    f3d1d2d View commit details
    Browse the repository at this point in the history

Commits on Apr 9, 2019

  1. prow.sh: more efficient execution of individual tests

    When running only some tests, sometimes extra, unnecessarily work was
    done, like bringing up the cluster without alpha gates.
    pohly committed Apr 9, 2019
    Configuration menu
    Copy the full SHA
    aa45a1c View commit details
    Browse the repository at this point in the history
  2. build.make: skip shellcheck if Docker is not available

    Not all environments have Docker. The simplifying assumption here is
    that if the Docker command is available, it's also usable.
    pohly committed Apr 9, 2019
    Configuration menu
    Copy the full SHA
    9b0d9cd View commit details
    Browse the repository at this point in the history
  3. prow.sh: debug failing KinD cluster creation

    When KinD fails in a Prow job, we need additional information to
    understand why it failed.
    pohly committed Apr 9, 2019
    Configuration menu
    Copy the full SHA
    546d550 View commit details
    Browse the repository at this point in the history
  4. prow.sh: avoid AllAlpha=true

    It turned out to not work. Instead of reverting the commit which
    introduced this, let's better document this explicitly.
    pohly committed Apr 9, 2019
    Configuration menu
    Copy the full SHA
    cda2fc5 View commit details
    Browse the repository at this point in the history
  5. Merge pull request kubernetes-sigs#13 from pohly/prow

    prow enhancements
    k8s-ci-robot committed Apr 9, 2019
    Configuration menu
    Copy the full SHA
    6617773 View commit details
    Browse the repository at this point in the history

Commits on Apr 10, 2019

  1. prow.sh: remove AllAlpha=all, part II

    This was already meant to be done earlier in cda2fc5.
    While at it, extend the permanent TODO with guidance on future feature
    gates.
    pohly committed Apr 10, 2019
    Configuration menu
    Copy the full SHA
    7aaac22 View commit details
    Browse the repository at this point in the history
  2. Merge pull request kubernetes-sigs#14 from pohly/prow

    prow.sh: remove AllAlpha=all, part II
    k8s-ci-robot committed Apr 10, 2019
    Configuration menu
    Copy the full SHA
    c60f382 View commit details
    Browse the repository at this point in the history

Commits on Apr 11, 2019

  1. Configuration menu
    Copy the full SHA
    ff9bce4 View commit details
    Browse the repository at this point in the history
  2. Merge pull request kubernetes-sigs#15 from pengzhisun/master

    build.make: Replace 'return' to 'exit' to fix shellcheck error
    k8s-ci-robot committed Apr 11, 2019
    Configuration menu
    Copy the full SHA
    0c2677e View commit details
    Browse the repository at this point in the history
  3. prow.sh: update csi-driver-host-path

    This pulls in
    kubernetes-csi/csi-driver-host-path#37, which
    turned out to be necessary for pre-submit testing of the
    livenessprobe.
    pohly committed Apr 11, 2019
    Configuration menu
    Copy the full SHA
    0b10f6a View commit details
    Browse the repository at this point in the history
  4. Merge pull request kubernetes-sigs#16 from pohly/prow

    prow.sh: update csi-driver-host-path
    k8s-ci-robot committed Apr 11, 2019
    Configuration menu
    Copy the full SHA
    bcac1c1 View commit details
    Browse the repository at this point in the history
  5. prow.sh: skip sanity testing if component doesn't support it

    Whether a component supports sanity testing depends on the
    component. For example, csi-driver-host-path enables it because it
    makes sense there (and only there). Letting the prow.sh script decide
    whether it actually runs simplifies the job definitions in test-infra.
    pohly committed Apr 11, 2019
    Configuration menu
    Copy the full SHA
    0fafc66 View commit details
    Browse the repository at this point in the history
  6. Merge pull request kubernetes-sigs#17 from pohly/prow

    prow.sh: skip sanity testing if component doesn't support it
    k8s-ci-robot committed Apr 11, 2019
    Configuration menu
    Copy the full SHA
    88dc9a4 View commit details
    Browse the repository at this point in the history

Commits on Apr 15, 2019

  1. update to Go 1.12.4

    Kubernetes also requires 1.12. We pick the latest stable release
    for CI builds.
    pohly committed Apr 15, 2019
    Configuration menu
    Copy the full SHA
    e157b6b View commit details
    Browse the repository at this point in the history
  2. Merge pull request kubernetes-sigs#18 from pohly/go-version

    update to Go 1.12.4
    k8s-ci-robot committed Apr 15, 2019
    Configuration menu
    Copy the full SHA
    0bee749 View commit details
    Browse the repository at this point in the history

Commits on May 11, 2019

  1. build.make: allow repos to use 'go mod' for vendoring

    How a repo does vendoring is detected based on the presence of
    Gopkg.toml.
    
    The vendor check with `dep` was all done locally, but the
    corresponding check for `go mod` requires network access. The check
    therefore gets skipped when running in the Prow CI in situations where
    we are sure that it isn't needed (for example, in a periodic job).
    pohly committed May 11, 2019
    Configuration menu
    Copy the full SHA
    066143d View commit details
    Browse the repository at this point in the history

Commits on May 13, 2019

  1. Merge pull request kubernetes-sigs#19 from pohly/go-mod-vendor

    build.make: allow repos to use 'go mod' for vendoring
    k8s-ci-robot committed May 13, 2019
    Configuration menu
    Copy the full SHA
    0399988 View commit details
    Browse the repository at this point in the history

Commits on Jul 8, 2019

  1. prow.sh: flexible test driver config

    By moving the code into a separate function, other CSI drivers have a
    chance to overwrite it. For the hostpath driver itself we need the
    ability to set the driver name depending on which revision is getting
    installed.
    pohly committed Jul 8, 2019
    Configuration menu
    Copy the full SHA
    b2f4e05 View commit details
    Browse the repository at this point in the history
  2. Merge pull request kubernetes-sigs#20 from pohly/test-driver-config

    more flexible test driver config
    k8s-ci-robot committed Jul 8, 2019
    Configuration menu
    Copy the full SHA
    db8abb6 View commit details
    Browse the repository at this point in the history

Commits on Jul 11, 2019

  1. Add variables for 1.15

    msau42 committed Jul 11, 2019
    Configuration menu
    Copy the full SHA
    a6f21d4 View commit details
    Browse the repository at this point in the history
  2. Update kind to v0.4.0. This requires overriding Kubernetes versions

    with specific patch versions that kind 0.4.0 supports. Also, feature
    gate setting is only supported on 1.15+ due to
    kind.sigs.k8s.io/v1alpha3 and kubeadm.k8s.io/v1beta2 dependencies.
    msau42 committed Jul 11, 2019
    Configuration menu
    Copy the full SHA
    ecc7918 View commit details
    Browse the repository at this point in the history

Commits on Jul 12, 2019

  1. Configuration menu
    Copy the full SHA
    4b6fa4a View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    4e31f07 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    f4f73ce View commit details
    Browse the repository at this point in the history

Commits on Jul 15, 2019

  1. Configuration menu
    Copy the full SHA
    0c0dc30 View commit details
    Browse the repository at this point in the history

Commits on Jul 16, 2019

  1. Merge pull request kubernetes-sigs#22 from msau42/add-1.15-jobs

    prow.sh: tag master images with a large version number
    k8s-ci-robot committed Jul 16, 2019
    Configuration menu
    Copy the full SHA
    1cac3af View commit details
    Browse the repository at this point in the history

Commits on Aug 9, 2019

  1. Kubernetes master changed the way that releases are tagged, which needed

    changes to kind. There are 3 changes made to prow.sh:
    
    1. Use a master commit of kind that includes the fix for Kubernetes
    master.
    2. Use git clone instead of git checkout (shallow) to source Kubernetes.
    This lets kind correctly figure out the Kubernetes release tag.
    3. Build kind with make install. The kind fix was not working correctly
    when built with go build.
    msau42 committed Aug 9, 2019
    Configuration menu
    Copy the full SHA
    f46191d View commit details
    Browse the repository at this point in the history
  2. Merge pull request kubernetes-sigs#23 from msau42/fix-master-jobs

    Fix CI jobs on Kubernetes master
    k8s-ci-robot committed Aug 9, 2019
    Configuration menu
    Copy the full SHA
    aa85b82 View commit details
    Browse the repository at this point in the history

Commits on Aug 21, 2019

  1. Update kind to v0.5.0

    msau42 committed Aug 21, 2019
    Configuration menu
    Copy the full SHA
    dc0a5d8 View commit details
    Browse the repository at this point in the history

Commits on Aug 27, 2019

  1. Merge pull request kubernetes-sigs#25 from msau42/fix-master-jobs

    Update kind to v0.5.0
    k8s-ci-robot committed Aug 27, 2019
    Configuration menu
    Copy the full SHA
    0400867 View commit details
    Browse the repository at this point in the history

Commits on Aug 28, 2019

  1. Add rule for building Windows binaries

    Signed-off-by: Deep Debroy <[email protected]>
    ddebroy committed Aug 28, 2019
    Configuration menu
    Copy the full SHA
    9fba09b View commit details
    Browse the repository at this point in the history
  2. Merge pull request kubernetes-sigs#26 from ddebroy/windows1

    Add rule for building Windows binaries
    k8s-ci-robot committed Aug 28, 2019
    Configuration menu
    Copy the full SHA
    f85ab5a View commit details
    Browse the repository at this point in the history

Commits on Aug 29, 2019

  1. prow.sh: install dep if needed

    "make test-vendor" depends on dep if the current project uses
    dep. Without it, the vendor directory checking was skipped under Prow.
    pohly committed Aug 29, 2019
    Configuration menu
    Copy the full SHA
    35ceaed View commit details
    Browse the repository at this point in the history
  2. Merge pull request kubernetes-sigs#27 from pohly/dep-vendor-check

    prow.sh: install dep if needed
    k8s-ci-robot committed Aug 29, 2019
    Configuration menu
    Copy the full SHA
    df8530d View commit details
    Browse the repository at this point in the history

Commits on Sep 6, 2019

  1. create 2-node kind cluster since topology support is added to hostpat…

    …h driver
    
    Signed-off-by: Mucahit Kurt <[email protected]>
    mucahitkurt committed Sep 6, 2019
    Configuration menu
    Copy the full SHA
    a8ea8bc View commit details
    Browse the repository at this point in the history

Commits on Sep 7, 2019

  1. Merge pull request kubernetes-sigs#29 from mucahitkurt/create-2-node-…

    …kind-cluster
    
    Create 2-node kind cluster since topology support is added to hostpath
    k8s-ci-robot committed Sep 7, 2019
    Configuration menu
    Copy the full SHA
    2d33550 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    ea2f1b5 View commit details
    Browse the repository at this point in the history
  3. Merge pull request kubernetes-sigs#30 from msau42/fix-windows

    build windows binaries with .exe suffix
    k8s-ci-robot committed Sep 7, 2019
    Configuration menu
    Copy the full SHA
    6ecaa76 View commit details
    Browse the repository at this point in the history

Commits on Sep 16, 2019

  1. Enable hostpath expansion

    gnufied committed Sep 16, 2019
    Configuration menu
    Copy the full SHA
    6208f6a View commit details
    Browse the repository at this point in the history
  2. Merge pull request kubernetes-sigs#33 from gnufied/enable-hostpath-ex…

    …pansion
    
    Enable hostpath expansion
    k8s-ci-robot committed Sep 16, 2019
    Configuration menu
    Copy the full SHA
    0affdf9 View commit details
    Browse the repository at this point in the history

Commits on Oct 4, 2019

  1. update Go mod support

    It turned out that changes like
    kubernetes-csi/csi-lib-utils#33 should better
    have been committed after `go mod tidy` because that adds some
    indirect dependencies in that example.
    
    The revised `test-vendor` checks for that and (just in case that this
    ever becomes desired) allows projects to not have a vendor directory
    when using `go mod`.
    
    How to use `go mod` properly gets documented in the README.md, because
    there are such pitfalls.
    pohly committed Oct 4, 2019
    Configuration menu
    Copy the full SHA
    194289a View commit details
    Browse the repository at this point in the history

Commits on Oct 7, 2019

  1. go-get-kubernetes.sh: automate Kubernetes dependency handling

    This script handles the necessary "replace" statements and determines
    which packages need to be updated in lockstep.
    pohly committed Oct 7, 2019
    Configuration menu
    Copy the full SHA
    c1078a6 View commit details
    Browse the repository at this point in the history
  2. Build Windows only for amd64

    Signed-off-by: Deep Debroy <[email protected]>
    ddebroy committed Oct 7, 2019
    Configuration menu
    Copy the full SHA
    2d6b3ce View commit details
    Browse the repository at this point in the history
  3. Merge pull request kubernetes-sigs#35 from ddebroy/winbld2

    Build Windows only for amd64
    k8s-ci-robot committed Oct 7, 2019
    Configuration menu
    Copy the full SHA
    518d6af View commit details
    Browse the repository at this point in the history

Commits on Oct 8, 2019

  1. Merge pull request kubernetes-sigs#34 from pohly/go-mod-tidy

    update Go mod support
    k8s-ci-robot committed Oct 8, 2019
    Configuration menu
    Copy the full SHA
    2c81919 View commit details
    Browse the repository at this point in the history
  2. Do full git clones in travis. Shallow clones are causing test-subtree

    errors when the depth is exactly 50.
    msau42 committed Oct 8, 2019
    Configuration menu
    Copy the full SHA
    f1697d2 View commit details
    Browse the repository at this point in the history
  3. Merge pull request kubernetes-sigs#36 from msau42/full-clone

    Do full git clones in travis
    k8s-ci-robot committed Oct 8, 2019
    Configuration menu
    Copy the full SHA
    adf00fe View commit details
    Browse the repository at this point in the history

Commits on Oct 31, 2019

  1. Configuration menu
    Copy the full SHA
    e0fde8c View commit details
    Browse the repository at this point in the history
  2. Merge pull request kubernetes-sigs#40 from msau42/add-1.16

    Add new variables for 1.16 and remove 1.13
    k8s-ci-robot committed Oct 31, 2019
    Configuration menu
    Copy the full SHA
    f419d74 View commit details
    Browse the repository at this point in the history
  3. update CI to use Go 1.13.3

    This is the latest release. Updating is useful to ensure that we have
    all of the latest fixes and enhancements.
    pohly committed Oct 31, 2019
    Configuration menu
    Copy the full SHA
    5e773d2 View commit details
    Browse the repository at this point in the history
  4. better handling of Go version

    Some operations are sensitive to the version of Go that is used. In
    the past, formatting of source differed depending on the
    version. Right now it is the content of the vendor directory which
    changes when switch back and forth between 1.12 and 1.13.
    
    We don't want to impose a certain workflow on developers, like forcing
    all invocations of Go to run inside a container. If developers want
    that, they can set up their development environment accordingly.
    
    But we should warn about this aspect to raise awareness. "make"
    invocations which involve Go now compare against the projects Go
    version (specified in travis.yml) once at the beginning. This is only
    a warning because we don't know which future version will be
    compatible with the project.
    
    Vendor directory handling gets updated, too: verification is now a
    separate script (became too complex for make) and there is a
    corresponding "update-vendor.sh". In contrast to verification,
    updating vendor is not integrated into make and thus itself invokes
    the go version check.
    pohly committed Oct 31, 2019
    Configuration menu
    Copy the full SHA
    c8a1c4a View commit details
    Browse the repository at this point in the history
  5. Merge pull request kubernetes-sigs#41 from pohly/go-version

    Go version 1.13, helper scripts
    k8s-ci-robot committed Oct 31, 2019
    Configuration menu
    Copy the full SHA
    a53bd4c View commit details
    Browse the repository at this point in the history

Commits on Nov 4, 2019

  1. prow.sh: use vendor directory if available

    This avoids dependencies on the Go module cache or the upstream code
    hosting.
    pohly committed Nov 4, 2019
    Configuration menu
    Copy the full SHA
    23df4ae View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    8067845 View commit details
    Browse the repository at this point in the history
  3. Merge pull request kubernetes-sigs#42 from pohly/use-vendor-dir

    prow.sh: use vendor directory if available
    k8s-ci-robot committed Nov 4, 2019
    Configuration menu
    Copy the full SHA
    ee22a9c View commit details
    Browse the repository at this point in the history

Commits on Nov 5, 2019

  1. prow.sh: also log output of system containers

    Depending on the error, those logs are needed to debug failures.
    pohly committed Nov 5, 2019
    Configuration menu
    Copy the full SHA
    f41c135 View commit details
    Browse the repository at this point in the history

Commits on Nov 6, 2019

  1. Merge pull request kubernetes-sigs#43 from pohly/system-pod-logging

    prow.sh: also log output of system containers
    k8s-ci-robot committed Nov 6, 2019
    Configuration menu
    Copy the full SHA
    4fcafec View commit details
    Browse the repository at this point in the history

Commits on Nov 19, 2019

  1. Adding build for ppc64le

    Pensu committed Nov 19, 2019
    Configuration menu
    Copy the full SHA
    83a4ef1 View commit details
    Browse the repository at this point in the history

Commits on Nov 21, 2019

  1. Delete kind cluster after tests run.

    Inside a real Prow job it is better to clean up at runtime instead of leaving that to the Prow job cleanup code because the later sometimes times out.
    
    Signed-off-by: Mucahit Kurt <[email protected]>
    mucahitkurt committed Nov 21, 2019
    Configuration menu
    Copy the full SHA
    1eaaaa1 View commit details
    Browse the repository at this point in the history
  2. Merge pull request kubernetes-sigs#46 from mucahitkurt/kind-cluster-c…

    …leanup
    
    delete kind cluster after tests run
    k8s-ci-robot committed Nov 21, 2019
    Configuration menu
    Copy the full SHA
    a41f386 View commit details
    Browse the repository at this point in the history

Commits on Nov 24, 2019

  1. Add snapshotter CRDs after cluster setup

    Signed-off-by: Grant Griffiths <[email protected]>
    ggriffiths committed Nov 24, 2019
    Configuration menu
    Copy the full SHA
    003c14b View commit details
    Browse the repository at this point in the history

Commits on Nov 25, 2019

  1. Merge pull request kubernetes-sigs#45 from ggriffiths/snapshot_beta_crds

    Add snapshotter CRDs after cluster setup
    k8s-ci-robot committed Nov 25, 2019
    Configuration menu
    Copy the full SHA
    8adde49 View commit details
    Browse the repository at this point in the history

Commits on Nov 26, 2019

  1. Merge pull request kubernetes-sigs#47 from Pensu/multi-arch

    Adding build for ppc64le
    k8s-ci-robot committed Nov 26, 2019
    Configuration menu
    Copy the full SHA
    6d674a7 View commit details
    Browse the repository at this point in the history

Commits on Nov 29, 2019

  1. Use kind v0.6.0

    kind v0.6.0 appends the kubeconfig with the default config at
    ~/.kube/config.
    darkowlzz committed Nov 29, 2019
    Configuration menu
    Copy the full SHA
    80bba1f View commit details
    Browse the repository at this point in the history

Commits on Dec 2, 2019

  1. Configuration menu
    Copy the full SHA
    4ff2f5f View commit details
    Browse the repository at this point in the history

Commits on Dec 3, 2019

  1. Create a kind cluster with two worker nodes so that the topology feat…

    …ure can be tested. Test cases that test accessing volumes from multiple nodes need to be skipped
    msau42 committed Dec 3, 2019
    Configuration menu
    Copy the full SHA
    9a7a685 View commit details
    Browse the repository at this point in the history

Commits on Dec 4, 2019

  1. Configuration menu
    Copy the full SHA
    53888ae View commit details
    Browse the repository at this point in the history
  2. Improve snapshot pod running checks and improve version_gt

    Signed-off-by: Grant Griffiths <[email protected]>
    ggriffiths committed Dec 4, 2019
    Configuration menu
    Copy the full SHA
    4ad6949 View commit details
    Browse the repository at this point in the history
  3. Merge pull request kubernetes-sigs#51 from msau42/enable-multinode

    Enable topology testing with hostpath driver
    k8s-ci-robot committed Dec 4, 2019
    Configuration menu
    Copy the full SHA
    d7c69d2 View commit details
    Browse the repository at this point in the history
  4. Merge pull request kubernetes-sigs#49 from ggriffiths/prowsh_improve_…

    …version_gt
    
    Improve snapshot-controller running check and version_gt to support multiple formats
    k8s-ci-robot committed Dec 4, 2019
    Configuration menu
    Copy the full SHA
    771ca6f View commit details
    Browse the repository at this point in the history
  5. fix syntax for ppc64le build

    msau42 committed Dec 4, 2019
    Configuration menu
    Copy the full SHA
    a4e6299 View commit details
    Browse the repository at this point in the history
  6. Merge pull request kubernetes-sigs#53 from msau42/fix-make

    fix syntax for ppc64le build
    k8s-ci-robot committed Dec 4, 2019
    Configuration menu
    Copy the full SHA
    540599b View commit details
    Browse the repository at this point in the history

Commits on Dec 6, 2019

  1. Merge pull request kubernetes-sigs#52 from msau42/update-readme

    Improve README by adding an explicit Kubernetes dependency section
    k8s-ci-robot committed Dec 6, 2019
    Configuration menu
    Copy the full SHA
    9ace020 View commit details
    Browse the repository at this point in the history

Commits on Dec 17, 2019

  1. Enable snapshot tests in 1.17 to be run in non-alpha jobs.

    This requires adding one more parallel e2e test run with
    a special focus flag because snapshot tests are still guarded
    with a "[Feature:VolumeSnapshotDataSource]" tag. The setting that
    skips all tests with "[Feature:.*]" has to be removed because it
    overrides the focus.
    
    We don't have serial snapshot tests yet. This needs to be modified
    again if we add any in the future.
    msau42 committed Dec 17, 2019
    Configuration menu
    Copy the full SHA
    b98b2ae View commit details
    Browse the repository at this point in the history

Commits on Dec 18, 2019

  1. Merge pull request kubernetes-sigs#56 from msau42/enable-snapshots

    Enable snapshot tests in 1.17 to be run in non-alpha jobs.
    k8s-ci-robot committed Dec 18, 2019
    Configuration menu
    Copy the full SHA
    9f1f3dd View commit details
    Browse the repository at this point in the history

Commits on Dec 21, 2019

  1. Fix version_gt to work with kubernetes prefix

    Signed-off-by: Grant Griffiths <[email protected]>
    ggriffiths committed Dec 21, 2019
    Configuration menu
    Copy the full SHA
    fc80975 View commit details
    Browse the repository at this point in the history

Commits on Dec 23, 2019

  1. Merge pull request kubernetes-sigs#57 from ggriffiths/version_gt_kube…

    …rnetes_fix
    
    Fix version_gt to work with Kubernetes prefix
    k8s-ci-robot committed Dec 23, 2019
    Configuration menu
    Copy the full SHA
    f6c74b3 View commit details
    Browse the repository at this point in the history

Commits on Jan 2, 2020

  1. Configuration menu
    Copy the full SHA
    af9549b View commit details
    Browse the repository at this point in the history
  2. Merge pull request kubernetes-sigs#60 from saad-ali/updateHostpathVer…

    …sion
    
    Update prow hostpath driver version to 1.3.0-rc2
    k8s-ci-robot committed Jan 2, 2020
    Configuration menu
    Copy the full SHA
    5f444b8 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    8b0316c View commit details
    Browse the repository at this point in the history
  4. Merge pull request kubernetes-sigs#61 from msau42/enable-snapshots

    Fix overriding of junit results
    k8s-ci-robot committed Jan 2, 2020
    Configuration menu
    Copy the full SHA
    3c463fb View commit details
    Browse the repository at this point in the history

Commits on Jan 8, 2020

  1. Update snapshotter to version v2.0.0

    Signed-off-by: Grant Griffiths <[email protected]>
    ggriffiths committed Jan 8, 2020
    Configuration menu
    Copy the full SHA
    8191eab View commit details
    Browse the repository at this point in the history
  2. Merge pull request kubernetes-sigs#64 from ggriffiths/snapshotter_2_v…

    …ersion_update
    
    Update snapshotter to version v2.0.0
    k8s-ci-robot committed Jan 8, 2020
    Configuration menu
    Copy the full SHA
    4cc9174 View commit details
    Browse the repository at this point in the history

Commits on Jan 10, 2020

  1. Configuration menu
    Copy the full SHA
    6582f2f View commit details
    Browse the repository at this point in the history
  2. Merge pull request kubernetes-sigs#65 from msau42/update-hostpath

    Update hostpath driver version to get fix for connection-timeout
    k8s-ci-robot committed Jan 10, 2020
    Configuration menu
    Copy the full SHA
    23be652 View commit details
    Browse the repository at this point in the history

Commits on Jan 11, 2020

  1. Configuration menu
    Copy the full SHA
    ac8a021 View commit details
    Browse the repository at this point in the history

Commits on Jan 13, 2020

  1. Merge pull request kubernetes-sigs#54 from msau42/add-release-process

    Document the process for releasing a new sidecar
    k8s-ci-robot committed Jan 13, 2020
    Configuration menu
    Copy the full SHA
    ff3cc3f View commit details
    Browse the repository at this point in the history

Commits on Jan 19, 2020

  1. fix incorrect link

    windayski committed Jan 19, 2020
    Configuration menu
    Copy the full SHA
    fa90abd View commit details
    Browse the repository at this point in the history

Commits on Jan 24, 2020

  1. Merge pull request kubernetes-sigs#67 from windayski/fix-link

    fix incorrect link
    k8s-ci-robot committed Jan 24, 2020
    Configuration menu
    Copy the full SHA
    3c34b4f View commit details
    Browse the repository at this point in the history

Commits on Feb 10, 2020

  1. prow.sh: generic driver installation

    This relies on a slightly different deployment script: a "deploy.sh"
    must exist which knows that it has to dump a test driver configurion
    into the file pointed to with CSI_PROW_TEST_DRIVER, if that env
    variable is set.
    
    That way, we no longer need to know what capabilities the installed
    driver has.
    pohly committed Feb 10, 2020
    Configuration menu
    Copy the full SHA
    84f78b1 View commit details
    Browse the repository at this point in the history
  2. prow.sh: also configure feature gates for kubelet

    That this hasn't been done before is an oversight. Apparently it
    hasn't been a problem because there never have been feature gates that
    mattered?
    pohly committed Feb 10, 2020
    Configuration menu
    Copy the full SHA
    5f74333 View commit details
    Browse the repository at this point in the history
  3. Merge pull request kubernetes-sigs#70 from pohly/kubelet-feature-gates

    prow.sh: also configure feature gates for kubelet
    k8s-ci-robot committed Feb 10, 2020
    Configuration menu
    Copy the full SHA
    a1432bc View commit details
    Browse the repository at this point in the history
  4. Merge pull request kubernetes-sigs#69 from pohly/test-driver-config

    prow.sh: generic driver installation
    k8s-ci-robot committed Feb 10, 2020
    Configuration menu
    Copy the full SHA
    d717c8c View commit details
    Browse the repository at this point in the history

Commits on Feb 13, 2020

  1. Configuration menu
    Copy the full SHA
    fdb3218 View commit details
    Browse the repository at this point in the history
  2. Merge pull request kubernetes-sigs#71 from wozniakjan/test-vet

    Change 'make test-vet' back to call 'go vet'
    k8s-ci-robot committed Feb 13, 2020
    Configuration menu
    Copy the full SHA
    b8587b2 View commit details
    Browse the repository at this point in the history

Commits on Feb 14, 2020

  1. prow.sh: use 1.3.0 hostpath driver for testing

    The final 1.3.0 release of the hostpath driver really uses the 1.3.0
    driver image in its deployment, in contrast to the previous -rc
    candidates which still used 1.2.0.
    pohly committed Feb 14, 2020
    Configuration menu
    Copy the full SHA
    7c5a89c View commit details
    Browse the repository at this point in the history
  2. Merge pull request kubernetes-sigs#72 from pohly/hostpath-update

    prow.sh: use 1.3.0 hostpath driver for testing
    k8s-ci-robot committed Feb 14, 2020
    Configuration menu
    Copy the full SHA
    8322a7d View commit details
    Browse the repository at this point in the history

Commits on Mar 4, 2020

  1. build for multiple platforms only in CI, add s390x

    Developers should not be forced to build for all platforms by
    default. We also don't want to copy-and-paste the go invocation for
    each new platform.
    
    To address both, the target platform(s) are now configurable via
    BUILD_PLATFORMS and additional platforms are only enabled in the Prow
    CI.
    
    For now this serves as a test that the source actually compiles for
    multiple platforms. Building images for different target platforms is a
    different problem.
    pohly committed Mar 4, 2020
    Configuration menu
    Copy the full SHA
    3863a0f View commit details
    Browse the repository at this point in the history
  2. Merge pull request kubernetes-sigs#76 from pohly/build-targets

    build for multiple platforms only in CI, add s390x
    k8s-ci-robot committed Mar 4, 2020
    Configuration menu
    Copy the full SHA
    4cf843f View commit details
    Browse the repository at this point in the history

Commits on Mar 11, 2020

  1. Update snapshotter to version 2.0.1

    Signed-off-by: Grant Griffiths <[email protected]>
    ggriffiths committed Mar 11, 2020
    Configuration menu
    Copy the full SHA
    7edc146 View commit details
    Browse the repository at this point in the history
  2. Merge pull request kubernetes-sigs#77 from ggriffiths/snapshotter201_…

    …update
    
    Update snapshotter to version 2.0.1
    k8s-ci-robot committed Mar 11, 2020
    Configuration menu
    Copy the full SHA
    152396e View commit details
    Browse the repository at this point in the history

Commits on Apr 17, 2020

  1. Configuration menu
    Copy the full SHA
    ea1f94a View commit details
    Browse the repository at this point in the history
  2. Merge pull request kubernetes-sigs#80 from msau42/add-release-process

    update release tools instructions
    k8s-ci-robot committed Apr 17, 2020
    Configuration menu
    Copy the full SHA
    c1bdf5b View commit details
    Browse the repository at this point in the history

Commits on Apr 20, 2020

  1. Support local snapshot RBAC for pull jobs

    Signed-off-by: Grant Griffiths <[email protected]>
    ggriffiths committed Apr 20, 2020
    Configuration menu
    Copy the full SHA
    d8c76fe View commit details
    Browse the repository at this point in the history
  2. Merge pull request kubernetes-sigs#78 from ggriffiths/fix_csi_snapsho…

    …tter_rbac_version_set
    
    Fix csi-snapshotter RBAC yaml version
    k8s-ci-robot committed Apr 20, 2020
    Configuration menu
    Copy the full SHA
    0fcc3b1 View commit details
    Browse the repository at this point in the history

Commits on Apr 23, 2020

  1. Configuration menu
    Copy the full SHA
    6f2322e View commit details
    Browse the repository at this point in the history

Commits on Apr 27, 2020

  1. Merge pull request kubernetes-sigs#81 from msau42/add-release-process

    Update patch release notes generation command
    k8s-ci-robot committed Apr 27, 2020
    Configuration menu
    Copy the full SHA
    9084fec View commit details
    Browse the repository at this point in the history

Commits on May 28, 2020

  1. cloud build: initial set of shared files

    The approach taken here extends the existing support for
    cross-compiling binaries on the build host and specifying the Go
    compiler: Go is installed if needed (as in Prow testing), binaries are
    build on the host, then one image is created for each platform, and
    finally those are combined into a single multi-architecture image.
    pohly committed May 28, 2020
    Configuration menu
    Copy the full SHA
    bd41690 View commit details
    Browse the repository at this point in the history
  2. Merge pull request kubernetes-sigs#87 from pohly/cloud-build

    cloud build: initial set of shared files
    k8s-ci-robot committed May 28, 2020
    Configuration menu
    Copy the full SHA
    17dde9e View commit details
    Browse the repository at this point in the history

Commits on Jun 3, 2020

  1. build.make: fix push-multiarch ambiguity

    "make push-multiarch" matched both push-multiarch and push-%.  This
    seems to be none-deterministic and in at least one
    repo (external-provisioner), make picked the wildcard rule which then
    failed because there is no "multiarch" command.
    
    This ambiguity gets resolved by instantiating the wildcard rules only
    for existing commands. The advantage also is that "make
    push-no-such-command" will fail with an obvious "No rule to make
    target 'push-no-such-command'" instead of attempting to build the
    command.
    pohly committed Jun 3, 2020
    Configuration menu
    Copy the full SHA
    4569f27 View commit details
    Browse the repository at this point in the history
  2. build.make: properly declare push-multiarch

    It's not a real file and thus should better be marked as phony.
    pohly committed Jun 3, 2020
    Configuration menu
    Copy the full SHA
    5231f05 View commit details
    Browse the repository at this point in the history
  3. build.make: optional inclusion of Windows in multiarch images

    Most repos inherit the default BUILD_PLATFORMS, which includes
    Windows, but don't have the necessary Dockerfile.Windows yet. To
    simplify the rollout of multiarch image builds, Windows binary
    building continues to be tested (i.e. BUILD_PLATFORMS remains
    unchanged), but push-multiarch skips Windows if the Dockerfile.Windows
    is missing.
    pohly committed Jun 3, 2020
    Configuration menu
    Copy the full SHA
    340e082 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    be902f4 View commit details
    Browse the repository at this point in the history

Commits on Jun 4, 2020

  1. cloud build: initialize support for running commands in Dockerfile

    If the Dockerfile needs to run some command, that step fails unless
    QEMU is set up properly first:
          failed to solve: rpc error: code = Unknown desc = failed to load
          LLB: runtime execution on platform linux/ppc64le not supported
    pohly committed Jun 4, 2020
    Configuration menu
    Copy the full SHA
    db0c2a7 View commit details
    Browse the repository at this point in the history

Commits on Jun 8, 2020

  1. Merge pull request kubernetes-sigs#89 from pohly/cloud-build-binfmt

    cloud build: initialize support for running commands in Dockerfile
    k8s-ci-robot committed Jun 8, 2020
    Configuration menu
    Copy the full SHA
    c5fd961 View commit details
    Browse the repository at this point in the history

Commits on Jun 12, 2020

  1. cloud build: k8s-staging-sig-storage

    As discussed in kubernetes/k8s.io#943, we want
    to consolidate under k8s-staging-sig-storage.
    pohly committed Jun 12, 2020
    Configuration menu
    Copy the full SHA
    3df86b7 View commit details
    Browse the repository at this point in the history
  2. Merge pull request kubernetes-sigs#90 from pohly/k8s-staging-sig-storage

    cloud build: k8s-staging-sig-storage
    k8s-ci-robot committed Jun 12, 2020
    Configuration menu
    Copy the full SHA
    0d5bd84 View commit details
    Browse the repository at this point in the history

Commits on Jun 16, 2020

  1. Configuration menu
    Copy the full SHA
    43e50d6 View commit details
    Browse the repository at this point in the history
  2. Merge pull request kubernetes-sigs#91 from cyb70289/arm64

    prow.sh: enable building arm64 image
    k8s-ci-robot committed Jun 16, 2020
    Configuration menu
    Copy the full SHA
    f5a4203 View commit details
    Browse the repository at this point in the history

Commits on Jun 17, 2020

  1. filter-junit: Fix golint error

    Signed-off-by: Animesh Kumar <[email protected]>
    animeshk08 committed Jun 17, 2020
    Configuration menu
    Copy the full SHA
    36ea4ff View commit details
    Browse the repository at this point in the history

Commits on Jun 18, 2020

  1. Merge pull request kubernetes-sigs#92 from animeshk08/patch-1

    filter-junit: Fix golint error
    k8s-ci-robot committed Jun 18, 2020
    Configuration menu
    Copy the full SHA
    0676fcb View commit details
    Browse the repository at this point in the history
  2. filter-junit: Fix gofmt error

    Signed-off-by: Animesh Kumar <[email protected]>
    animeshk08 committed Jun 18, 2020
    Configuration menu
    Copy the full SHA
    5a54e67 View commit details
    Browse the repository at this point in the history
  3. Merge pull request kubernetes-sigs#93 from animeshk08/patch-1

    filter-junit: Fix gofmt error
    k8s-ci-robot committed Jun 18, 2020
    Configuration menu
    Copy the full SHA
    41ec6d1 View commit details
    Browse the repository at this point in the history

Commits on Jul 8, 2020

  1. Configuration menu
    Copy the full SHA
    1fdf2d5 View commit details
    Browse the repository at this point in the history
  2. Merge pull request kubernetes-sigs#94 from linux-on-ibm-z/bump-timeout

    cloud build: bump timeout in Prow job
    k8s-ci-robot committed Jul 8, 2020
    Configuration menu
    Copy the full SHA
    0345a83 View commit details
    Browse the repository at this point in the history

Commits on Aug 5, 2020

  1. Configuration menu
    Copy the full SHA
    843bddc View commit details
    Browse the repository at this point in the history

Commits on Aug 7, 2020

  1. Merge pull request kubernetes-sigs#95 from msau42/add-release-process

    Add steps on promoting release images
    k8s-ci-robot committed Aug 7, 2020
    Configuration menu
    Copy the full SHA
    d8a2530 View commit details
    Browse the repository at this point in the history

Commits on Aug 12, 2020

  1. switch to Go 1.15

    Go 1.15 was released and is the major version that Kubernetes 1.19.0
    is going to use. There are probably bugs in the older 1.13.3 that were
    fixed, so we should update.
    pohly committed Aug 12, 2020
    Configuration menu
    Copy the full SHA
    82d108a View commit details
    Browse the repository at this point in the history
  2. Merge pull request kubernetes-sigs#97 from pohly/go-1.15

    switch to Go 1.15
    k8s-ci-robot committed Aug 12, 2020
    Configuration menu
    Copy the full SHA
    1fbb636 View commit details
    Browse the repository at this point in the history

Commits on Aug 14, 2020

  1. prow.sh: fix installing Go for Kubernetes 1.19.0

    Kubernetes 1.19.0 uses Go 1.15, but refers to it as 1.15.0. This broke
    both the check whether we need to install 1.15 (because "go version"
    reports 1.15, which didn't match 1.15.0) and then downloading the
    release archive (because the URL also only uses 1.15).
    pohly committed Aug 14, 2020
    Configuration menu
    Copy the full SHA
    3b4a2f1 View commit details
    Browse the repository at this point in the history
  2. prow.sh: fix E2E suite for Kubernetes >= 1.18

    It used to be necessary to override from where the E2E suite came on a
    case-by-case basis (initially, testing was using a more recent suite
    against an older Kubernetes). This should never become necessary again
    and the lack of a specific entry for 1.18 already had the unintended
    effect that Kubernetes 1.18 was tested with the suite from master, so
    overall it is better to always use the E2E suite which matches
    Kubernetes.
    pohly committed Aug 14, 2020
    Configuration menu
    Copy the full SHA
    0979c09 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    60e1cd3 View commit details
    Browse the repository at this point in the history

Commits on Aug 24, 2020

  1. Configuration menu
    Copy the full SHA
    2c09846 View commit details
    Browse the repository at this point in the history

Commits on Sep 26, 2020

  1. Configuration menu
    Copy the full SHA
    e73c2ce View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    d129462 View commit details
    Browse the repository at this point in the history

Commits on Sep 29, 2020

  1. Merge pull request kubernetes-sigs#103 from msau42/fix-canary

    Use staging registry for canary tests
    k8s-ci-robot committed Sep 29, 2020
    Configuration menu
    Copy the full SHA
    e53f3e8 View commit details
    Browse the repository at this point in the history

Commits on Oct 5, 2020

  1. Configuration menu
    Copy the full SHA
    b3c65f9 View commit details
    Browse the repository at this point in the history

Commits on Oct 6, 2020

  1. Configuration menu
    Copy the full SHA
    7100c12 View commit details
    Browse the repository at this point in the history
  2. Merge pull request kubernetes-sigs#106 from msau42/fix-canary

    Only set staging registry when running canary job
    k8s-ci-robot committed Oct 6, 2020
    Configuration menu
    Copy the full SHA
    a0f195c View commit details
    Browse the repository at this point in the history

Commits on Oct 7, 2020

  1. Add 'release-tools/' from commit 'a0f195cc2ddc2a1f07d4d3e46fc08187db3…

    …58f94'
    
    git-subtree-dir: release-tools
    git-subtree-mainline: 90da483
    git-subtree-split: a0f195c
    brahmaroutu committed Oct 7, 2020
    Configuration menu
    Copy the full SHA
    c41abb6 View commit details
    Browse the repository at this point in the history