Skip to content

Commit 438cbab

Browse files
authored
Merge pull request ArmDeveloperEcosystem#2613 from pareenaverma/content_review
images renamed
2 parents 01d9fc7 + fe0def2 commit 438cbab

File tree

4 files changed

+12
-12
lines changed

4 files changed

+12
-12
lines changed

content/learning-paths/cross-platform/gitlab-managed-runners/pipeline.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,15 +17,15 @@ Once we run our pipeline with the correct **`tags`** Gitlab will create everythi
1717
1. Start by going to the main project page where we will need to Create the CI/CD pipeline.
1818

1919
2. We can choose to create **`.gitlab-ci.yml`** file by using one of the 2 options circled in red in the image below.
20-
![CI-CD-New #center](_images/CI-CD-New.png)
20+
![CI-CD-New #center](_images/ci-cd-new.png)
2121

2222
Option1: We can Click on **`Set up CI/CD`** button/link and follow the wizad to create an empty **`.gitlab-ci.yml`** file.
2323

2424
Option2: Click on the "+" button. From the popup menu click on **`New File`** option and name the file **`.gitlab-ci.yml`** and then click on **`Commit Changes`** button on the top right hand side like in the image below (Add any message as your commit message).
25-
![New-YML #center](_images/New-YML.png)
25+
![New-YML #center](_images/new-yml.png)
2626

2727
3. A page like the one in the image below will be visible with our **`.gitlab-ci.yml`** file. From here, we will need to Click on the **`Edit`** button. A menu will pop up, We will click on **`Edit in pipeline Editor`** which will allow us to add our CD/CD script.
28-
![Editor-YML #center](_images/Editor-YML.png)
28+
![Editor-YML #center](_images/editor-yml.png)
2929

3030
4. In the pipeline editor, just copy and paste the following YML script and click on commit changes (Add any relevent message as your commit update message).
3131
```YML
@@ -87,4 +87,4 @@ deploy-job: # This job runs in the deploy stage.
8787
- echo "Deploying application..."
8888
- echo "Application successfully deployed."
8989
```
90-
5. Once you commit the file updates, Gitlab will check the scripts for errors and will try to execute the pipeline directly.
90+
5. Once you commit the file updates, Gitlab will check the scripts for errors and will try to execute the pipeline directly.

content/learning-paths/cross-platform/gitlab-managed-runners/project.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,19 +19,19 @@ We can also choose to use any previously created projects in our Gitlab account.
1919
1. From the Home page, Click on the **`Projects`** icon from the menu on the left hand side panel as the image below.
2020

2121
2. Click on the **`New Project`** button on the top right hand side as the image below.
22-
![Gitlab-Projects #center](_images/Gitlab-Projects.png)
22+
![Gitlab-Projects #center](_images/gitlab-projects.png)
2323

2424
3. We will get a new screen like the image below with multiple options. You can choose any of the 2 options highlighted in red from the image below.
2525

2626
{{% notice Note %}}
2727
If we chose option 2 then we will need to choose **`GitLab CI/CD components`** option from the list of templates.
2828
{{%/notice%}}
2929

30-
![New-Project #center](_images/New-Project.png)
30+
![New-Project #center](_images/new-project.png)
3131

3232
4. Regardles of which option we choose, We will get a screen like the image below where we need to fill-in fields highlighted in red. The first field is the **`Project Name`** which we will name it **`CI-CD Runner`**. In the second field we need to choose any option from the **`Project Url`** list then click on the **`Create Project`** button at the end of the page.
33-
![Project-Info #center](_images/Project-Info.png)
33+
![Project-Info #center](_images/project-info.png)
3434

3535
##### **If we did everything correctly then we should get a screen like the one in the image below.**
36-
![Project-Done #center](_images/Project-Done.png)
36+
![Project-Done #center](_images/project-done.png)
3737

content/learning-paths/cross-platform/gitlab-managed-runners/results.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -41,16 +41,16 @@ Gitlab offers a lot of documentions on how to create pipeline that fits differen
4141
## How to run your pipeline for testing and to check the results:
4242

4343
From the left hand side panel, Navigate to **`Build`** then to **`Pipeline`** then click on **`New pipeline`** button on the top right hand side just like the image below. In the new window click on **`New pipeline`** button again and your pipeline will start to execute.
44-
![New-Pipeline #center](_images/New-Pipeline.png)
44+
![New-Pipeline #center](_images/new-pipeline.png)
4545

4646
To check the status of your pipeline and to check the output of any of it's Jobs simply click on any of the **`Jobs`** as the image below (with red rectangle around them).
47-
![pipeline-execution #center](_images/Pipeline-execution.png)
47+
![pipeline-execution #center](_images/pipeline-execution.png)
4848

4949
## Gitlab Helpful tools
5050

51-
If you navigate to your pipeline editor from before you will notice that there are more tabs in that page other than the **`Edit`** tab. ![visual-pipeline #center](_images/Visual-pipeline.png)
51+
If you navigate to your pipeline editor from before you will notice that there are more tabs in that page other than the **`Edit`** tab. ![visual-pipeline #center](_images/visual-pipeline.png)
5252

5353
### The other Tabs are:
5454

5555
1. Visualize: which can visulaize your pipeline for you as you edit it's componenets which can be very helpful especially for complex pipelines.
56-
2. Validate: which can validate your pipeline script as you are editting them and saving from time to time so that you can catch any issues with you code early on.
56+
2. Validate: which can validate your pipeline script as you are editting them and saving from time to time so that you can catch any issues with you code early on.

0 commit comments

Comments
 (0)