Commit Graph

80026 Commits

Author SHA1 Message Date
Kubernetes Prow Robot
1973373be9
Merge pull request #79342 from stealthybox/patch-1
Update CHANGELOG.md
2019-06-24 13:36:48 -07:00
Kubernetes Prow Robot
6f0f62b2c4
Merge pull request #77211 from dixudx/bootstrap_token_refactor
Bootstrap token refactor
2019-06-24 13:36:36 -07:00
Haowei Cai
095d9349a1 printer: fix a nil pointer dereference 2019-06-24 13:11:18 -07:00
Sean Sullivan
6f120f9660 Updated publishing dependencies rules 2019-06-24 12:42:54 -07:00
Sean Sullivan
2c536a2c33 Updates to dependencies including go.mod, go.sum, and BUILD files 2019-06-24 12:36:33 -07:00
Sean Sullivan
11c5bd1b2f Updated imports for util/deployment 2019-06-24 12:32:59 -07:00
Sean Sullivan
c3f6418b59 Moved pkg/kubectl/util/deployment to staging 2019-06-24 12:32:13 -07:00
Andy Goldstein
9bba2c93ec
Fix max port value to 65535
Signed-off-by: Andy Goldstein <goldsteina@vmware.com>
2019-06-24 15:13:27 -04:00
Koonwah Chen
46ff8e6b57 Add env var(CNI_STORAGE_PATH) for cni storage path. 2019-06-24 11:47:14 -07:00
Benjamin Elder
4aaa7b4da2 document KUBE_ROOT in util.sh 2019-06-24 11:43:04 -07:00
Benjamin Elder
7e96be30ca fix hack/verify-no-vendor-cycles.sh shellcheck failures 2019-06-24 11:43:04 -07:00
Benjamin Elder
1741d9393d fix hack/pin-dependency.sh shellcheck failures 2019-06-24 11:43:04 -07:00
Benjamin Elder
47daf195a4 fix hack/update-vendor.sh shellcheck failures 2019-06-24 11:43:04 -07:00
Benjamin Elder
29b7b2c4f8 add kube::util::list_staging_repos 2019-06-24 11:43:04 -07:00
Kubernetes Prow Robot
a5c727e26f
Merge pull request #79327 from SataQiu/cleanup-experimental-1.16
kubeadm: cleanup ExperimentalControlPlane and ExperimentalUploadCerts
2019-06-24 11:24:40 -07:00
Kubernetes Prow Robot
bc70f33e3a
Merge pull request #79294 from tedyu/svc-ctrl-lock
Use RWMutex to improve locking for serviceCache
2019-06-24 11:24:28 -07:00
Kubernetes Prow Robot
5b23c47079
Merge pull request #79202 from sallyom/mv-kubectl-util-podutils-stg
Move pkg/kubectl/util/podutils to staging
2019-06-24 11:24:15 -07:00
Kubernetes Prow Robot
231033bd15
Merge pull request #79148 from RobertKrawitz/mirror-pod-delete-loop-fix
Issue 79147: Do not delete an incorrect pod when replacing a mirror pod
2019-06-24 11:24:02 -07:00
Kubernetes Prow Robot
2a366773e9
Merge pull request #76281 from zgfh/patch-5
fix typo: "inidvidual"-> "individual"
2019-06-24 11:23:50 -07:00
Benjamin Elder
d596093925 automatically set clinkopts 2019-06-24 11:11:44 -07:00
Benjamin Elder
23fa8e7b6e update libssecomp-golang to v0.9.1 2019-06-24 11:11:44 -07:00
Jordan Liggitt
5d508760e3 Fix --watch-only of a single item with table output 2019-06-24 09:34:15 -07:00
Jordan Liggitt
2b65c74b94 Add kubectl get/list/watch tests for table output 2019-06-24 08:49:28 -07:00
Jordan Liggitt
ead86cf350 Test humanreadable table output 2019-06-24 08:34:36 -07:00
Jordan Liggitt
fe339d2420 Fix short buffer error in get test 2019-06-24 08:27:14 -07:00
leigh capili
e85fbdaa2f
Update CHANGELOG.md 2019-06-24 09:19:59 -06:00
Kubernetes Prow Robot
ddc4ed0365
Merge pull request #79335 from rosti/kubeadm-nuke-normalizer
kubeadm: Stop using //pkg/util/normalizer
2019-06-24 08:02:11 -07:00
Kubernetes Prow Robot
d1f342fb59
Merge pull request #79220 from rosti/fix-MarshalClusterConfigurationToBytes
kubeadm: Retire MarshalClusterConfigurationToBytes
2019-06-24 08:01:58 -07:00
Kubernetes Prow Robot
bc8ea43277
Merge pull request #78026 from Klaven/norm_kube_version
seperation of network call in KubernetesReleaseVersion
2019-06-24 06:27:57 -07:00
Sally O'Malley
fbc5c5df1c
Updated publishing dependencies rules, import-restrictions 2019-06-24 08:17:47 -04:00
Sally O'Malley
d6af3f2653
Update go.mod, go.sum, and BUILD file dependencies 2019-06-24 08:17:47 -04:00
Sally O'Malley
a2691d8e93
Removes unused BUILD file 2019-06-24 08:17:47 -04:00
Sally O'Malley
4c58308b4e
Move pkg/kubectl/util/podutils to staging 2019-06-24 08:17:47 -04:00
Rostislav M. Georgiev
94c56c81ba kubeadm: Retire MarshalClusterConfigurationToBytes
MarshalClusterConfigurationToBytes has capabilities to output the component
configs, as separate YAML documents, besides the kubeadm ClusterConfiguration
kind. This is no longer necessary for the following reasons:

