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
RESOURCE=$({{ bin_dir }}/kubectl -n {{ item.ns }} get {{ item.kind }} {{ item.resource }} 2> /dev/null | head -n 1);
If we run the command inside ks-installer we will see this result:
/usr/local/bin/kubectl -n kubesphere-devops-system get secrets s2i-webhook-server-cert 2> /dev/null | head -n 1
NAME TYPE DATA AGE
I think the right command should be:
/usr/local/bin/kubectl -n kubesphere-devops-system get secrets s2i-webhook-server-cert 2> /dev/null | tail -n 1
s2i-webhook-server-cert Opaque 3 25h
The text was updated successfully, but these errors were encountered:
ks-installer/roles/ks-devops/tasks/main.yaml
Line 136 in 38055b3
If we run the command inside ks-installer we will see this result:
/usr/local/bin/kubectl -n kubesphere-devops-system get secrets s2i-webhook-server-cert 2> /dev/null | head -n 1
NAME TYPE DATA AGE
I think the right command should be:
/usr/local/bin/kubectl -n kubesphere-devops-system get secrets s2i-webhook-server-cert 2> /dev/null | tail -n 1
s2i-webhook-server-cert Opaque 3 25h
The text was updated successfully, but these errors were encountered: