2019-10-23 19:37:45 +01:00
|
|
|
# oc
|
|
|
|
|
|
|
|
> The OpenShift Container Platform CLI.
|
|
|
|
> Allows for application and container management.
|
|
|
|
> More information: <https://docs.openshift.com/container-platform/3.11/cli_reference/get_started_cli.html>.
|
|
|
|
|
|
|
|
- Log in to the OpenShift Container Platform server:
|
|
|
|
|
|
|
|
`oc login`
|
|
|
|
|
|
|
|
- Create a new project:
|
|
|
|
|
|
|
|
`oc new-project {{project_name}}`
|
|
|
|
|
2020-10-24 13:58:11 +01:00
|
|
|
- Switch to an existing project:
|
|
|
|
|
|
|
|
`oc project {{project_name}}`
|
|
|
|
|
2019-10-23 19:37:45 +01:00
|
|
|
- Add a new application to a project:
|
|
|
|
|
|
|
|
`oc new-app {{repo_url}} --name {{application}}`
|
|
|
|
|
|
|
|
- Open a remote shell session to a container:
|
|
|
|
|
|
|
|
`oc rsh {{pod_name}}`
|
|
|
|
|
|
|
|
- List pods in a project:
|
|
|
|
|
|
|
|
`oc get pods`
|
|
|
|
|
2021-05-14 01:42:15 +01:00
|
|
|
- Log out from the current session:
|
2019-10-23 19:37:45 +01:00
|
|
|
|
|
|
|
`oc logout`
|