Skip to content

Commit

Permalink
Merge pull request #68 from biya-bi/documentation/workspaces/fix_gram…
Browse files Browse the repository at this point in the history
…matical_error

Fix workspace grammatical error
  • Loading branch information
kdubois authored Nov 22, 2024
2 parents acab3a7 + f534e92 commit 12bc527
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions documentation/modules/ROOT/pages/_partials/_workspaces.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ include::partial$tekton-nav-to-folder.adoc[tags="folder-all,workspaces"]

In many partical usecases of Pipelines it becomes crucial for you to share the filesystem between Tasks and between Steps. The filesystem could typically hold a clone github repostiory, a ConfigMap or a secret.

A Task step and Pipeline task can share a common filesystem via a Tekton `workspace`. This helps Pipelines to pick up changes form one task to another task in the Pipeline workflow.
A Task step and Pipeline task can share a common filesystem via a Tekton `workspace`. This helps Pipelines to pick up changes from one task to another task in the Pipeline workflow.

[#ws-overview]
== Overview
Expand Down Expand Up @@ -288,7 +288,7 @@ If all went well the list directory should show the directory listing of {tutori

- What is a workspace
- How to bind a workspace to a TaskRun using PVC
- How to share the workaapce across multiple TaskRuns
- How to share the workspace across multiple TaskRuns

[#ws-use-cm]
== Using ConfigMap as Workspace
Expand Down Expand Up @@ -473,8 +473,8 @@ include::ROOT:example$greeter-app-deploy.yaml[]
----

<.> The parameters for the Pipeline
<.> A workpace named `source`, we will map it to the PVC`tekton-tutorial-sources` in PipelineRun in upcoming section
<.> A workapce named `maven-settings`, we will map it to ConfigMap `maven-settings` in the PipelineRun in upcming section
<.> A workspace named `source`, we will map it to the PVC`tekton-tutorial-sources` in PipelineRun in upcoming section
<.> A workspace named `maven-settings`, we will map it to ConfigMap `maven-settings` in the PipelineRun in upcoming section
<.> The `buildah` build image task returns a output. We use the that as part of the `--image` parameter to `kn` Task

[#ws-create-pipeline]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ kubectl config set-context --current --namespace {chapter-namespace}
----

ifdef::openshift[]
All exercises of this chapter will be done a namesapace `{chapter-namespace}`, lets create the project if not done earlier and switch to the `{chapter-namespace}` namespace:
All exercises of this chapter will be done in a namespace `{chapter-namespace}`, lets create the project if not done earlier and switch to the `{chapter-namespace}` namespace:
endif::[]

As part of this exercise we will need to install the following external tasks and cluster tasks to be installed in the namespace:
Expand Down

0 comments on commit 12bc527

Please sign in to comment.