You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
And then you can find deployment nginx will be restored successfully.
155
+
And then you can find deployment nginx will be restored successfully.
156
156
```shell
157
157
# kubectl get deployment.apps/nginx
158
158
NAME READY UP-TO-DATE AVAILABLE AGE
@@ -161,9 +161,9 @@ nginx 2/2 2 2 21s
161
161
162
162
### Backup and restore of kubernetes resources through Velero combined with karmada
163
163
164
-
In Karmada control plane, we need to install velero crds but do not need controllers to reconcile them. They are treated as resource templates, not specific resource instances.Based on work API here, they will be encapsulated as a work object deliverd to member clusters and reconciled by velero controllers in member clusters finally.
164
+
In Karmada control plane, we need to install velero crds but do not need controllers to reconcile them. They are treated as resource templates, not specific resource instances.Based on work API here, they will be encapsulated as a work object delivered to member clusters and reconciled by velero controllers in member clusters finally.
Copy file name to clipboardExpand all lines: docs/administrator/monitoring/working-with-filebeat.md
+7-7Lines changed: 7 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,21 +2,21 @@
2
2
title: Use Filebeat to collect logs of Karmada member clusters
3
3
---
4
4
5
-
[Filebeat](https://github.com/elastic/beats/tree/master/filebeat) is a lightweight shipper for forwarding and centralizing log data. Installed as an agent on your servers, Filebeat monitors the log files or locations that you specify, collects log events, and forwards them either to [Elasticsearch](https://www.elastic.co/products/elasticsearch) or [kafka](https://github.com/apache/kafka) for indexing.
5
+
[Filebeat](https://github.com/elastic/beats/tree/master/filebeat) is a lightweight shipper for forwarding and centralizing log data. Installed as an agent on your servers, Filebeat monitors the log files or locations that you specify, collects log events, and forwards them either to [Elasticsearch](https://www.elastic.co/products/elasticsearch) or [kafka](https://github.com/apache/kafka) for indexing.
6
6
7
-
This document demonstrates how to use the `Filebeat` to collect logs of Karmada member clusters.
7
+
This document demonstrates how to use the `Filebeat` to collect logs of Karmada member clusters.
8
8
9
9
## Start up Karmada clusters
10
10
11
-
You just need to clone Karmada repo, and run the following script in Karmada directory.
11
+
You just need to clone Karmada repo, and run the following script in Karmada directory.
12
12
13
13
```bash
14
14
hack/local-up-karmada.sh
15
15
```
16
16
17
17
## Start Filebeat
18
18
19
-
1. Create resource objects of Filebeat, the content is as follows. You can specify a list of inputs in the `filebeat.inputs` section of the `filebeat.yml`. Inputs specify how Filebeat locates and processes input data, also you can configure Filebeat to write to a specific output by setting options in the `Outputs` section of the `filebeat.yml` config file. The example will collect the log information of each container and write the collected logs to a file. More detailed information about the input and output configuration, please refer to: https://github.com/elastic/beats/tree/master/filebeat/docs
19
+
1. Create resource objects of Filebeat, the content is as follows. You can specify a list of inputs in the `filebeat.inputs` section of the `filebeat.yml`. Inputs specify how Filebeat locates and processes input data, also you can configure Filebeat to write to a specific output by setting options in the `Outputs` section of the `filebeat.yml` config file. The example will collect the log information of each container and write the collected logs to a file. For more detailed information about the input and output configuration, please refer to: https://github.com/elastic/beats/tree/master/filebeat/docs
Copy file name to clipboardExpand all lines: docs/contributor/contribute-docs.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -13,7 +13,7 @@ the `karmada-io/website` repository.
13
13
- Docs need to be translated into multiple languages for readers from different regions.
14
14
The community now supports both Chinese and English.
15
15
English is the official language of documentation.
16
-
- For our docs we use markdown. If you are unfamiliar with Markdown, please see https://guides.github.com/features/mastering-markdown/ or https://www.markdownguide.org/ if you are looking for something more substantial.
16
+
- For our docs we use markdown. If you are unfamiliar with Markdown, please see https://guides.github.com/features/mastering-markdown/ or https://www.markdownguide.org/ if you are looking for something more substantial.
17
17
- We get some additions through [Docusaurus 2](https://docusaurus.io/), a model static website generator.
18
18
19
19
## Setup
@@ -86,7 +86,7 @@ title: A doc with tags
86
86
```
87
87
88
88
The top section between two lines of --- is the Front Matter section. Here we define a couple of entries which tell Docusaurus how to handle the article:
89
-
* Title is the equivalent of the `<h1>` in a HTML document or `# <title>` in a Markdown article.
89
+
* Title is the equivalent of the `<h1>` in an HTML document or `# <title>` in a Markdown article.
90
90
* Each document has a unique ID. By default, a document ID is the name of the document (without the extension) related to the root docs directory.
91
91
92
92
### Linking to other docs
@@ -102,9 +102,9 @@ You can easily route to other places by adding any of the following links:
102
102
Now we store public pictures about Karmada in `/docs/resources/general`. You can use the following to link the pictures:
@@ -157,14 +157,14 @@ If you add a document, you must add it to `sidebars.js` to make it display prope
157
157
### About Chinese docs
158
158
159
159
If you want to contribute to our Chinese documentation, you can:
160
-
* Translate our existing English docs to Chinese. In this case, you need to modify the corresponding file content from <https://github.com/karmada-io/website/tree/main/i18n/zh/docusaurus-plugin-content-docs/current>.
160
+
* Translate our existing English docs to Chinese. In this case, you need to modify the corresponding file content from <https://github.com/karmada-io/website/tree/main/i18n/zh/docusaurus-plugin-content-docs/current>.
161
161
The organization of this directory is exactly the same as the outer layer. `current.json` holds translations for the documentation directory. You can edit it if you want to translate the name of directory.
162
162
* Submit Chinese docs without the English version. No limits on the topic or category. In this case, you can add an empty article and its title to the main directory first, and complete the rest later.
163
163
Then add the corresponding Chinese content to the Chinese directory.
164
164
165
165
## Debugging docs
166
166
167
-
Now you have already completed docs. After you start a PR to `karmada.io/website`, if you have passed CI, you can get a preview of your document on the website.
167
+
Now you have already completed the docs. After you start a PR to `karmada.io/website`, if you have passed CI, you can get a preview of your document on the website.
168
168
169
169
Click **Details** marked in red, and you will enter the preview view of the website.
Copy file name to clipboardExpand all lines: docs/contributor/count-contributions.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,7 +4,7 @@ title: Correct your information for better contribution
4
4
5
5
After contributing to [karmada-io](https://github.com/karmada-io) through issues, comments, pull requests, etc., you can check your contributions [here](https://karmada.devstats.cncf.io/d/66/developer-activity-counts-by-companies).
6
6
7
-
If you notice that the information in the company column is either incorrect or blank, we highly recommend that you correct it.
7
+
If you notice that the information in the company column is either incorrect or blank, we highly recommend that you correct it.
8
8
9
9
For instance, `Huawei Technologies Co. Ltd`should be used instead of `HUAWEI`:
* If the organization incorrect, please select the right one.
18
-
* If your organization is not in the list, clieck on **Add** to add your organization.
17
+
* If the organization is incorrect, please select the right one.
18
+
* If your organization is not on the list, click on **Add** to add your organization.
19
19
20
20
## Update the CNCF repository used for calculating your contributions
21
-
Once you have verified your organization in the CNCF system, you must create a pull request in gitdm with the updated affiliations.
21
+
Once you have verified your organization in the CNCF system, you must create a pull request in gitdm with the updated affiliations.
22
22
To do this, you'll need to modify two files: `company_developers*.txt` and `developers_affiliations*.txt`. For reference, please see this example pull request: [PR Example](https://github.com/cncf/gitdm/pull/1257).
23
23
24
24
After the pull request has been successfully merged, it may take up to four weeks for the changes to be synced.
0 commit comments