We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 02e55e5 commit 1d51aafCopy full SHA for 1d51aaf
ci/images/ci-runner/hack/bin/deploy-cluster.sh
@@ -43,7 +43,12 @@ deploy_cluster() {
43
echo "Waited $wait_period seconds..."
44
done
45
46
- echo "Hypershift is ready, the following is the cluster kubeconfig"
+ echo "Hypershift is ready, The following is Cluster credentials"
47
+ local pass
48
+ pass="$(kubectl get secret -n clusters "${CLUSTER_NAME}"-kubeadmin-password -o json | jq -r .data.password | base64 -d)"
49
+ echo "kubeadmin:${pass}"
50
+ echo "The following is the cluster kubeconfig"
51
+
52
hypershift create kubeconfig --name "$CLUSTER_NAME" | tee "$WORKSPACE/kubeconfig"
53
}
54
0 commit comments