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
forctxin west east;doecho"Adding test services on cluster: ${ctx} ........."
kubectl --context=${ctx} apply \
-k "github.com/linkerd/website/multicluster/${ctx}/"
kubectl --context=${ctx} -n test \
rollout status deploy/podinfo ||breakecho"-------------\n"done
Some errors occurred and the loop was broken:
Adding test services on cluster: west .........
error: hit 27s timeout running '/usr/bin/git fetch --depth=1 origin HEAD'
Error from server (NotFound): deployments.apps "podinfo" not found
I think the last error is raised because of the command kubectl --context=${ctx} -n test rollout status deploy/podinfo || break. So the main problem is when executing kubectl --context=${ctx} apply -k "github.com/linkerd/website/multicluster/west/", the command timed out and I don't know how to resolve it.
Expect your response. Thanks for any help!
By the way, I tried to request the kustomize URL by executing:
I also tried to clone the repository website locally and run:
git clone [email protected]:linkerd/website.git --depth=1
forctxin west east;doecho"Adding test services on cluster: ${ctx} ........."
kubectl --context=${ctx} create namespace test --dry-run=client -o yaml | kubectl apply -f -
kubectl --context=${ctx} apply \
-k "website/multicluster/${ctx}/"
kubectl --context=${ctx} -n test \
rollout status deploy/podinfo ||breakecho"-------------\n"done
But also failed:
Adding test services on cluster: west .........
error: accumulating resources: accumulation err='accumulating resources from '../base': '/**/**/website/multicluster/base' must resolve to a file': recursed accumulation of path '/**/**/website/multicluster/base': no matches for IdId apps_v1_Deployment|test|podinfo; failed to find unique target for patch apps_v1_Deployment|podinfo
Error from server (NotFound): deployments.apps "podinfo" not found
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Hello everyone:
I was following the tutorial about multi-cluter communication. I had passed the multicluster check and I tried to install the test services.
However, when I run the command below:
Some errors occurred and the loop was broken:
I think the last error is raised because of the command
kubectl --context=${ctx} -n test rollout status deploy/podinfo || break
. So the main problem is when executingkubectl --context=${ctx} apply -k "github.com/linkerd/website/multicluster/west/"
, the command timed out and I don't know how to resolve it.Expect your response. Thanks for any help!
By the way, I tried to request the kustomize URL by executing:
404 responed:
A similar address I found is
github.com/linkerd/website/tree/main/multicluster/west/
which a directory exists.The response I got:
I also tried to clone the repository
website
locally and run:But also failed:
Update on July 13th, 2021:
I found the same problem here.
Maybe it is a network problem.
/close
Beta Was this translation helpful? Give feedback.
All reactions