Skip to content

Commit 9a10847

Browse files
committed
RHDEVDOCS 5669 use a variable for Pipelines version in links, enable ARM64 tkn for all docs
1 parent 9589165 commit 9a10847

File tree

5 files changed

+17
-22
lines changed

5 files changed

+17
-22
lines changed

_attributes/common-attributes.adoc

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,8 @@ endif::[]
8484
//pipelines
8585
:pipelines-title: Red Hat OpenShift Pipelines
8686
:pipelines-shortname: OpenShift Pipelines
87-
:pipelines-ver: pipelines-1.11
87+
:pipelines-ver: pipelines-1.12
88+
:pipelines-version-number: 1.12
8889
:tekton-chains: Tekton Chains
8990
:tekton-hub: Tekton Hub
9091
:artifact-hub: Artifact Hub

modules/op-installing-tkn-on-linux-using-rpm.adoc

Lines changed: 8 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -49,33 +49,31 @@ For {op-system-base-full} version 8, you can install the {pipelines-title} CLI a
4949
+
5050
* Linux (x86_64, amd64)
5151
+
52-
[source,terminal]
52+
[source,terminal,subs="attributes"]
5353
----
54-
# subscription-manager repos --enable="pipelines-1.11-for-rhel-8-x86_64-rpms"
54+
# subscription-manager repos --enable="pipelines-{pipelines-version-number}-for-rhel-8-x86_64-rpms"
5555
----
5656
+
5757
* Linux on {ibmzProductName} and {linuxoneProductName} (s390x)
5858
+
59-
[source,terminal]
59+
[source,terminal,subs="attributes"]
6060
----
61-
# subscription-manager repos --enable="pipelines-1.11-for-rhel-8-s390x-rpms"
61+
# subscription-manager repos --enable="pipelines-{pipelines-version-number}-for-rhel-8-s390x-rpms"
6262
----
6363
+
6464
* Linux on {ibmpowerProductName} (ppc64le)
6565
+
66-
[source,terminal]
66+
[source,terminal,subs="attributes"]
6767
----
68-
# subscription-manager repos --enable="pipelines-1.11-for-rhel-8-ppc64le-rpms"
68+
# subscription-manager repos --enable="pipelines-{pipelines-version-number}-for-rhel-8-ppc64le-rpms"
6969
----
70-
ifndef::openshift-rosa,openshift-dedicated[]
7170
+
7271
* Linux on ARM (aarch64, arm64)
7372
+
74-
[source,terminal]
73+
[source,terminal,subs="attributes"]
7574
----
76-
# subscription-manager repos --enable="pipelines-1.11-for-rhel-8-arm64-rpms"
75+
# subscription-manager repos --enable="pipelines-{pipelines-version-number}-for-rhel-8-aarch64-rpms"
7776
----
78-
endif::openshift-rosa,openshift-dedicated[]
7977
. Install the `openshift-pipelines-client` package:
8078
+
8179
[source,terminal]

modules/op-installing-tkn-on-linux.adoc

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,15 +14,13 @@ For Linux distributions, you can download the CLI as a `tar.gz` archive.
1414

1515
. Download the relevant CLI tool.
1616

17-
* link:https://mirror.openshift.com/pub/openshift-v4/clients/pipelines/1.11.0/tkn-linux-amd64.tar.gz[Linux (x86_64, amd64)]
17+
* link:https://mirror.openshift.com/pub/openshift-v4/clients/pipelines/{pipelines-version-number}.0/tkn-linux-amd64.tar.gz[Linux (x86_64, amd64)]
1818

19-
* link:https://mirror.openshift.com/pub/openshift-v4/clients/pipelines/1.11.0/tkn-linux-s390x.tar.gz[Linux on {ibmzProductName} and {linuxoneProductName} (s390x)]
19+
* link:https://mirror.openshift.com/pub/openshift-v4/clients/pipelines/{pipelines-version-number}.0/tkn-linux-s390x.tar.gz[Linux on {ibmzProductName} and {linuxoneProductName} (s390x)]
2020

21-
* link:https://mirror.openshift.com/pub/openshift-v4/clients/pipelines/1.11.0/tkn-linux-ppc64le.tar.gz[Linux on {ibmpowerProductName} (ppc64le)]
21+
* link:https://mirror.openshift.com/pub/openshift-v4/clients/pipelines/{pipelines-version-number}.0/tkn-linux-ppc64le.tar.gz[Linux on {ibmpowerProductName} (ppc64le)]
2222

23-
ifndef::openshift-rosa,openshift-dedicated[]
24-
* link:https://mirror.openshift.com/pub/openshift-v4/clients/pipelines/1.11.0/tkn-linux-arm64.tar.gz[Linux on ARM (aarch64, arm64)]
25-
endif::openshift-rosa,openshift-dedicated[]
23+
* link:https://mirror.openshift.com/pub/openshift-v4/clients/pipelines/{pipelines-version-number}.0/tkn-linux-arm64.tar.gz[Linux on ARM (aarch64, arm64)]
2624

2725
// Binaries also need to be updated in the following modules:
2826
// op-installing-pipelines-as-code-cli.adoc

modules/op-installing-tkn-on-macos.adoc

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,9 @@ For macOS, you can download the CLI as a `tar.gz` archive.
1414

1515
. Download the relevant CLI tool.
1616

17-
* link:https://mirror.openshift.com/pub/openshift-v4/clients/pipelines/1.11.0/tkn-macos-amd64.tar.gz[macOS]
17+
* link:https://mirror.openshift.com/pub/openshift-v4/clients/pipelines/{pipelines-version-number}.0/tkn-macos-amd64.tar.gz[macOS]
1818

19-
ifndef::openshift-rosa,openshift-dedicated[]
20-
* link:https://mirror.openshift.com/pub/openshift-v4/clients/pipelines/1.11.0/tkn-macos-arm64.tar.gz[macOS on ARM]
21-
endif::openshift-rosa,openshift-dedicated[]
19+
* link:https://mirror.openshift.com/pub/openshift-v4/clients/pipelines/{pipelines-version-number}.0/tkn-macos-arm64.tar.gz[macOS on ARM]
2220

2321
. Unpack and extract the archive.
2422

modules/op-installing-tkn-on-windows.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ For Windows, you can download the CLI as a `zip` archive.
1212

1313
.Procedure
1414

15-
. Download the link:https://mirror.openshift.com/pub/openshift-v4/clients/pipelines/1.11.0/tkn-windows-amd64.zip[CLI tool].
15+
. Download the link:https://mirror.openshift.com/pub/openshift-v4/clients/pipelines/{pipelines-version-number}.0/tkn-windows-amd64.zip[CLI tool].
1616

1717
. Extract the archive with a ZIP program.
1818
ifndef::openshift-rosa,openshift-dedicated[]

0 commit comments

Comments
 (0)