Skip to content

Commit 77e207f

Browse files
committed
Link Fixes
1 parent 6432619 commit 77e207f

File tree

15 files changed

+60
-453
lines changed

15 files changed

+60
-453
lines changed

docs/devops/argocd/index.md

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -19,21 +19,20 @@ configuration so that teams can benefit from the same assurance as they do for t
1919
## ArgoCD Overview
2020
## Presentations
2121

22-
[GitOps Overview :fontawesome-regular-file-pdf:](./materials/05-Understanding-GitOps.pdf){ .md-button target=_blank}
22+
[GitOps Overview :fontawesome-regular-file-pdf:](../materials/05-Understanding-GitOps.pdf){ .md-button target=_blank}
2323

2424
## Activities
2525

26-
These activites give you a chance to walkthrough building CD pipelines using ArgoCD.
26+
These activities give you a chance to walkthrough building CD pipelines using ArgoCD.
2727

2828
These tasks assume that you have:
2929
- Reviewed the Continuous Deployment concept page.
3030

3131
| Task | Description | Link | Time |
3232
| --------------------------------| ------------------ |:----------- |---------|
33-
| *** Walkthroughs *** | | | |
34-
| GitOps | Introduction to GitOps with OpenShift | [Learn OpenShift](https://learn.openshift.com/introduction/gitops-introduction/){:target="_blank"} | 20 min |
35-
| GitOps Multi-cluster | Multi-cluster GitOps with OpenShift | [Learn OpenShift](https://learn.openshift.com/introduction/gitops-multicluster/){:target="_blank"} | 20 min |
36-
| *** Try It Yourself *** | | | |
37-
| ArgoCD Lab | Learn how to setup ArgoCD and Deploy Application | [ArgoCD](../../labs/devops/argocd/) | 30 min |
33+
| ***Walkthroughs*** | | | |
34+
| GitOps | Introduction to GitOps with OpenShift | [Learn OpenShift GitOps](https://docs.openshift.com/gitops/1.13/understanding_openshift_gitops/about-redhat-openshift-gitops.html){:target="_blank"} | 20 min |
35+
| ***Try It Yourself*** | | | |
36+
| ArgoCD Lab | Learn how to setup ArgoCD and Deploy Application | [ArgoCD](../../labs/devops/argocd/index.md) | 30 min |
3837

3938
Once you have completed these tasks, you will have created an ArgoCD deployment and have an understanding of Continuous Deployment.

docs/devops/ibm-toolchain/index.md

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,4 @@
1-
---
2-
title: IBM Cloud DevOps with Tekton
3-
description: Lab for continuous integration using Tekton on IBM Cloud DevOps
4-
---
1+
# IBM ToolChain
52

63
By following this tutorial, you create an open toolchain that includes a Tekton-based delivery pipeline. You then use the toolchain and DevOps practices to develop a simple "Hello World" web application (app) that you deploy to the IBM Cloud Kubernetes Service.
74

docs/devops/tekton/index.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@ These tasks assume that you have:
2929
| ***Walkthroughs*** | | | |
3030
| Deploying Applications From Source | Using OpenShift 4 | [S2I](https://learn.openshift.com/introduction/deploying-python/){:target="_blank"} | 30 min |
3131
| ***Try It Yourself*** | | | |
32-
| Tekton Lab | Using Tekton to build container images | [Tekton](labs/openshift.md) | 1 hour |
33-
| IBM Cloud DevOps | Using IBM Cloud ToolChain with Tekton | [Tekton on IBM Cloud](../continuous-integration/activities/ibm-toolchain){:target="_blank"} | 1 hour |
34-
| Jenkins Lab | Using Jenkins to build and deploy applications. | [Jenkins](../continuous-integration/activities/jenkins/openshift){:target="_blank"} | 1 hour |
32+
| Tekton Lab | Using Tekton to build container images | [Tekton](../../labs/devops/tekton/index.md) | 1 hour |
33+
| IBM Cloud DevOps | Using IBM Cloud ToolChain with Tekton | [Tekton on IBM Cloud](../../labs/devops/ibm-toolchain/index.md){:target="_blank"} | 1 hour |
34+
| Jenkins Lab | Using Jenkins to build and deploy applications. | [Jenkins](../../labs/devops/jenkins/index.md){:target="_blank"} | 1 hour |
3535

3636
Once you have completed these tasks, you will have an understanding of continuous integration and how to use Tekton to build a pipeline.

docs/labs/containers/container-registry/index.md

Lines changed: 7 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,8 @@
1-
---
2-
title: Lab - IBM Cloud Container Registry
3-
description: Lab - IBM Cloud Container Registry
4-
---
1+
# IBM Container Registries
52

63
In this lab we are going to create a Container Image and store it in the [IBM Cloud Container Registry](https://cloud.ibm.com/docs/Registry?topic=Registry-registry_overview)
74

8-
### Prerequisites
5+
## Prerequisites
96
- IBM Cloud Account
107

118
### Login into IBM Cloud
@@ -20,7 +17,7 @@ In this lab we are going to create a Container Image and store it in the [IBM Cl
2017
![ibm cloud shell prompt](../images/ibmcloud-shell-prompt.png)
2118

2219

23-
### Create a new Container Registry namespace
20+
## Create a new Container Registry namespace
2421

2522
1. Ensure that you're targeting the correct IBM Cloud Container Registry region. For example for Dallas region use **us-south**
2623
```
@@ -35,8 +32,8 @@ In this lab we are going to create a Container Image and store it in the [IBM Cl
3532
export NAMESPACE=<my_namespace>
3633
```
3734
38-
### Building and Pusing a Container Image
39-
1. Clone the folowwing git repository and change directory to `1-containers`
35+
## Building and Pushing a Container Image
36+
1. Clone the following git repository and change directory to `1-containers`
4037
```
4138
git clone --depth 1 https://github.com/csantanapr/think2020-nodejs.git my-app
4239
cd my-app/1-containers/
@@ -89,15 +86,15 @@ In this lab we are going to create a Container Image and store it in the [IBM Cl
8986
ibmcloud cr build --tag us.icr.io/$NAMESPACE/my-app:1.0 ./
9087
```
9188
92-
### Explore the Container Registry on the IBM Cloud Console
89+
## Explore the Container Registry on the IBM Cloud Console
9390
1. Explore the container image details using the IBM Cloud Console. Go to the Main Menu->Kubernetes->Registry you can use the tabs `Namespaces`, `Repository`, `Images`
9491
![cr namespace](../images/cr-namespaces.png)
9592
![cr namespace](../images/cr-repositories.png)
9693
![cr namespace](../images/cr-images.png)
9794
![cr namespace](../images/cr-settings.png)
9895
9996
100-
### Extra Credit (Run Imge on Kubernetes)
97+
## Extra Credit (Run Imge on Kubernetes)
10198
10299
If you have a Kubernetes Cluster you can run your application image
103100

docs/labs/devops/argocd/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
Make sure your environment is setup properly for the lab.
99

10-
Check the [Environment Setup](../prerequisites/#environment-setup) page for your setup.
10+
Check the [Environment Setup](../../../prerequisites.md#environment-setup) page for your setup.
1111

1212
### ArgoCD Installation
1313

@@ -199,7 +199,7 @@
199199

200200
Make sure your environment is setup properly for the lab.
201201

202-
Check the [Environment Setup](../prerequisites/#environment-setup) page for your setup.
202+
Check the [Environment Setup](../../../prerequisites.md#environment-setup) page for your setup.
203203

204204
### ArgoCD Installation
205205

docs/labs/devops/index.md

Lines changed: 0 additions & 6 deletions
This file was deleted.

docs/labs/devops/tekton/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
Make sure your environment is properly setup.
66

7-
Follow the instructions [here](../../prerequisites#environment-setup)
7+
Follow the instructions [here](../../../prerequisites.md#environment-setup)
88

99
## SetUp
1010

@@ -445,7 +445,7 @@
445445

446446
Make sure your environment is properly setup.
447447

448-
Follow the instructions [here](../../prerequisites#environment-setup)
448+
Follow the instructions [here](../../../prerequisites.md#environment-setup)
449449

450450
## SetUp
451451

docs/labs/index.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,15 @@
33

44
| Task | Description | Link |
55
| --------------------------------| ------------------ |:----------- |
6-
| *** Try It Yourself *** | | |
6+
| ***Try It Yourself*** | | |
77
| IBM Container Registry | Build and Deploy Run using IBM Container Registry | [IBM Container Registry](containers/container-registry/index.md) |
88
| Docker Lab | Running a Sample Application on Docker | [Docker Lab](containers/index.md) |
99

1010
## Kubernetes
1111

1212
| Task | Description | Link |
1313
| --------------------------------| ------------------ |:----------- |
14-
| *** Try It Yourself *** | | |
14+
| ***Try It Yourself*** | | |
1515
| Pod Creation | Challenge yourself to create a Pod YAML file to meet certain parameters. | [Pod Creation](kubernetes/lab1/index.md) |
1616
| Pod Configuration | Configure a pod to meet compute resource requirements. | [Pod Configuration](kubernetes/lab2/index.md) |
1717
| Multiple Containers | Build a container using legacy container image.| [Multiple Containers](kubernetes/lab3/index.md) |
@@ -22,16 +22,16 @@
2222
| Creating Services | Create two services with certain requirements. | [Setting up Services](kubernetes/lab8/index.md) |
2323
| Setting up Persistent Volumes | Create a Persistent Volume that's accessible from a SQL Pod. | [Setting up Persistent Volumes](kubernetes/lab10/index.md) |
2424
| IKS Ingress Controller | Configure Ingress on Free IKS Cluster | [Setting IKS Ingress](kubernetes/ingress-iks/index.md) |
25-
| *** Solutions *** | | |
25+
| ***Solutions*** | | |
2626
| Lab Solutions | Solutions for the Kubernetes Labs | [Solutions](kubernetes/lab-solutions.md) |
2727

2828
## Continuous Integration
2929

3030
| Task | Description | Link |
3131
| --------------------------------| ------------------ |:----------- |
32-
| *** Walkthroughs *** | | |
32+
| ***Walkthroughs*** | | |
3333
| Deploying Applications From Source | Using OpenShift 4 | [S2I](https://learn.openshift.com/introduction/deploying-python/) |
34-
| *** Try It Yourself *** | | |
34+
| ***Try It Yourself*** | | |
3535
| Tekton Lab | Using Tekton to test new versions of applications. | [Tekton](devops/tekton/index.md) |
3636
| IBM Cloud DevOps | Using IBM Cloud ToolChain with Tekton | [Tekton on IBM Cloud](devops/ibm-toolchain/index.md) |
3737
| Jenkins Lab | Using Jenkins to test new versions of applications. | [Jenkins](devops/jenkins/index.md) |
@@ -40,15 +40,15 @@
4040

4141
| Task | Description | Link |
4242
| --------------------------------| ------------------ |:----------- |
43-
| *** Walkthroughs *** | | | |
43+
| ***Walkthroughs*** | | | |
4444
| GitOps | Introduction to GitOps with OpenShift | [Learn OpenShift](https://learn.openshift.com/introduction/gitops-introduction/) |
4545
| GitOps Multi-cluster | Multi-cluster GitOps with OpenShift | [Learn OpenShift](https://learn.openshift.com/introduction/gitops-multicluster/) |
46-
| *** Try It Yourself *** | | |
46+
| ***Try It Yourself*** | | |
4747
| ArgoCD Lab | Learn how to setup ArgoCD and Deploy Application | [ArgoCD](devops/argocd/index.md) |
4848

4949
## Projects
5050

5151
| Task | Description | Link |
5252
| --------------------------------| ------------------ |:----------- |
53-
| *** Try It Yourself *** | | |
53+
| ***Try It Yourself*** | | |
5454
| Cloud Native Challenge | Deploy your own app using what we have learned | [CN Challenge](../cloudnative-challenge.md) |

docs/labs/kubernetes/index.md

Lines changed: 0 additions & 17 deletions
This file was deleted.

0 commit comments

Comments
 (0)