- 05 Mar, 2019 19 commits
-
-
Kubernetes Prow Robot authored
Delete the out-of-tree PV labeler controller
-
Kubernetes Prow Robot authored
When checking for pod info version, make volume attachable
-
Kubernetes Prow Robot authored
fix golint failures for some files under metrics k8s.io/metrics/pkg/apis
-
Kubernetes Prow Robot authored
Fix golint failures for e2e/instrumentation/...
-
Kubernetes Prow Robot authored
Typo fix in e2e test description message: kubadm->kubeadm
-
Kubernetes Prow Robot authored
fix some golint failures for plugin/pkg/admission/...
-
Kubernetes Prow Robot authored
CSINodeInfo and CSIDriver Controller Changes
-
Kubernetes Prow Robot authored
Merge pull request #74033 from bart0sh/PR0060-kubeadm-975-RequiredIPVSKernelModulesAvailable-warning-seems-confusing kubeadm: fix RequiredIPVSKernelModulesAvailable warning message
-
Kubernetes Prow Robot authored
Update RBAC roles for networking.k8s.io ingresses
-
Kubernetes Prow Robot authored
Fix shellcheck-reported errors in hack/lib/util.sh.
-
Kubernetes Prow Robot authored
Refactor to allow for a way to get list of e2e images
-
Kubernetes Prow Robot authored
fix error string should not be capitalized
-
Kubernetes Prow Robot authored
Change to unblock e2e tests for vsphere provider
-
Kubernetes Prow Robot authored
Fix golint failures for e2e/windows
-
Kubernetes Prow Robot authored
Update old local tests to use general host executor and local test resource manager
-
Kubernetes Prow Robot authored
added production note about EFK stack to the readme
-
Xing Yang authored
-
Xing Yang authored
-
Xing Yang authored
This is the 2nd PR to move CSINodeInfo/CSIDriver APIs to v1beta1 core storage APIs. It includes controller side changes. It depends on the PR with API changes: https://github.com/kubernetes/kubernetes/pull/73883
-
- 04 Mar, 2019 21 commits
-
-
Aaron Crickenberger authored
Update generated protobuf files
-
danielqsj authored
-
danielqsj authored
-
danielqsj authored
-
Kubernetes Prow Robot authored
Expand reviewers/approvers and add labels for conformance image
-
Kubernetes Prow Robot authored
Fix golint failures in staging/src/k8s.io/apiserver/pkg/storage/errors, staging/src/k8s.io/apiserver/pkg/storage/etcd
-
Kubernetes Prow Robot authored
Fix golint failures in test/e2e/instrumentation, test/e2e_node/environment
-
Ismo Puustinen authored
-
Ismo Puustinen authored
Test script: #!/bin/bash rev1="foo" rev2="\"bar\"" rev3="'bar'" newrev1="${rev1//[\'\"]}" newrev2="${rev2//[\'\"]}" newrev3="${rev3//[\'\"]}" oldrev1=$(echo "${rev1}" | sed "s/['\"]//g") oldrev2=$(echo "${rev2}" | sed "s/['\"]//g") oldrev3=$(echo "${rev3}" | sed "s/['\"]//g") echo "$newrev1 vs. $oldrev1" echo "$newrev2 vs. $oldrev2" echo "$newrev3 vs. $oldrev3" expected output: foo vs. foo bar vs. bar bar vs. bar -
Ismo Puustinen authored
Also fix array item comparison. Test script for the comparison change: #!/bin/bash staging_apis=(extensions/v1beta1 extensions/v1 extensions/v1alpha) group_versions=(v1 extensions/v1beta1 extensions/v1 extensions.k8s.io/v1) for group_version in ${group_versions[@]}; do # original code if [[ " ${staging_apis[@]} " =~ " ${group_version/.*k8s.io/} " ]]; then echo "orig: vendor/k8s.io/api/${group_version/.*k8s.io/}" fi # new code for api in ${staging_apis[@]}; do if [[ "${api}" = "${group_version/.*k8s.io/}" ]]; then echo "new: vendor/k8s.io/api/${group_version/.*k8s.io/}" fi done done Expected output: orig: vendor/k8s.io/api/extensions/v1beta1 new: vendor/k8s.io/api/extensions/v1beta1 orig: vendor/k8s.io/api/extensions/v1 new: vendor/k8s.io/api/extensions/v1 orig: vendor/k8s.io/api/extensions/v1 new: vendor/k8s.io/api/extensions/v1 -
Ismo Puustinen authored
"Decorate" the variables with a no-op function to prevent shellcheck from complaining that they are not being used. This method provides visibility to which variables are supposed to be used in a sourcing script compared to just disabling the warning.
-
Ismo Puustinen authored
Use "command -v" instead of "which". Also remove the redirections, since "command -v" does not return an error message if the command isn't found. Also use "read -r" instead of "read" and quote variables properly. Do some error handling if "pushd" or "popd" fail. Read values properly into arrays. However, one shellcheck error is ignored in trap mechanism. The logic in trap_add function requires the trap command to be expanded when run. Just storing the variable into trap doesn't work. Add a shellcheck disable directive to ignore the error. An alternative to ignoring could be tricking shellcheck with: trap ''"${new_cmd}" "${trap_add_name}" -
Jordan Liggitt authored
Change-Id: Ie01ce38d25d05e90d79ddc6e80584a21cf7ff299
-
Kubernetes Prow Robot authored
apiextensions: add nullable support to OpenAPI v3 validations
-
-
Kubernetes Prow Robot authored
Add 1.14 branches for the publishing-bot
-
Davanum Srinivas authored
Change-Id: Id34d1f12361e587e02f7dba077a9600618737878
-
Kubernetes Prow Robot authored
kube-apiserver: don't create endpoints before being ready
-
Kubernetes Prow Robot authored
kubeadm-reset: fetch init config only if client is non-nil
-
Lubomir I. Ivanov authored
-
Kubernetes Prow Robot authored
kubeadm: use DefValue for the --kubeconfig flag
-