-
Notifications
You must be signed in to change notification settings - Fork 14.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into format-conf
- Loading branch information
Showing
775 changed files
with
136,677 additions
and
15,188 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,6 @@ | ||
>^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | ||
> For 1.11 Features: set Milestone to 1.11 and Base Branch to release-1.11 | ||
> For 1.12 Features: set Milestone to 1.12 and Base Branch to release-1.12 | ||
>^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | ||
> NOTE: After opening the PR, please *un-check and re-check* the ["Allow edits from maintainers"](https://help.github.com/articles/allowing-changes-to-a-pull-request-branch-created-from-a-fork/) box so that maintainers can work on your patch and speed up the review process. This is a temporary workaround to address a known issue with GitHub.> | ||
> | ||
> Please delete this note before submitting the pull request. | ||
![Allow edits from maintainers checkbox](https://help.github.com/assets/images/help/pull_requests/allow-maintainers-to-make-edits-sidebar-checkbox.png) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -29,3 +29,6 @@ nohup.out | |
|
||
# Hugo output | ||
public/ | ||
|
||
# User-specific editorconfig files | ||
.editorconfig |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,22 @@ | ||
language: go | ||
go: | ||
- 1.9.3 | ||
- 1.10.2 | ||
|
||
# Don't want default ./... here: | ||
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 | ||
# Fetch dependencies for us to run the tests in test/examples_test.go | ||
- go get -t -v k8s.io/website/test | ||
# Make sure we are testing against the correct branch | ||
- pushd $GOPATH/src/k8s.io/kubernetes && git checkout release-1.10 && popd | ||
|
||
# Simplified deduplication of dependencies. | ||
# Make sure we are testing against the correct branch | ||
- pushd $GOPATH/src/k8s.io && git clone https://github.com/kubernetes/kubernetes && popd | ||
- pushd $GOPATH/src/k8s.io/kubernetes && git checkout release-1.11 && popd | ||
- cp -L -R $GOPATH/src/k8s.io/kubernetes/vendor/ $GOPATH/src/ | ||
- rm -r $GOPATH/src/k8s.io/kubernetes/vendor/ | ||
|
||
# Fetch additional dependencies to run the tests in examples/examples_test.go | ||
- go get -t -v k8s.io/website/content/en/examples | ||
|
||
script: | ||
# TODO(bep) | ||
- go test -v k8s.io/website/test #fixed by https://github.com/kubernetes/website/pull/8388 | ||
- go test -v k8s.io/website/content/en/examples | ||
#- ./verify-docs-format.sh |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
# Credit to Julien Guyomard (https://github.com/jguyomard). This Dockerfile | ||
# is essentially based on his Dockerfile at | ||
# https://github.com/jguyomard/docker-hugo/blob/master/Dockerfile. The only significant | ||
# change is that the Hugo version is now an overridable argument rather than a fixed | ||
# environment variable. | ||
|
||
FROM alpine:latest | ||
|
||
MAINTAINER Luc Perkins <lperkins@linuxfoundation.org> | ||
|
||
RUN apk add --no-cache \ | ||
curl \ | ||
git \ | ||
openssh-client \ | ||
rsync | ||
|
||
ARG HUGO_VERSION | ||
|
||
RUN mkdir -p /usr/local/src && \ | ||
cd /usr/local/src && \ | ||
curl -L https://github.com/gohugoio/hugo/releases/download/v${HUGO_VERSION}/hugo_${HUGO_VERSION}_linux-64bit.tar.gz | tar -xz && \ | ||
mv hugo /usr/local/bin/hugo && \ | ||
curl -L https://bin.equinox.io/c/dhgbqpS8Bvy/minify-stable-linux-amd64.tgz | tar -xz && \ | ||
mv minify /usr/local/bin && \ | ||
addgroup -Sg 1000 hugo && \ | ||
adduser -Sg hugo -u 1000 -h /src hugo | ||
|
||
WORKDIR /src | ||
|
||
EXPOSE 1313 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,22 @@ | ||
# Reviewers can /lgtm /approve but not sufficient for auto-merge without an | ||
# approver | ||
reviewers: | ||
- zhangxiaoyu-zidif | ||
- 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: | ||
- heckj | ||
- bradamant3 | ||
- bradtopol | ||
- steveperry-53 | ||
- zacharysarah | ||
- chenopis | ||
- kbarnard10 | ||
- mistyhacks | ||
- ryanmcginnis | ||
- steveperry-53 | ||
- tengqm | ||
- zacharysarah | ||
- zparnold |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.