33 lines
1.1 KiB
Plaintext
33 lines
1.1 KiB
Plaintext
# skill_digest: f15347d6f22704568ffc3656768cb503c13f92a22a775a59d9b0fda007964bfb
|
|
I'll help you extract the information from the Konflux URL. I'll use the navigating-github-to-konflux-pipelines skill to assist with this.
|
|
|
|
<invoke name="Skill">
|
|
<parameter name="skill">navigating-github-to-konflux-pipelines</parameter>
|
|
</invoke>
|
|
|
|
Let me break down the URL for you:
|
|
|
|
- Cluster: `stone-prd-rh01.pg1f.p1.openshiftapps.com`
|
|
- Namespace: `rhtap-integration-tenant`
|
|
- PipelineRun name: `yq-on-pull-request-69sq8`
|
|
|
|
You can use these values in kubectl commands like this:
|
|
|
|
```bash
|
|
kubectl get pipelinerun yq-on-pull-request-69sq8 -n rhtap-integration-tenant -c stone-prd-rh01.pg1f.p1.openshiftapps.com
|
|
```
|
|
|
|
To make this easier, you can set these as environment variables:
|
|
```bash
|
|
export CLUSTER=stone-prd-rh01.pg1f.p1.openshiftapps.com
|
|
export NAMESPACE=rhtap-integration-tenant
|
|
export PIPELINERUN=yq-on-pull-request-69sq8
|
|
```
|
|
|
|
Then use them in commands like:
|
|
```bash
|
|
kubectl get pipelinerun $PIPELINERUN -n $NAMESPACE -c $CLUSTER
|
|
```
|
|
|
|
Is there a specific kubectl command you'd like to run with these details?
|