Skip to content

Commit e47b159

Browse files
authored
Merge pull request #1 from kubernetes/master
update from base repository
2 parents dad6741 + 69cf268 commit e47b159

File tree

5,869 files changed

+431275
-695690
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

5,869 files changed

+431275
-695690
lines changed

.generated_files

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@ file-name types_swagger_doc_generated.go
2424

2525
path-prefix Godeps/
2626
path-prefix vendor/
27-
path-prefix api/swagger-spec/
2827
path-prefix pkg/generated/
2928

3029
paths-from-repo docs/.generated_docs

.gitattributes

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,4 @@ test/test_owners.csv merge=union
66
**/generated.pb.go linguist-generated=true
77
**/generated.proto
88
**/types_swagger_doc_generated.go linguist-generated=true
9-
docs/api-reference/** linguist-generated=true
10-
api/swagger-spec/*.json linguist-generated=true
119
api/openapi-spec/*.json linguist-generated=true

.github/ISSUE_TEMPLATE/bug-report.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
---
22
name: Bug Report
33
about: Report a bug encountered while operating Kubernetes
4+
labels: kind/bug
45

56
---
67

@@ -22,6 +23,3 @@ about: Report a bug encountered while operating Kubernetes
2223
- Kernel (e.g. `uname -a`):
2324
- Install tools:
2425
- Others:
25-
26-
<!-- DO NOT EDIT BELOW THIS LINE -->
27-
/kind bug

.github/ISSUE_TEMPLATE/enhancement.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,11 @@
11
---
22
name: Enhancement Request
33
about: Suggest an enhancement to the Kubernetes project
4+
labels: kind/feature
45

56
---
67
<!-- Please only use this template for submitting enhancement requests -->
78

89
**What would you like to be added**:
910

1011
**Why is this needed**:
11-
12-
<!-- DO NOT EDIT BELOW THIS LINE -->
13-
/kind feature

.github/ISSUE_TEMPLATE/failing-test.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
---
22
name: Failing Test
33
about: Report test failures in Kubernetes CI jobs
4+
labels: kind/failing-test
45

56
---
67

@@ -17,6 +18,3 @@ about: Report test failures in Kubernetes CI jobs
1718
**Reason for failure**:
1819

1920
**Anything else we need to know**:
20-
21-
<!-- DO NOT EDIT BELOW THIS LINE -->
22-
/kind failing-test

.github/ISSUE_TEMPLATE/support.md

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
---
22
name: Support Request
33
about: Support request or question relating to Kubernetes
4+
labels: triage/support
45

56
---
67

@@ -15,8 +16,3 @@ You can also post your question on the [Kubernetes Slack](http://slack.k8s.io/)
1516
1617
If the matter is security related, please disclose it privately via https://kubernetes.io/security/.
1718
-->
18-
19-
<!-- DO NOT EDIT BELOW THIS LINE -->
20-
21-
/triage support
22-

.github/OWNERS

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
1+
# See the OWNERS docs at https://go.k8s.io/owners
2+
13
reviewers:
24
- castrojo
35
- cblecker
46
- grodrigues3
7+
- nikhita
58
- parispittman
69
- Phillels
710
approvers:
@@ -10,3 +13,5 @@ approvers:
1013
- grodrigues3
1114
- parispittman
1215
- Phillels
16+
labels:
17+
- sig/contributor-experience

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
<!-- Thanks for sending a pull request! Here are some tips for you:
2-
1. If this is your first time, read our contributor guidelines https://git.k8s.io/community/contributors/guide#your-first-contribution and developer guide https://git.k8s.io/community/contributors/devel/development.md#development-guide
2+
3+
1. If this is your first time, please read our contributor guidelines: https://git.k8s.io/community/contributors/guide#your-first-contribution and developer guide https://git.k8s.io/community/contributors/devel/development.md#development-guide
34
2. Please label this pull request according to what type of issue you are addressing, especially if this is a release targeted pull request. For reference on required PR/issue labels, read here:
45
https://git.k8s.io/community/contributors/devel/release.md#issue-kind-label
56
3. Ensure you have added or ran the appropriate tests for your PR: https://git.k8s.io/community/contributors/devel/testing.md
@@ -9,7 +10,7 @@ https://git.k8s.io/community/contributors/devel/release.md#issue-kind-label
910
-->
1011

1112
**What type of PR is this?**
12-
> Uncomment only one, leave it on its own line:
13+
> Uncomment only one ` /kind <>` line, hit enter to put that in a new line, and remove leading whitespaces from that line:
1314
>
1415
> /kind api-change
1516
> /kind bug
@@ -22,17 +23,21 @@ https://git.k8s.io/community/contributors/devel/release.md#issue-kind-label
2223
2324
**What this PR does / why we need it**:
2425

25-
**Which issue(s) this PR fixes** *(optional, in `fixes #<issue number>(, fixes #<issue_number>, ...)` format, will close the issue(s) when PR gets merged)*:
26+
**Which issue(s) this PR fixes**:
27+
<!--
28+
*Automatically closes linked issue when PR is merged.
29+
Usage: `Fixes #<issue number>`, or `Fixes (paste link of issue)`.
30+
_If PR is about `failing-tests or flakes`, please post the related issues/tests in a comment and do not use `Fixes`_*
31+
-->
2632
Fixes #
2733

2834
**Special notes for your reviewer**:
2935

3036
**Does this PR introduce a user-facing change?**:
3137
<!--
32-
If no, just write "NONE".
38+
If no, just write "NONE" in the release-note block below.
3339
If yes, a release note is required:
3440
Enter your extended release note in the block below. If the PR requires additional action from users switching to the new release, include the string "action required".
35-
2.
3641
-->
3742
```release-note
3843

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -127,3 +127,6 @@ zz_generated_*_test.go
127127

128128
/bazel-*
129129
*.pyc
130+
131+
# generated by verify-godeps.sh
132+
vendordiff.patch

0 commit comments

Comments
 (0)