- All current use cases of this function require only the ClusterConfiguration.
- It will output component configs only if they are not the default ones. This
  can produce undeterministic output and, thus, cause potential problems.
- There are only hacky ways to dump the ClusterConfiguration only (without the
  component configs).

Hence, we simplify things by replacing the function with direct calls to the
underlaying MarshalToYamlForCodecs. Thus marshalling only ClusterConfiguration,
when needed.

Signed-off-by: Rostislav M. Georgiev <rostislavg@vmware.com>
2019-06-24 15:17:19 +03:00
Kubernetes Prow Robot
5fa7d85c97
Merge pull request #79330 from nikhita/replace-deps-rules
publishing: use deps in replace directive in rules
2019-06-24 05:01:55 -07:00
Rostislav M. Georgiev
615e425d26 kubeadm: Stop using //pkg/util/normalizer
Stop using //pkg/util/normalizer. Use local versions of LongDesc and Examples,
that do not require any external dependencies (other than the Go standard
library).

Signed-off-by: Rostislav M. Georgiev <rostislavg@vmware.com>
2019-06-24 14:40:55 +03:00
Kubernetes Prow Robot
80a3177f17
Merge pull request #79326 from bradbeam/etcdleave
fix: Use correct function to remove etcd member
2019-06-24 03:13:57 -07:00
Nikhita Raghunath
ab3cdd57b7 publishing: use deps in replace directive in rules
The list of dependencies for a repo right now is equal to the list of deps
mentioned in the require directive in the repo's go.mod file.
This means that we loose all transitive deps mentioned in the replace
directive in go.mod files.

So instead use all deps mentioned in the replace directive, and prune
any extra dependencies.

Also add a test for this in verify-publishing-bot.py
2019-06-24 14:01:20 +05:30
Kubernetes Prow Robot
7980bacc0b
Merge pull request #79157 from qingsenLi/k8s-190619
correct the CHANGELOG-1.14.md
2019-06-24 00:21:55 -07:00
Kubernetes Prow Robot
2109c1a7a3
Merge pull request #79310 from draveness/feature/cleanup-KubeletPluginsWatcher-feature-gates
feat: cleanup feature gates for KubeletPluginsWatcher
2019-06-23 23:04:09 -07:00
Kubernetes Prow Robot
dc764030c2
Merge pull request #79303 from liggitt/preferred-deps
Use preferred dependency versions
2019-06-23 23:03:56 -07:00
SataQiu
c794929d1d kubeadm: cleanup ExperimentalControlPlane and ExperimentalUploadCerts 2019-06-24 11:52:57 +08:00
Kubernetes Prow Robot
5cb5cfa39a
Merge pull request #79161 from qingsenLi/k8s-190619-1.13
correct the CHANGELOG-1.13.md
2019-06-23 20:45:56 -07:00
Brad Beam
b646ac4a0e fix: Use correct function to remove etcd member
Signed-off-by: Brad Beam <brad.beam@talos-systems.com>
2019-06-23 22:39:34 -05:00
Jordan Liggitt
b1fd883617 Drop unused dependencies 2019-06-23 18:55:29 -07:00
Jordan Liggitt
0dae628d2f github.com/kr/text v0.1.0 2019-06-23 18:55:29 -07:00
Jordan Liggitt
14cd8c365c gopkg.in/natefinch/lumberjack.v2 v2.0.0 2019-06-23 18:55:29 -07:00
Jordan Liggitt
855048b1b3 github.com/hashicorp/hcl v1.0.0 2019-06-23 18:55:27 -07:00
Jordan Liggitt
63e5ad08aa github.com/gorilla/websocket v1.4.0 2019-06-23 18:54:03 -07:00
Jordan Liggitt
29853a1976 github.com/google/uuid v1.1.1 2019-06-23 18:54:03 -07:00