You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When I created pipelinerun yaml, i can pipeline able to see workspace which contains kubeconfig file with cluster details but i have kubectl get pod command inside the task yaml, which is throughs Unable to connect to the server: dial tcp 192.82.1.1:443: i/o timeout
Steps to Reproduce the Problem
Task.yaml
apiVersion: tekton.dev/v1beta1
kind: Task
metadata:
name: authentication-test
namespace: caas-devops-test
spec:
params:
- name: filename
description: kubeconfig file name
type: string
workspaces:
- name: input
steps:
- name: get
image: quay.io/openshift/origin-cli:4.6
script: |
export KUBECONFIG="$(workspaces.input.path)/$(inputs.params.filename)"
#
# check that the cluster is configured
cd workspace/input
cat kubeconfig
kubectl config use-context my-cluster-context
kubectl get pod
Note: GKE cluster does not have clientCertificateData, clientKeyData because when i'm seeing GKE cluster overview details client certificate option has been disbaled due to this i'm not able to pass those 2 values inside the pipeline.yaml file
The text was updated successfully, but these errors were encountered:
Expected Behavior
Actual Behavior
Steps to Reproduce the Problem
Task.yaml
pipeline.yaml
Additional Info
Note: GKE cluster does not have clientCertificateData, clientKeyData because when i'm seeing GKE cluster overview details client certificate option has been disbaled due to this i'm not able to pass those 2 values inside the pipeline.yaml file
The text was updated successfully, but these errors were encountered: