Bryan Boreham

Results 190 issues of Bryan Boreham

When I last built them, all the AMIs ended up "private". The command-line way to make one public is: aws ec2 modify-image-attribute --region=us-east-2 --image-id ami-6a0b350f --launch-permission "{\"Add\": [{\"Group\":\"all\"}]}" but I...

Observed in the log files of `weave` in a three-node cluster: ``` INFO: 2017/10/23 08:42:23.313585 Our name is a2:ef:b2:fc:2e:ba(ip-172-31-0-233) INFO: 2017/10/23 08:42:23.313613 Launch detected - using supplied peer list: [172.31.1.40...

bug

These lines: https://github.com/weaveworks/build-tools/blob/dedde7fa74541639a8223f15260ee71f1a13ee6a/build/golang/build.sh#L12-L20 can be removed if we run the build as the desired user. For example see https://github.com/weaveworks/scope/commit/833f947fb38dc8c8735d323ee4d7ef03028152f8

These lines: https://github.com/weaveworks/build-tools/blob/dedde7fa74541639a8223f15260ee71f1a13ee6a/build/golang/Dockerfile#L25-L27 are not necessary since Go added a per-target build cache, and probably don't achieve anything since we typically bind-mount another directory for the build cache when compilations...

Many of these files: https://github.com/weaveworks/build-tools/blob/dedde7fa74541639a8223f15260ee71f1a13ee6a/build/golang/Dockerfile#L28-L38 can be replaced by https://github.com/golangci/golangci-lint

since I managed to waste a couple of hours not spotting I had an extra space, which showed up as a "did not find expected key" response from `kubectl`

As used in https://github.com/weaveworks/weave/issues/2843 I expect some tuning would be required.

So [CircleCI can parse them](https://circleci.com/docs/test-metadata#metadata-collection-in-custom-test-steps). I don't know how useful this would be, but it seems fairly straighforward. I think this would involve extending the `summary` function in `runner/runner.go` Some...

enhancement

Example: there are 25 tests run, but only 23 of the "finished with success" messages. ``` >>> Running ./800_plugin_cross_hosts_2_test.sh on [host1-4339-0.us-central1-a.positive-cocoa-90213 host2-4339-0.us-central1-a.positive-cocoa-90213] >>> Running ./190_no_fastdp_2_test.sh on [host3-4339-0.us-central1-a.positive-cocoa-90213 host4-4339-0.us-central1-a.positive-cocoa-90213] >>> Running...

Evidence: ``` containers: - args: - --verbose env: - name: EXISTINGINFRA_CONTROLLER_IMAGE value: docker.io/weaveworks/cluster-api-existinginfra-controller:v0.0.6 - name: POD_NAMESPACE valueFrom: fieldRef: apiVersion: v1 fieldPath: metadata.namespace image: docker.io/weaveworks/cluster-api-existinginfra-controller:v0.1.0 ``` I suspect the bug is...