Skip to content

Commit 21d337f

Browse files
doc: fix filepath
1 parent d0927d7 commit 21d337f

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

docs/final_report.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -36,15 +36,15 @@ During the development cycle, a variety of supporting branches are used. The fol
3636

3737
We use `Jenkins` as our CI/CD pipeline. `Jenkins` is an open-source server written in Java, for executing a chain of actions, to achieve continuous integration and continuous delivery in an automated fashion.
3838

39-
<img src="/Users/xtommy/Desktop/minik8s/readme-images/Jenkins.png" alt="Jenkins" style="zoom:50%;" />
39+
<img src="../readme-images/Jenkins.png" alt="Jenkins" style="zoom:50%;" />
4040

4141
<img src="https://wpblog.semaphoreci.com/wp-content/uploads/2022/05/cicd-pipeline-introduction-1024x422-1.jpg" alt="img" style="zoom:45%;" />
4242

4343
In our project, the building process of Jenkins is triggered by master branch. Every git commit on master branch is built and tested on the **master node** automatically and continuously, which ensures the changes pass all tests for the application. After that, it will trigger the same process on **worker nodes**.
4444

4545
After all predefined tests are passed, Jenkins will deploy the new version on all nodes, which is extremely convenient.
4646

47-
<img src="/Users/xtommy/Desktop/minik8s/readme-images/jenkins-example.png" alt="jenkins-example" style="zoom:50%;" />
47+
<img src="../readme-images/jenkins-example.png" alt="jenkins-example" style="zoom:50%;" />
4848

4949
The script for Jenkins' building is in `minik8s/jenkins` directory. For further information, please log http://10.119.9.33:8080. The username and password are both `cloudos2022`. Note that you must access the website via the campus network.
5050

@@ -72,7 +72,7 @@ We use **Scrum** as our software development process. Scrum is based on Agile S
7272

7373
Daily scrums, or daily meetings, are short meetings held at the same time each morning. In our project, we held these meetings about every four days, and we mainly discuss the implementation detail of the project and unify APIs of different parts to prevent inconsistency.
7474

75-
<img src="../readme-images/scrum.jpeg" style="zoom:35%;" />
75+
<img src="../readme-images/scrum.jpeg" style="zoom:35%;" alt=""/>
7676

7777
### Contribution
7878

@@ -166,7 +166,7 @@ Once there is a network partition and the heartbeats can not be sent to the cont
166166

167167
<img src="../readme-images/cobra.png" alt="cobra 5 " style="zoom:25%;" />
168168

169-
We support basic commands like `kubectl get pods`, `kubectl apply -f xxx.yaml`. For more info, see [kubectl README](minik8s/kubectl/README.md). (Appendix 1)
169+
We support basic commands like `kubectl get pods`, `kubectl apply -f xxx.yaml`. For more info, see [kubectl README](../kubectl/README.md). (Appendix 1)
170170

171171
### Kubelet
172172

@@ -294,7 +294,7 @@ The process of scheduling can be broken down into several steps:
294294
Here are some strategies we support now:
295295

296296
| strategy | Description |
297-
| -------------------------- | --------------------------------------------------- |
297+
|----------------------------|-----------------------------------------------------|
298298
| random | Select a node randomly |
299299
| minimum pods | Select the node with the minimum number of pods |
300300
| maximum pods | Select the node with the maximum number of pods |
@@ -576,7 +576,7 @@ All pods have their own unique ip, so they can be called by `POST` http request
576576

577577
#### Workflow
578578

579-
A workflow is equivalent to a DAG of functions. It can be defined in the form of `json`, see [workflow](apiObject/examples/workflow) for examples.
579+
A workflow is equivalent to a DAG of functions. It can be defined in the form of `json`, see [workflow](../apiObject/examples/workflow) for examples.
580580

581581
Our implementation draws lessons from AWS. We also support `Choice` and `Task`.
582582

0 commit comments

Comments
 (0)