Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions cmd/disclaimer.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
)

// printDisclaimer emits a support-level disclaimer to stderr on interactive
// sessions. Suppressed when TSSC_NO_DISCLAIMER is set or stderr is not a
// sessions. Suppressed when TSF_NO_DISCLAIMER is set or stderr is not a
// terminal.
func printDisclaimer() {
if os.Getenv("TSF_NO_DISCLAIMER") != "" {
Expand All @@ -21,6 +21,6 @@ func printDisclaimer() {
os.Stderr,
"NOTE: The TSF installation program generates your first deployment "+
"of RHADS-TSF but does not support upgrades. "+
"Each products must be manually reconfigured for production workloads.\n\n",
"Each product must be manually reconfigured for production workloads.\n\n",
)
}
2 changes: 1 addition & 1 deletion docs/modules/ROOT/pages/installing.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ NOTE: The installer may log an error about failing to open the browser. This is

=== Verification

* The GitHub App page displays with a *Website* link that points to the {KonfluxName} UI. You can use this link to access the UI after deployment is complete.
* The GitHub App page includes a *Website* link that points to the {KonfluxName} UI. You can use this link to access the UI after deployment is complete.
* In the GitHub organization settings under *Developer settings > GitHub Apps*, the newly created app appears with the correct permissions.

== Configure the GitLab integration
Expand Down
2 changes: 1 addition & 1 deletion docs/modules/ROOT/pages/preparing-to-install.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ Create a Quay organization and generate an OAuth token. The {TSFShortName} insta
Follow the Quay documentation to complete these steps:

. link:https://docs.quay.io/glossary/organizations.html[Create an organization] in your Quay registry.
. link:https://docs.quay.io/glossary/access-token.html[Create an OAuth access token] within the organization and generate an access token with all permission scopes.
. link:https://docs.quay.io/glossary/access-token.html[Create an OAuth access token] within the organization with all permission scopes.

Copy the access token and save it securely. Use this token in the next step when preparing the environment file.

Expand Down
2 changes: 1 addition & 1 deletion docs/modules/ROOT/pages/troubleshooting.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ oc get pods -n tsf-tpa
oc get pods -n tsf-tpa | grep postgres
----

. If pods are in error state, check the logs:
. If pods are in an error state, check the logs:
+
[source,bash]
----
Expand Down
2 changes: 1 addition & 1 deletion docs/modules/ROOT/pages/verifying-and-accessing.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ NOTE: The route name is auto-generated and varies per deployment. The command ab

. On the {OCPShortName} login page, enter your credentials and click *Log in*.

. On the *Authorize Access* page, the `dex-client` service account in the `konflux-ui` project requests permission to access your account. Review the requested permission:
. On the *Authorize Access* page, the `dex-client` service account in the `konflux-ui` project requests permission to access your account. Review the requested permissions:
* `user:info` — read-only access to your user information, including username, identities, and group membership.

. Click *Allow selected permissions*.
Expand Down
Loading