Compare commits

..

10 Commits

Author SHA1 Message Date
Harshvardhan Karn 524cfedbfe fix version navigation in release v1.8 (#9357)
* fix version navigation in release v1.8

- In `release v1.8`, navigating selector to version `v1.10` disappears
- modified `_config.yml` in branch `release-1.8`

Signed-off-by: harshvkarn <harshvkarn54@gmail.com>

* missing `docs` from version 1.9 selector's link

* removing v1.5.7 support

remove v1.5.7 selector, as it is no longer supported

* update _config with version 1.11

- add version 1.11 (latest) support

* Update _config.yml

* update .travis.yml

Signed-off-by: harshvkarn <harshvkarn54@gmail.com>

* Update .travis.yml

* Update .travis.yml

* Update .travis.yml

* Remove 1.6

* Attempting a debug fix based on #9358
2018-07-12 16:27:26 -07:00
Qiming 3bd5670939 Fix 1.8 CI gate (#9423) 2018-07-12 15:26:26 -07:00
Zach Corleissen e16ad4e7a0 Backport OWNERS from master to release-1.8 (#9492) 2018-07-12 15:24:32 -07:00
Michael Taufen 4fb1b686d1 Fix typo (#7642) 2018-03-05 16:35:52 -08:00
Qiming b8d006391d Merge pull request #6943 from tengqm/cherrypick-6867
Fix CI issue - Cherrypick #6867
2018-01-12 15:56:27 +08:00
Qiming Teng 11a2cd9a20 Fix CI issue
The scheduler module has been moved outside of the plugin subdirectory
in the kubernetes/kubernetes project. The gate should change
accordingly.
2018-01-12 15:50:01 +08:00
Steve Perry 444943bc44 Add deprecation banner to 1.8 docs. (#6703) 2017-12-18 14:08:57 -08:00
Zach Corleissen cd9183197f Update _config.yml 2017-12-15 18:01:00 -06:00
Zach Corleissen 6b4729694a Fix the site version selector for 1.9 2017-12-15 17:56:37 -06:00
Zach Corleissen 51b2149717 Update release-1.8 for version changes in 1.9 (#6519)
* Update release-1.8 for version changes in v1.9

* Update _config.yml
2017-12-15 17:40:16 -06:00
5 changed files with 47 additions and 28 deletions
+7 -3
View File
@@ -7,14 +7,18 @@ install:
- export PATH=$GOPATH/bin:$PATH
- mkdir -p $HOME/gopath/src/k8s.io
- mv $TRAVIS_BUILD_DIR $HOME/gopath/src/k8s.io/website
- cd $HOME/gopath/src/k8s.io/website
# (1) Fetch dependencies for us to run the tests in test/examples_test.go
- go get -t -v k8s.io/website/test
- pushd $GOPATH/src/k8s.io && git clone https://github.com/kubernetes/kubernetes && popd
- pushd $GOPATH/src/k8s.io/kubernetes && git checkout release-1.8 && popd
# Simplified deduplication of dependencies.
# (2) Simplified deduplication of dependencies.
- cp -L -R $GOPATH/src/k8s.io/kubernetes/vendor/ $GOPATH/src/
- rm -r $GOPATH/src/k8s.io/kubernetes/vendor/
- go get -t -v k8s.io/website/test
script:
- go test -v k8s.io/website/test
- ./verify-docs-format.sh
- ./verify-docs-format.sh
+17 -2
View File
@@ -1,6 +1,21 @@
# Reviewers can /lgtm /approve but not sufficient for auto-merge without an
# approver
reviewers:
- a-mccarthy
- abiogenesis-now
- rajakavitha1
- stewart-yu
- xiangpengzhao
- zhangxiaoyu-zidif
# Approvers have all the ability of reviewers but their /approve makes
# auto-merge happen if a /lgtm exists, or vice versa, or they can do both
# No need for approvers to also be listed as reviewers
approvers:
- bradamant3
- bradtopol
- chenopis
- kbarnard10
- mistyhacks
- steveperry-53
- tengqm
- zacharysarah
- zparnold
+20 -20
View File
@@ -18,37 +18,37 @@ defaults:
scope:
path: ""
values:
fullversion: "v1.8.0"
fullversion: "v1.8.4"
version: "v1.8"
githubbranch: "master"
docsbranch: "master"
versions:
- fullversion: "v1.8.0"
- fullversion: "v1.11.0"
version: "v1.11"
githubbranch: "v1.11.0"
docsbranch: "release-1.11"
url: https://kubernetes.io/docs/
- fullversion: "v1.10.0"
version: "v1.10"
githubbranch: "v1.10.0"
docsbranch: "release-1.10"
url: https://v1-10.docs.kubernetes.io/docs/home/
- fullversion: "v1.9.0"
version: "v1.9"
githubbranch: "v1.9.0"
docsbranch: "release-1.9"
url: https://v1-9.docs.kubernetes.io/docs/home/
- fullversion: "v1.8.4"
version: "v1.8"
githubbranch: "v1.8.0"
githubbranch: "v1.8.4"
docsbranch: "release-1.8"
url: https://kubernetes.io/docs/home/
url: https://v1-8.docs.kubernetes.io/docs/home/
- fullversion: "v1.7.6"
version: "v1.7"
githubbranch: "v1.7.6"
docsbranch: "release-1.7"
url: https://v1-7.docs.kubernetes.io/docs/home/
- fullversion: "v1.6.8"
version: "v1.6"
githubbranch: "v1.6.8"
docsbranch: "release-1.6"
url: https://v1-6.docs.kubernetes.io/docs/home/
- fullversion: "v1.5.7"
version: "v1.5"
githubbranch: "v1.5.7"
docsbranch: "release-1.5"
url: https://v1-5.docs.kubernetes.io/docs/
- fullversion: "v1.4.12"
version: "v1.4"
githubbranch: "v1.4.12"
docsbranch: "release-1.4"
url: https://v1-4.docs.kubernetes.io/docs/
deprecated: false
deprecated: true
currentUrl: https://kubernetes.io/docs/home/
nextUrl: http://kubernetes-io-vnext-staging.netlify.com/
-
@@ -42,7 +42,7 @@ The basic workflow for configuring a Kubelet in a live cluster is as follows:
1. Write a YAML or JSON configuration file containing the
Kubelet's configuration.
2. Wrap this file in a ConfigMap and save it to the Kubernetes control plane.
3. Update the Kubelet's correspoinding Node object to use this ConfigMap.
3. Update the Kubelet's corresponding Node object to use this ConfigMap.
Each Kubelet watches a configuration reference on its respective Node object.
When this reference changes, the Kubelet downloads the new configuration and
+2 -2
View File
@@ -39,8 +39,8 @@ import (
autoscaling_validation "k8s.io/kubernetes/pkg/apis/autoscaling/validation"
"k8s.io/kubernetes/pkg/apis/batch"
batch_validation "k8s.io/kubernetes/pkg/apis/batch/validation"
api "k8s.io/kubernetes/pkg/apis/core"
"k8s.io/kubernetes/pkg/apis/core/validation"
api "k8s.io/kubernetes/pkg/api"
"k8s.io/kubernetes/pkg/api/validation"
"k8s.io/kubernetes/pkg/apis/extensions"
ext_validation "k8s.io/kubernetes/pkg/apis/extensions/validation"
"k8s.io/kubernetes/pkg/apis/policy"