1
0
mirror of https://github.com/openshift/openshift-docs.git synced 2026-02-05 21:46:22 +01:00

Added acessing to kubeconfig using oc CLI

This commit is contained in:
subhtk
2025-06-25 21:11:34 +05:30
committed by openshift-cherrypick-robot
parent 0c72842683
commit d91ec00380
2 changed files with 55 additions and 0 deletions

View File

@@ -16,3 +16,6 @@ include::modules/cli-configuring-completion.adoc[leveloffset=+2]
// Enabling tab completion for Zsh
include::modules/cli-configuring-completion-zsh.adoc[leveloffset=+2]
// Configuring a kubeconfig file by using the oc CLI
include::modules/cli-configuring-kubeconfig-using-cli.adoc[leveloffset=+1]

View File

@@ -0,0 +1,52 @@
// Module included in the following assemblies:
//
// * cli_reference/openshift_cli/configuring-cli.adoc
:_mod-docs-content-type: PROCEDURE
[id="cli-accessing-kubeconfig-using-cli_{context}"]
= Accessing kubeconfig by using the oc CLI
You can use the `oc` CLI to log in to your OpenShift cluster and retrieve a kubeconfig file for accessing the cluster from the command line.
.Prerequisites
* You have access to the {product-title} web console or API server endpoint.
.Procedure
. Log in to your OpenShift cluster by running the following command:
+
[source,terminal]
----
$ oc login <api-server-url> -u <username> -p <password> <1><2><3>
----
+
<1> Specify the full API server URL. For example: `https://api.my-cluster.example.com:6443`.
<2> Specify a valid username. For example: `kubeadmin`.
<3> Provide the password for the specified user. For example, the `kubeadmin` password generated during cluster installation.
. Save the cluster configuration to a local file by running the following command:
+
[source,terminal]
----
$ oc config view --raw > kubeconfig
----
. Set the `KUBECONFIG` environment variable to point to the exported file by running the following command:
+
[source,terminal]
----
$ export KUBECONFIG=./kubeconfig
----
. Use `oc` to interact with your OpenShift cluster by running the following command:
+
[source,terminal]
----
$ oc get nodes
----
[NOTE]
====
If you plan to reuse the exported `kubeconfig` file across sessions or machines, store it securely and avoid committing it to source control.
====