Skip to content

Commit ebfdbba

Browse files
Feedback from Graham Dumpleton #37
Feedback from Graham Dumpleton
2 parents ea56bb0 + 58b8fb8 commit ebfdbba

File tree

5 files changed

+12
-11
lines changed

5 files changed

+12
-11
lines changed

workshop/content/concepts.adoc

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,10 @@ The custom resources needed to define a pipeline are listed below:
1313
1414
image:images/tekton-architecture.svg[Tekton Architecture]
1515

16+
Having trouble viewing the screenshot above? Simply drag the divider that separates the workshop content
17+
you are reading now from the terminal towards the right. This will expand screenshots to make
18+
them easier to see.
19+
1620
In short, in order to create a pipeline, one does the following:
1721

1822
* Create custom or install link:https://github.com/tektoncd/catalog[existing] reusable tasks

workshop/content/exercises/trigger-pipeline.adoc

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -74,21 +74,21 @@ Tekton CLI Logs
7474
---------------
7575

7676
To view the logs for the pipelinerun, you need the unique name assigned to it
77-
when you ran `tkn pipeline start`. This is the same name as `tkn pr ls` outputs
78-
and actually corresponds to the name of the pod for the pipelinerun.
77+
when you ran `tkn pipeline start`. This is the same name as `tkn pr ls` outputs.
7978

8079
To grab the name of this into an environment variable, run:
8180

8281
[source,bash,role=execute-1]
8382
----
84-
POD=`tkn pr ls -o jsonpath='{$.items[?(@.status.conditions[0].reason=="Running")].metadata.name}' | tr ' ' '\n' | head -1`; echo $POD
83+
RUN=`tkn pr ls -o jsonpath='{$.items[?(@.status.conditions[0].reason=="Running")].metadata.name}' | tr ' ' '\n' | head -1`; echo $RUN
8584
----
8685

87-
Then run:
86+
Then run the following `tkn` command to access the logs of the pipelinerun using the environment
87+
variable to specify the name of the pipelinerun:
8888

8989
[source,bash,role=execute-1]
9090
----
91-
tkn pr logs $POD -f
91+
tkn pr logs $RUN -f
9292
----
9393

9494
The logs output tells you what tasks are running as well as what step it is running.

workshop/content/exercises/verify-deployment.adoc

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@ The first thing you should notice is the successful task completions under the
66

77
image:../images/web-console-tasks-success.png[Web Console Tasks Success]
88

9-
Next, click on the **Topology** tab on the left side of the web console.
9+
Next, click on the **Topology** tab on the left side of the web console. You should
10+
see what is in the screenshot below:
1011

1112
image:../images/topology-view-deployed.png[Topology View Deployed]
1213

workshop/content/install-tekton-operator.adoc

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,6 @@ Next, you would click on the **Integration & Delivery** category to find the
2222

2323
image:images/operatorhub.png[OpenShift OperatorHub]
2424

25-
Having trouble viewing the photo above? Simply drag the divider that separates the workshop content
26-
you are reading now from the terminal towards the right. This will expand photos to make
27-
them easier to see.
28-
2925
Click on **OpenShift Pipelines Operator**, **Continue**, and then **Install** as
3026
shown below:
3127

workshop/content/workshop-introduction.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,6 @@ Kubernetes
1414
Kubernetes is an open-source system for automating deployment, scaling, and management
1515
of containerized applications.
1616

17-
As OpenShift is a platform based on Kubernetes, there will be Kubernetes concepts
17+
As OpenShift is a distribution of Kubernetes, there will be Kubernetes concepts
1818
used throughout this workshop. The workshop assumes that attendees will have knowledge
1919
of Kubernetes fundamental concepts.

0 commit comments

Comments
 (0)