Patrick Ohly

Results 1006 comments of Patrick Ohly

Quick-and-dirty script that I just used to update csi-relase-tools: ``` #!/bin/sh -x die () { echo >&2 "\nERROR: $@\n" exit 1 } while read repo branches; do if [ "$repo"...

In https://github.com/kubernetes-csi/csi-driver-smb/pull/28 we were discussing how to use squashing instead of including the commits as done so far. We came up with a revised script, too. However, when I just...

Here's a version of the update script which uses `--squash` with scripted resolution of the merge conflicts that this options sometimes seems to run into. ***WARNING***: "origin" in "git fetch...

I created PRs using this script, for example: https://github.com/kubernetes-csi/node-driver-registrar/pull/115 One downside (at least initially?) is that the list of commits includes everything. This might be because "git subtree" was unable...

This is about the test driver config, right? https://github.com/kubernetes-csi/csi-release-tools/blob/0affdf95a80bfad3e254d93c2e80a3397f81e2f5/prow.sh#L742-L765 The content of that file must match the deployment of the host path driver, which is determined by `CSI_PROW_HOSTPATH_VERSION` (controlled by...

Michelle Au writes: > What if we add the test config to the per-release hostpath > deployments? That should solve some of the difficulties because the > test will be...