# Admin Console

OpenShift'i kurup çalıştırdıktan sonra, web tarayıcısı yönetici konsolu bir pod üzerinde çalışır. Pod'u içeren projeyi belirlemek için oc get projects komutu kullanılabilir.

```
~]$ oc get projects | grep -i console
openshift-web-console
```

Oc project komutu pod içeren projeyi seçmek için kullanılabilir. " oc config view " veya " oc get apiserver " komutları API Sunucusu URL'sini (örnek: api.openshift.firmaismi.net) görüntülemek için kullanılabilir.

```
~]$ oc project openshift-web-console
Now using project "openshift-web-console" on server "api.openshift.firmaismi.net:6443".
```

Projedeki podları görüntülemek için " oc get pods " komutu kullanılabilir.

```
~]# oc get pods
NAME               READY   STATUS     RESTARTS  AGE
webconsole-abc-123 1/1     Running    0         8d
webconsole-abc-456 1/1     Running    0         8d
webconsole-abc-789 1/1     Running    0         8d
```

veya -n paremetresi ile proje ismi yazarak. Kişisel tavsiyem hep -n parametresini kullanın. Eliniz alışşsın.

```
oc get pods -n webconsole
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://ocp.1w2.net/openshift-gui-ve-cli-ile-yonetimi/admin-console.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
