1. 12 Dec, 2016 6 commits
  2. 11 Dec, 2016 7 commits
    • Kubernetes Submit Queue's avatar
      Merge pull request #38452 from euank/cfssl · 3f7b0004
      Kubernetes Submit Queue authored
      Automatic merge from submit-queue (batch tested with PRs 38277, 36361, 38452)
      
      local-up: resolve sudo -E'd paths better
      
      This problem won't affect everyone, but for people who have `--with-secure-path` configured for their sudo binaries, `sudo -E` won't actually preserve PATH, which means the sub-bash won't necessarily be able to find the binary which `test` found to exist.
      This fixes that.
      
      Ubuntu [used to](https://bugs.launchpad.net/ubuntu/+source/sudo/+bug/50797) configure it that way, and they might still.
      It's configured as such on my (Gentoo) machine.
      3f7b0004
    • Kubernetes Submit Queue's avatar
      Merge pull request #36361 from ivan4th/build-container-rsync-optimizations · 48cae782
      Kubernetes Submit Queue authored
      Automatic merge from submit-queue (batch tested with PRs 38277, 36361, 38452)
      
      Add options for build container rsync optimization
      
      KUBE_RSYNC_COMPRESS env var sets rsync compression level.
      KUBE_RSYNC_GENERATED_TO_BUILD_CONTAINER env var disables rsyncing
      generated files to build containers.
      
      Why KUBE_RSYNC_COMPRESS is needed -- from rsync manual on `--compress` option (implied by non-zero `--compress-level`):
      > Note that this option typically achieves better compression ratios than can be achieved by using a compressing remote shell or a compressing transport because it takes advantage of the implicit information in the matching data blocks that are not explicitly sent over  the connection.
      
      Use case for `KUBE_RSYNC_GENERATED_TO_BUILD_CONTAINER`: when you sometimes build stuff locally (e.g. `make WHAT=cmd/kubectl`) and sometimes do it on remote docker (`build-tools/run.sh make WHAT=cmd/hyperkube`), local builds touch generated files which causes them to be rsynced to the build data container, which may slow down the builds. Still, I'm not sure whether local->remote rsync of generated files is useful (e.g. someone may want to edit generated files for debugging purposes?), so I made not rsyncing these files an option instead of forcing such behavior.
      48cae782
    • Kubernetes Submit Queue's avatar
      Merge pull request #38277 from xilabao/fix-advertise-address-in-local-cluster · e8bcf8d3
      Kubernetes Submit Queue authored
      Automatic merge from submit-queue
      
      fix set advertise address in local cluster
      e8bcf8d3
    • Kubernetes Submit Queue's avatar
      Merge pull request #38438 from MrHohn/addon-manager-coreos · 37cd01dc
      Kubernetes Submit Queue authored
      Automatic merge from submit-queue
      
      Keeps addon manager yamls in sync
      
      From #38437.
      
      We should have kept all addon manager YAML files in sync. This does not fix the release scripts issue, but we should still have this.
      
      @mikedanese @ixdy
      37cd01dc
    • Kubernetes Submit Queue's avatar
      Merge pull request #38523 from MrHohn/kube-dns-rename · d8c92531
      Kubernetes Submit Queue authored
      Automatic merge from submit-queue (batch tested with PRs 38058, 38523)
      
      Renames kube-dns configure files from skydns* to kubedns*
      
      `skydns-` prefix and `-rc` suffix are confusing and misleading. Renaming it to `kubedns` in existing yaml files and scripts.
      
      @bowei @thockin
      d8c92531
    • Kubernetes Submit Queue's avatar
      Merge pull request #38058 from smarterclayton/unstructured · 543cfa1a
      Kubernetes Submit Queue authored
      Automatic merge from submit-queue (batch tested with PRs 38058, 38523)
      
      Move unstructured types under `meta/v1` to indicate they are typed
      
      Add a few abstractions that make them simpler to use from generic code that does not need accessors. Move OwnerReference to meta/v1 and remote metatypes.go
      
      Part of #37530
      543cfa1a
    • Madhusudan.C.S's avatar
      Register metav1.GetOptions with federation APIs. · 8c63a14e
      Madhusudan.C.S authored
      PR #37693 missed a spot.
      8c63a14e
  3. 10 Dec, 2016 27 commits