Skip to content

Commit 2ad55ce

Browse files
committed
init
1 parent ef43924 commit 2ad55ce

File tree

1,407 files changed

+41690
-2
lines changed

Some content is hidden

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

1,407 files changed

+41690
-2
lines changed

.github/PULL_REQUEST_TEMPLATE.md

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
> 请保留以下声明。
2+
3+
我已阅读[投稿指南](https://cloudnative.to/community/contribute/)[风格指南](https://cloudnative.to/community/contribute/style/),并授权[云原生社区](https://cloudnative.to)发布我原创或翻译的文章,我将保留对本文署名的权利。

.github/auto_assign.yml

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# Set to true to add reviewers to pull requests
2+
addReviewers: true
3+
4+
# Set to true to add assignees to pull requests
5+
addAssignees: true
6+
7+
# A list of reviewers to be added to pull requests (GitHub user name)
8+
reviewers:
9+
- rootsongjc
10+
- baijunyao
11+
- erdun
12+
- flutterWang
13+
- jianghongb
14+
15+
# A list of keywords to be skipped the process that add reviewers if pull requests include it
16+
skipKeywords:
17+
- wip
18+
19+
# A number of reviewers added to the pull request
20+
# Set 0 to add all the reviewers (default: 0)
21+
numberOfReviewers: 0
+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: build-and-deploy
2+
on: push
3+
jobs:
4+
deploy:
5+
runs-on: ubuntu-20.04
6+
steps:
7+
- name: Git checkout
8+
uses: actions/checkout@v2
9+
10+
- name: Setup hugo
11+
uses: peaceiris/actions-hugo@v2
12+
with:
13+
hugo-version: '0.120.4'
14+
extended: true
15+
16+
- name: Build
17+
# remove --minify tag if you do not need it
18+
# docs: https://gohugo.io/hugo-pipes/minification/
19+
run: hugo
20+
- name: Deploy
21+
uses: peaceiris/actions-gh-pages@v3
22+
with:
23+
personal_token: ${{ secrets.TOKEN }}
24+
publish_dir: ./public
25+
# keep_files: true
26+
publish_branch: master
27+
cname: cloudnative.to

.gitignore

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
public/
2+
.DS_Store
3+
resources
4+
.idea
5+
.hugo_build.lock

README.md

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,4 @@
1-
# k8s-gateway-api
2-
Kubernetes Gateway API SIG
1+
# 云原生社区 Kubernetes Gateway API SIG
2+
3+
Kubernetes Gateway API SIG 网站:<https://cloudnative.to/k8s-gateway-api>
4+

archetypes/authors/_index.md

+71
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,71 @@
1+
---
2+
# Display name
3+
title: "{{ replace .Name "-" " " | title }}"
4+
5+
# Username (this should match the folder name and the name on publications)
6+
authors:
7+
- "{{ urlize .Name }}"
8+
9+
# Is this the primary user of the site?
10+
superuser: false
11+
12+
# Role/position (e.g., Professor of Artificial Intelligence)
13+
role:
14+
15+
# Organizations/Affiliations
16+
organizations:
17+
- name:
18+
url: ""
19+
20+
# Short bio (displayed in user profile at end of posts)
21+
bio:
22+
23+
# List each interest with a dash
24+
interests:
25+
- Interest 1
26+
- Interest 2
27+
28+
education:
29+
courses:
30+
- course: Title course 1
31+
institution: Name of Institution
32+
year: 2012
33+
- course: Title course 1
34+
institution: Name of Institution
35+
year: 2012
36+
37+
# Social/Academic Networking
38+
# For available icons, see: https://wowchemy.com/docs/page-builder/#icons
39+
# For an email link, use "fas" icon pack, "envelope" icon, and a link in the
40+
# form "mailto:[email protected]" or "#contact" for contact widget.
41+
social:
42+
- icon: envelope
43+
icon_pack: fas
44+
link: '#contact' # For a direct email link, use "mailto:[email protected]".
45+
- icon: twitter
46+
icon_pack: fab
47+
link: https://twitter.com/USERNAME
48+
- icon: google-scholar
49+
icon_pack: ai
50+
link: https://scholar.google.com/citations?user=PERSON-ID
51+
- icon: github
52+
icon_pack: fab
53+
link: https://github.com/USERNAME
54+
# Link to a PDF of your resume/CV from the About widget.
55+
# To enable, copy your resume/CV to `static/files/cv.pdf` and uncomment the lines below.
56+
# - icon: cv
57+
# icon_pack: ai
58+
# link: files/cv.pdf
59+
60+
# Enter email to display Gravatar (if Gravatar enabled in Config)
61+
email: ""
62+
63+
# Highlight the author in author lists? (true/false)
64+
highlight_name: false
65+
66+
# Organizational groups that you belong to (for People widget)
67+
# Set this to `[]` or comment out if you are not using People widget.
68+
user_groups:
69+
- Group 1
70+
- Group 2
71+
---

archetypes/authors/avatar.jpg

11.9 KB
Loading

archetypes/book.md

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
---
2+
# Documentation: https://wowchemy.com/docs/managing-content/
3+
4+
title: "{{ replace .Name "-" " " | title }}"
5+
linktitle: "{{ replace .Name "-" " " | title }}"
6+
date: {{ .Date }}
7+
type: book
8+
summary: ""
9+
---

archetypes/city.md

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
---
2+
weight: 0
3+
title: {{ replace .Name "-" " " | title }}站
4+
summary: 云原生社区{{ replace .Name "-" " " | title }}站。
5+
date: '2022-07-16T00:00:00+08:00'
6+
type: book
7+
---
8+
9+
## {{ replace .Name "-" " " | title }}站简介
10+
11+
## 主要成员/站长
12+
-
13+
14+
## {{ replace .Name "-" " " | title }}站徽章
15+
16+
![{{ replace .Name "-" " " | title }}站徽章](logo.png)

archetypes/default.md

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
---
2+
# Documentation: https://wowchemy.com/docs/managing-content/
3+
4+
title: "{{ replace .Name "-" " " | title }}"
5+
subtitle: ""
6+
summary: ""
7+
authors: []
8+
tags: []
9+
categories: []
10+
date: {{ .Date }}
11+
lastmod: {{ .Date }}
12+
featured: false
13+
draft: false
14+
15+
# Featured image
16+
# To use, add an image named `featured.jpg/png` to your page's folder.
17+
# Focal points: Smart, Center, TopLeft, Top, TopRight, Left, Right, BottomLeft, Bottom, BottomRight.
18+
image:
19+
caption: ""
20+
focal_point: ""
21+
preview_only: false
22+
23+
# Projects (optional).
24+
# Associate this post with one or more of your projects.
25+
# Simply enter your project's folder or file name without extension.
26+
# E.g. `projects = ["internal-project"]` references `content/project/deep-learning/index.md`.
27+
# Otherwise, set `projects = []`.
28+
projects: []
29+
---

archetypes/event/index.md

+68
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,68 @@
1+
---
2+
# Documentation: https://wowchemy.com/docs/managing-content/
3+
4+
title: "{{ replace .Name "-" " " | title }}"
5+
event:
6+
event_url:
7+
location:
8+
address:
9+
street:
10+
city:
11+
region:
12+
postcode:
13+
country:
14+
summary:
15+
abstract:
16+
17+
# Talk start and end times.
18+
# End time can optionally be hidden by prefixing the line with `#`.
19+
date: {{ .Date }}
20+
date_end: {{ .Date }}
21+
all_day: false
22+
23+
# Schedule page publish date (NOT event date).
24+
publishDate: {{ .Date }}
25+
26+
authors: []
27+
tags: []
28+
29+
# Is this a featured event? (true/false)
30+
featured: false
31+
32+
# Featured image
33+
# To use, add an image named `featured.jpg/png` to your page's folder.
34+
# Focal points: Smart, Center, TopLeft, Top, TopRight, Left, Right, BottomLeft, Bottom, BottomRight.
35+
image:
36+
caption: ""
37+
focal_point: ""
38+
preview_only: false
39+
40+
# Custom links (optional).
41+
# Uncomment and edit lines below to show custom links.
42+
# links:
43+
# - name: Follow
44+
# url: https://twitter.com
45+
# icon_pack: fab
46+
# icon: twitter
47+
48+
# Optional filename of your slides within your event's folder or a URL.
49+
url_slides:
50+
51+
url_code:
52+
url_pdf:
53+
url_video:
54+
55+
# Markdown Slides (optional).
56+
# Associate this event with Markdown slides.
57+
# Simply enter your slide deck's filename without extension.
58+
# E.g. `slides = "example-slides"` references `content/slides/example-slides.md`.
59+
# Otherwise, set `slides = ""`.
60+
slides: ""
61+
62+
# Projects (optional).
63+
# Associate this post with one or more of your projects.
64+
# Simply enter your project's folder or file name without extension.
65+
# E.g. `projects = ["internal-project"]` references `content/project/deep-learning/index.md`.
66+
# Otherwise, set `projects = []`.
67+
projects: []
68+
---

archetypes/home.md

+48
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
+++
2+
# A section created with the Blank widget.
3+
widget = "blank" # See https://wowchemy.com/docs/page-builder/
4+
headless = true # This file represents a page section.
5+
active = true # Activate this widget? true/false
6+
weight = 1 # Order that this section will appear.
7+
8+
# Note: a full width section format can be enabled by commenting out the `title` and `subtitle` with a `#`.
9+
title = "{{ replace .Name "-" " " | title }}"
10+
subtitle = ""
11+
12+
[design]
13+
# Choose how many columns the section has. Valid values: 1 or 2.
14+
columns = "1"
15+
16+
[design.background]
17+
# Apply a background color, gradient, or image.
18+
# Uncomment (by removing `#`) an option to apply it.
19+
# Choose a light or dark text color by setting `text_color_light`.
20+
# Any HTML color name or Hex value is valid.
21+
22+
# Background color.
23+
# color = "navy"
24+
25+
# Background gradient.
26+
# gradient_start = "DeepSkyBlue"
27+
# gradient_end = "SkyBlue"
28+
29+
# Background image.
30+
# image = "image.jpg" # Name of image in `static/media/`.
31+
# image_darken = 0.6 # Darken the image? Range 0-1 where 0 is transparent and 1 is opaque.
32+
33+
# Text color (true=light or false=dark).
34+
# text_color_light = true
35+
36+
[design.spacing]
37+
# Customize the section spacing. Order is top, right, bottom, left.
38+
# padding = ["0px", "0px", "0px", "0px"]
39+
40+
[advanced]
41+
# Custom CSS.
42+
css_style = ""
43+
44+
# CSS class.
45+
css_class = ""
46+
+++
47+
48+
[**Add some elements here**](https://wowchemy.com/docs/writing-markdown-latex/)

archetypes/post/index.md

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
---
2+
# Documentation: https://wowchemy.com/docs/managing-content/
3+
4+
title: "{{ replace .Name "-" " " | title }}"
5+
subtitle: ""
6+
summary: ""
7+
authors: []
8+
tags: []
9+
categories: []
10+
date: {{ .Date }}
11+
lastmod: {{ .Date }}
12+
featured: false
13+
draft: false
14+
15+
# Featured image
16+
# To use, add an image named `featured.jpg/png` to your page's folder.
17+
# Focal points: Smart, Center, TopLeft, Top, TopRight, Left, Right, BottomLeft, Bottom, BottomRight.
18+
image:
19+
caption: ""
20+
focal_point: ""
21+
preview_only: false
22+
23+
# Projects (optional).
24+
# Associate this post with one or more of your projects.
25+
# Simply enter your project's folder or file name without extension.
26+
# E.g. `projects = ["internal-project"]` references `content/project/deep-learning/index.md`.
27+
# Otherwise, set `projects = []`.
28+
projects: []
29+
---

archetypes/project/index.md

+41
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
---
2+
# Documentation: https://wowchemy.com/docs/managing-content/
3+
4+
title: "{{ replace .Name "-" " " | title }}"
5+
summary: ""
6+
authors: []
7+
tags: []
8+
categories: []
9+
date: {{ .Date }}
10+
11+
# Optional external URL for project (replaces project detail page).
12+
external_link: ""
13+
14+
# Featured image
15+
# To use, add an image named `featured.jpg/png` to your page's folder.
16+
# Focal points: Smart, Center, TopLeft, Top, TopRight, Left, Right, BottomLeft, Bottom, BottomRight.
17+
image:
18+
caption: ""
19+
focal_point: ""
20+
preview_only: false
21+
22+
# Custom links (optional).
23+
# Uncomment and edit lines below to show custom links.
24+
# links:
25+
# - name: Follow
26+
# url: https://twitter.com
27+
# icon_pack: fab
28+
# icon: twitter
29+
30+
url_code: ""
31+
url_pdf: ""
32+
url_slides: ""
33+
url_video: ""
34+
35+
# Slides (optional).
36+
# Associate this project with Markdown slides.
37+
# Simply enter your slide deck's filename without extension.
38+
# E.g. `slides = "example-slides"` references `content/slides/example-slides.md`.
39+
# Otherwise, set `slides = ""`.
40+
slides: ""
41+
---

0 commit comments

Comments
 (0)