Skip to content

[enterprise-3.9] Bug 1557349: Add APB tool user permission reqs for 3.7 #8392

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
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
25 changes: 25 additions & 0 deletions apb_devel/cli_tooling.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,33 @@ takes care of the details so they should be easy to deploy.
[[apb-devel-cli-install-prereqs]]
=== Prerequisites

[[apb-devel-cli-install-prereqs-docker]]
==== Docker Daemon

The `docker` daemon must be correctly installed and running on the system.

[[apb-devel-cli-install-prereqs-access-permissions]]
==== Access Permissions

You must be logged in via `oc` as a user with *cluster-admin* permissions:

----
$ oc login -u <user> <openshift_server>
----

To add this role to another user, you can run the following as a user that
already has such permissions (for example, the *system:admin* default system
user):

----
$ oc adm policy \
add-cluster-role-to-user \
cluster-admin <user>
----

This permission requirement is so that the development lifecycle of the `apb`
tool can function.

ifdef::openshift-origin[]
[[apb-devel-cli-install-containerized]]
=== Running From a Container
Expand Down