Skip to content

Commit b94c971

Browse files
authored
Merge pull request #42950 from sounix000/3846-blurry-right-nav-pane
RHDEVDOCS-3846 Fix blurry right navigation pane in Pipelines docs
2 parents 7e62af0 + 6f2c274 commit b94c971

11 files changed

+2
-23
lines changed

cicd/jenkins-tekton/migrating-from-jenkins-to-tekton.adoc

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,12 @@
11
:_content-type: ASSEMBLY
22
//Jenkins-Tekton-Migration
3-
include::_attributes/common-attributes.adoc[]
43
[id="migrating-from-jenkins-to-tekton_{context}"]
54
= Migrating from Jenkins to Tekton
5+
include::_attributes/common-attributes.adoc[]
66
:context: migrating-from-jenkins-to-tekton
7-
//include::_attributes/common-attributes.adoc[]
87

98
toc::[]
109

11-
1210
Jenkins and Tekton are extensively used to automate the process of building, testing, and deploying applications and projects. However, Tekton is a cloud-native CI/CD solution that works seamlessly with Kubernetes and {product-title}. This document helps you migrate your Jenkins CI/CD workflows to Tekton.
1311

1412
include::modules/jt-comparison-of-jenkins-and-tekton-concepts.adoc[leveloffset=+1]

cicd/pipelines/reducing-pipelines-resource-consumption.adoc

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ include::_attributes/common-attributes.adoc[]
66

77
toc::[]
88

9-
109
If you use clusters in multi-tenant environments you must control the consumption of CPU, memory, and storage resources for each project and Kubernetes object. This helps prevent any one application from consuming too many resources and affecting other applications.
1110

1211
To define the final resource limits that are set on the resulting pods, {pipelines-title} use resource quota limits and limit ranges of the project in which they are executed.

cicd/pipelines/securing-webhooks-with-event-listeners.adoc

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
[id="securing-webhooks-with-event-listeners"]
33
= Securing webhooks with event listeners
44
include::_attributes/common-attributes.adoc[]
5-
65
:context: securing-webhooks-with-event-listeners
76

87
toc::[]

cicd/pipelines/setting-compute-resource-quota-for-openshift-pipelines.adoc

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ include::_attributes/common-attributes.adoc[]
66

77
toc::[]
88

9-
109
A `ResourceQuota` object in {pipelines-title} controls the total resource consumption per namespace. You can use it to limit the quantity of objects created in a namespace, based on the type of the object. In addition, you can specify a compute resource quota to restrict the total amount of compute resources consumed in a namespace.
1110

1211
However, you might want to limit the amount of compute resources consumed by pods resulting from a pipeline run, rather than setting quotas for the entire namespace. Currently, {pipelines-title} does not enable you to directly specify the compute resource quota for a pipeline.

cicd/pipelines/working-with-pipelines-using-the-developer-perspective.adoc

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
[id='working-with-pipelines-using-the-developer-perspective']
33
= Working with {pipelines-title} using the Developer perspective
44
include::_attributes/common-attributes.adoc[]
5-
65
:context: working-with-pipelines-using-the-developer-perspective
76

87
toc::[]

modules/jt-comparison-of-jenkins-and-tekton-concepts.adoc

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,6 @@
55
[id="jt-comparison-of-jenkins-and-tekton-concepts_{context}"]
66
= Comparison of Jenkins and Tekton concepts
77

8-
toc::[]
9-
10-
118
This section summarizes the basic terms used in Jenkins and Tekton, and compares the equivalent terms.
129

1310
== Jenkins terminology

modules/jt-extending-tekton-capabilities-using-custom-tasks-and-scripts.adoc

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,6 @@
55
[id="jt-extending-tekton-capabilities-using-custom-tasks-and-scripts_{context}"]
66
= Extending Tekton capabilities using custom tasks and scripts
77

8-
toc::[]
9-
10-
118
In Tekton, if you do not find the right task in Tekton Hub, or need greater control over tasks, you can create custom tasks and scripts to extend Tekton's capabilities.
129

1310
.Example: Custom task for running the `maven test` command

modules/jt-migrating-a-sample-pipeline-from-jenkins-to-tekton.adoc

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,6 @@
55
[id="jt-migrating-a-sample-pipeline-from-jenkins-to-tekton_{context}"]
66
= Migrating a sample pipeline from Jenkins to Tekton
77

8-
toc::[]
9-
10-
118
This section provides equivalent examples of pipelines in Jenkins and Tekton and helps you to migrate your build, test, and deploy pipelines from Jenkins to Tekton.
129

1310
== Jenkins pipeline

modules/jt-migrating-from-jenkins-plugins-to-tekton-hub-tasks.adoc

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,7 @@
55
[id="jt-migrating-from-jenkins-plugins-to-tekton-hub-tasks_{context}"]
66
= Migrating from Jenkins plugins to Tekton Hub tasks
77

8-
toc::[]
9-
10-
11-
You can exend the capability of Jenkins by using link:https://plugins.jenkinsci.org[plugins]. To achieve similar extensibility in Tekton, use any of the available tasks from link:https://hub.tekton.dev[Tekton Hub].
8+
You can extend the capability of Jenkins by using link:https://plugins.jenkinsci.org[plugins]. To achieve similar extensibility in Tekton, use any of the available tasks from link:https://hub.tekton.dev[Tekton Hub].
129

1310
As an example, consider the link:https://hub.tekton.dev/tekton/task/git-clone[git-clone] task available in the Tekton Hub, that corresponds to the link:https://plugins.jenkins.io/git/[git plugin] for Jenkins.
1411

modules/op-running-pipeline-and-task-run-pods-with-privileged-security-context.adoc

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
= Running pipeline run and task run pods with privileged security context
44
:context: op-running-pipeline-and-task-run-pods-with-privileged-security-context
55

6-
toc::[]
76

87
.Procedure
98

0 commit comments

Comments
 (0)