1. 01 Feb, 2017 18 commits
    • Kubernetes Submit Queue's avatar
      Merge pull request #40763 from derekwaynecarr/log-noise-aws · 9ae2dfac
      Kubernetes Submit Queue authored
      Automatic merge from submit-queue (batch tested with PRs 40638, 40742, 40710, 40718, 40763)
      
      Reduce log noise when aws cloud cannot find public-ip4 metadata
      
      **What this PR does / why we need it**:
      The PR removes excessive log spam produced by the aws cloud provider for normal operating conditions.
      
      **Which issue this PR fixes** 
      fixes https://github.com/kubernetes/kubernetes/issues/23155
      
      **Special notes for your reviewer**:
      
      **Release note**:
      ```release-note
      NONE
      ```
      9ae2dfac
    • Kubernetes Submit Queue's avatar
      Merge pull request #40718 from janetkuo/secret-volume-describe-fix · dcf26ed8
      Kubernetes Submit Queue authored
      Automatic merge from submit-queue (batch tested with PRs 40638, 40742, 40710, 40718, 40763)
      
      Fix formatting issue of secret volume describer
      
      Fixing a `kubectl describe` bug
      
      **Before**:
      
      ```yaml
      ...
      Volumes:
        default-token-z7g96:
          Type:       Secret (a volume populated by a Secret)
          SecretName:     Optional:   %v
      
      %!(EXTRA string=default-token-z7g96, bool=false)QoS Class:      BestEffort
      ...
      ```
      
      **After**:
      
      ```yaml
      ...
      Volumes:
        default-token-z7g96:
          Type:       Secret (a volume populated by a Secret)
          SecretName: default-token-z7g96
          Optional:   false
      QoS Class:      BestEffort
      ...
      ```
      dcf26ed8
    • Kubernetes Submit Queue's avatar
      Merge pull request #40710 from deads2k/client-21-record · 76550cf2
      Kubernetes Submit Queue authored
      Automatic merge from submit-queue (batch tested with PRs 40638, 40742, 40710, 40718, 40763)
      
      move client/record
      
      An attempt at moving client/record to client-go.  It's proving very stubborn and needs a lot manual intervention and near as I can tell, no one actually gets any benefit from the sink and source complexity it adds.
      
      @sttts @caesarchaoxu
      76550cf2
    • Kubernetes Submit Queue's avatar
      Merge pull request #40742 from deads2k/generic-34-storage · 0469fc6f
      Kubernetes Submit Queue authored
      Automatic merge from submit-queue (batch tested with PRs 40638, 40742, 40710, 40718, 40763)
      
      move pkg/storage to apiserver
      
      Mechanical move of `pkg/storage` (not sub packages) to `k8s.io/apiserver`.
      
      @sttts
      0469fc6f
    • Kubernetes Submit Queue's avatar
      Merge pull request #40638 from yujuhong/rm_label · d399924b
      Kubernetes Submit Queue authored
      Automatic merge from submit-queue
      
      kuberuntime: remove the kubernetesManagedLabel label
      
      The CRI shim should be responsible for returning only those
      containers/sandboxes created through CRI. Remove this label in kubelet.
      d399924b
    • Kubernetes Submit Queue's avatar
      Merge pull request #39443 from freehan/cri-hostport · 32d79c34
      Kubernetes Submit Queue authored
      Automatic merge from submit-queue (batch tested with PRs 40111, 40368, 40342, 40274, 39443)
      
      refactor hostport logic
      
      Refactor hostport logic to avoid using api.Pod object directly.
      32d79c34
    • Kubernetes Submit Queue's avatar
      Merge pull request #40274 from muteor/fix-libvirt-coreos-bin-permissions · 1ed1ba44
      Kubernetes Submit Queue authored
      Automatic merge from submit-queue (batch tested with PRs 40111, 40368, 40342, 40274, 39443)
      
      Libvirt-coreos - Add execute permissions to kubernetes/bin
      
      **What this PR does / why we need it**:
      
      The master node was failing to start for me due to the permission errors on the kubernetes server binaries.
      
      **Which issue this PR fixes** *(optional, in `fixes #<issue number>(, fixes #<issue_number>, ...)` format, will close that issue when PR gets merged)*: fixes #
      
      **Special notes for your reviewer**:
      
      **Release note**:
      
      ```release-note
      NONE
      ```
      1ed1ba44
    • Kubernetes Submit Queue's avatar
      Merge pull request #40342 from louyihua/remove_warning · 8fe7a2de
      Kubernetes Submit Queue authored
      Automatic merge from submit-queue (batch tested with PRs 40111, 40368, 40342, 40274, 39443)
      
      Eliminate "Unknown service type: ExternalName"
      
      When creating an ExternalName service, rest.go still generate the warning message "Unknown service type: ExternalName". This should be eliminated as this type of service is supported now.
      8fe7a2de
    • Kubernetes Submit Queue's avatar
      Merge pull request #40368 from sc68cal/patch/centos_name · fd13413b
      Kubernetes Submit Queue authored
      Automatic merge from submit-queue (batch tested with PRs 40111, 40368, 40342, 40274, 39443)
      
      Change OPENSTACK_IMAGE_NAME to be more specific
      
      There may already be other images in the cloud named CentOS7,
      but since we are fetching a very specific version (1604) we should
      go ahead and make the image name very specific as well.
      
      
      
      **What this PR does / why we need it**:
      
      Some clouds already have `Centos7` as an image that is available, however it may not be the *specific* version that openstack-heat looks for and downloads from CentOS.
      
      **Which issue this PR fixes** *(optional, in `fixes #<issue number>(, fixes #<issue_number>, ...)` format, will close that issue when PR gets merged)*: 
      
      **Special notes for your reviewer**:
      
      **Release note**:
      
      ```release-note 
      OpenStack-Heat will now look for an image named "CentOS-7-x86_64-GenericCloud-1604". To restore the previous behavior set OPENSTACK_IMAGE_NAME="CentOS7"
      ```
      fd13413b
    • Kubernetes Submit Queue's avatar
      Merge pull request #40111 from juanvallejo/jvallejo/add-ensure-print-headers · c09311fa
      Kubernetes Submit Queue authored
      Automatic merge from submit-queue
      
      Add printer#EnsurePrintHeaders method
      
      This patch adds a new `EnsurePrintHeaders` method to the
      HumanReadablePrinter `ResourcePrinter`, which allows headers to be
      printed in cases where multiple lists of the same resource are printed
      consecutively, but are separated by non-printer related information.
      
      Related downstream PR: https://github.com/openshift/origin/pull/12528
      
      **Release note**:
      ```release-note
      release-note-none
      ```
      
      cc @fabianofranz @AdoHe
      c09311fa
    • Kubernetes Submit Queue's avatar
      Merge pull request #40614 from beeradb/patch-1 · c7d204cb
      Kubernetes Submit Queue authored
      Automatic merge from submit-queue
      
      Fix issue template to read more clearly
      
      **What this PR does / why we need it**:
      
      This PR fixes the github issue template. Currently the wording is very awkward.
      c7d204cb
    • Kubernetes Submit Queue's avatar
      Merge pull request #40508 from vjsamuel/master · b5d92d6f
      Kubernetes Submit Queue authored
      Automatic merge from submit-queue
      
      Preventing nil pointer reference in client_config
      
      When a user tries to set the `extensions` map in the kube config, loading of the client config causes nil pointer exception because the `Context`, `Cluster`, `AuthInfo` objects are created without initializing the extensions map. This PR attempts to fix that.
      b5d92d6f
    • Kubernetes Submit Queue's avatar
      Merge pull request #40744 from liggitt/1.6-release-notes · 2e59a9cd
      Kubernetes Submit Queue authored
      Automatic merge from submit-queue
      
      Update 1.6.0-alpha.1 changelog
      
      clean up some auth-related changelogs
      2e59a9cd
    • Kubernetes Submit Queue's avatar
      Merge pull request #40318 from bonifaido/patch-1-kubefed · 6de46a8e
      Kubernetes Submit Queue authored
      Automatic merge from submit-queue
      
      Fix kubectl->kubefed typo
      
      **What this PR does / why we need it**: The kubefed CLI too had a typo in it's example text.
      
      **Which issue this PR fixes** *(optional, in `fixes #<issue number>(, fixes #<issue_number>, ...)` format, will close that issue when PR gets merged)*: fixes #
      
      **Special notes for your reviewer**:
      
      **Release note**:
      6de46a8e
    • deads2k's avatar
      sync · a12d45a2
      deads2k authored
      a12d45a2
    • deads2k's avatar
    • deads2k's avatar
      move client/record · 8a120004
      deads2k authored
      8a120004
    • deads2k's avatar
      move pkg/storage to apiserver · 1ef5d260
      deads2k authored
      1ef5d260
  2. 31 Jan, 2017 22 commits