-
Notifications
You must be signed in to change notification settings - Fork 14.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'kubernetes:main' into localstorage
- Loading branch information
Showing
4,619 changed files
with
699,170 additions
and
220,327 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
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
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
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,6 +1,7 @@ | ||
[submodule "themes/docsy"] | ||
path = themes/docsy | ||
url = https://github.com/google/docsy.git | ||
branch = v0.2.0 | ||
[submodule "api-ref-generator"] | ||
path = api-ref-generator | ||
url = https://github.com/kubernetes-sigs/reference-docs |
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 |
---|---|---|
|
@@ -9,7 +9,7 @@ These are just guidelines, not rules. Use your best judgment, and feel free to p | |
|
||
### Code of Conduct | ||
|
||
Kubernetes follows the [Cloud Native Computing Foundation (CNCF) Code of Conduct](https://github.com/cncf/foundation/blob/master/code-of-conduct.md). By participating, you are expected to uphold this code. Please report unacceptable behavior to the | ||
Kubernetes follows the [Cloud Native Computing Foundation (CNCF) Code of Conduct](https://github.com/cncf/foundation/blob/main/code-of-conduct.md). By participating, you are expected to uphold this code. Please report unacceptable behavior to the | ||
[Kubernetes Code of Conduct Committee](https://github.com/kubernetes/community/tree/master/committee-code-of-conduct) <[email protected]>. | ||
|
||
### Documentation and Site Decisions | ||
|
@@ -34,6 +34,6 @@ Note that code issues should be filed against the main kubernetes repository, wh | |
|
||
### Submitting Documentation Pull Requests | ||
|
||
If you're fixing an issue in the existing documentation, you should submit a PR against the master branch. Follow [these instructions to create a documentation pull request against the kubernetes.io repository](http://kubernetes.io/docs/home/contribute/create-pull-request/). | ||
If you're fixing an issue in the existing documentation, you should submit a PR against the main branch. Follow [these instructions to create a documentation pull request against the kubernetes.io repository](http://kubernetes.io/docs/home/contribute/create-pull-request/). | ||
|
||
For more information, see [contributing to Kubernetes docs](https://kubernetes.io/docs/contribute/). |
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 |
---|---|---|
|
@@ -4,28 +4,43 @@ | |
# change is that the Hugo version is now an overridable argument rather than a fixed | ||
# environment variable. | ||
|
||
FROM golang:1.15-alpine | ||
FROM golang:1.18-alpine | ||
|
||
LABEL maintainer="Luc Perkins <[email protected]>" | ||
|
||
RUN apk add --no-cache \ | ||
curl \ | ||
gcc \ | ||
g++ \ | ||
musl-dev \ | ||
build-base \ | ||
libc6-compat | ||
|
||
ARG HUGO_VERSION | ||
|
||
RUN mkdir $HOME/src && \ | ||
cd $HOME/src && \ | ||
curl -L https://github.com/gohugoio/hugo/archive/refs/tags/v${HUGO_VERSION}.tar.gz | tar -xz && \ | ||
cd "hugo-${HUGO_VERSION}" && \ | ||
go install --tags extended | ||
|
||
FROM golang:1.18-alpine | ||
|
||
RUN apk add --no-cache \ | ||
runuser \ | ||
git \ | ||
openssh-client \ | ||
rsync \ | ||
build-base \ | ||
libc6-compat \ | ||
npm && \ | ||
npm install -D autoprefixer postcss-cli | ||
|
||
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_extended_${HUGO_VERSION}_Linux-64bit.tar.gz | tar -xz && \ | ||
mv hugo /usr/local/bin/hugo && \ | ||
RUN mkdir -p /var/hugo && \ | ||
addgroup -Sg 1000 hugo && \ | ||
adduser -Sg hugo -u 1000 -h /src hugo | ||
adduser -Sg hugo -u 1000 -h /var/hugo hugo && \ | ||
chown -R hugo: /var/hugo && \ | ||
runuser -u hugo -- git config --global --add safe.directory /src | ||
|
||
COPY --from=0 /go/bin/hugo /usr/local/bin/hugo | ||
|
||
WORKDIR /src | ||
|
||
|
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.