Skip to content

Commit baded77

Browse files
committed
initial api
Signed-off-by: huabing zhao <[email protected]>
0 parents  commit baded77

File tree

287 files changed

+155231
-0
lines changed

Some content is hidden

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

287 files changed

+155231
-0
lines changed

.gitattributes

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
*.descriptor linguist-generated=true
2+
*.descriptor -diff -merge
3+
*.descriptor_set linguist-generated=true
4+
*.descriptor_set -diff -merge
5+
*.pb.html linguist-generated=true
6+
*.pb.go linguist-generated=true
7+
*.gen.go linguist-generated=true
8+
*.gen.yaml linguist-generated=true
9+
*.gen.json linguist-generated=true
10+
*_pb2.py linguist-generated=true
11+
go.sum merge=union

.github/ISSUE_TEMPLATE/bug_report.md

+36
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
---
2+
name: Bug report
3+
about: Report a bug to help us improve Istio
4+
---
5+
(NOTE: This is used to report product bugs:
6+
To report a security vulnerability, please visit <https://istio.io/about/security-vulnerabilities/>
7+
To ask questions about how to use Istio, please visit <https://discuss.istio.io>
8+
)
9+
10+
**Bug description**
11+
12+
**Affected product area (please put an X in all that apply)**
13+
14+
[ ] Configuration Infrastructure
15+
[ ] Docs
16+
[ ] Installation
17+
[ ] Networking
18+
[ ] Performance and Scalability
19+
[ ] Policies and Telemetry
20+
[ ] Security
21+
[ ] Test and Release
22+
[ ] User Experience
23+
24+
**Expected behavior**
25+
26+
**Steps to reproduce the bug**
27+
28+
**Version (include the output of `istioctl version --remote` and `kubectl version`)**
29+
30+
**How was Istio installed?**
31+
32+
**Environment where bug was observed (cloud vendor, OS, etc)**
33+
34+
Additionally, please consider attaching a [cluster state archive](http://istio.io/help/bugs/#generating-a-cluster-state-archive) by attaching
35+
the dump file to this issue.
36+
+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
---
2+
name: Feature request
3+
about: Suggest an idea to improve Istio
4+
5+
---
6+
(This is used to request new product features, please visit <https://discuss.istio.io> for questions on using Istio)
7+
8+
**Describe the feature request**
9+
10+
**Describe alternatives you've considered**
11+
12+
**Affected product area (please put an X in all that apply)**
13+
14+
[ ] Configuration Infrastructure
15+
[ ] Docs
16+
[ ] Installation
17+
[ ] Networking
18+
[ ] Performance and Scalability
19+
[ ] Policies and Telemetry
20+
[ ] Security
21+
[ ] Test and Release
22+
[ ] User Experience
23+
24+
**Additional context**

.gitignore

+42
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
# Compiled Object files
2+
*.slo
3+
*.lo
4+
*.o
5+
*.obj
6+
7+
# Precompiled Headers
8+
*.gch
9+
*.pch
10+
11+
# Compiled Dynamic libraries
12+
*.so
13+
*.dylib
14+
*.dll
15+
16+
# Compiled Static libraries
17+
*.lai
18+
*.la
19+
*.a
20+
*.lib
21+
22+
# Executables
23+
*.exe
24+
*.out
25+
*.app
26+
27+
.idea/
28+
.project
29+
30+
# Bazel
31+
/bazel-*
32+
33+
# protoc
34+
/protoc-tmp
35+
genbin/
36+
37+
/vendor
38+
39+
.htmlproofer
40+
41+
# Contains the built artifacts
42+
out/

BUGS-AND-FEATURE-REQUESTS.md

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# Bugs and Feature Requests
2+
3+
You can report bugs and feature requests to the Istio team in one of three places:
4+
5+
- [Product Bugs and Feature Requests](https://github.com/istio/istio/issues)
6+
- [Documentation Bugs and Feature Requests](https://github.com/istio/istio.io/issues)
7+
- [Community and Governance Issues](https://github.com/istio/community/issues)
8+
9+
For security vulnerabilities, please don't report a bug (which is public) and instead follow
10+
[these procedures](https://istio.io/about/security-vulnerabilities/).

CODEOWNERS

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
* @istio/release-managers-1-16

CONTRIBUTING.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# Contribution guidelines
2+
3+
So you want to hack on Istio? Yay! Please refer to Istio's overall
4+
[contribution guidelines](https://github.com/istio/community/blob/master/CONTRIBUTING.md)
5+
to find out how you can help.

0 commit comments

Comments
 (0)