-
Notifications
You must be signed in to change notification settings - Fork 4.9k
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 ilyaz/fix_no_digest_caching
- Loading branch information
Showing
72 changed files
with
3,811 additions
and
1,418 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 |
---|---|---|
@@ -0,0 +1,18 @@ | ||
name: "generate-docs" | ||
on: | ||
push: | ||
branches: | ||
- master | ||
|
||
jobs: | ||
generate-docs: | ||
runs-on: ubuntu-18.04 | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: actions/setup-go@v2 | ||
with: | ||
go-version: 1.16.4 | ||
stable: true | ||
- name: gendocs | ||
run: | | ||
./hack/generate_docs.sh ${{ secrets.MINIKUBE_BOT_PAT }} |
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,18 @@ | ||
name: "time-to-k8s benchmark" | ||
on: | ||
release: | ||
types: [released] | ||
jobs: | ||
benchmark: | ||
runs-on: ubuntu-18.04 | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Checkout submodules | ||
run: git submodule update --init | ||
- uses: actions/setup-go@v2 | ||
with: | ||
go-version: 1.16.4 | ||
stable: true | ||
- name: Benchmark | ||
run: | | ||
./hack/benchmark/time-to-k8s/time-to-k8s.sh ${{ secrets.MINIKUBE_BOT_PAT }} |
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,6 @@ | ||
[submodule "site/themes/docsy"] | ||
path = site/themes/docsy | ||
url = https://github.com/google/docsy.git | ||
[submodule "hack/benchmark/time-to-k8s/time-to-k8s"] | ||
path = hack/benchmark/time-to-k8s/time-to-k8s | ||
[submodule "hack/benchmark/time-to-k8s/time-to-k8s-repo"] | ||
path = hack/benchmark/time-to-k8s/time-to-k8s-repo | ||
url = https://github.com/tstromberg/time-to-k8s.git |
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.