ので、私は持っていますminikube 0.16.0 installed
またistio 1.7.3
したがって、コマンドに従って、展開ごとにエンボイサイドカーを実行しますkubectl label namespace default istio-injection=enabled
さて、質問に来て、私はcurl
ポッド内からは何もできませsleep-diag
ん.http
たとえば、インストール中に、私はこれに反対jenkins
しようとしましたが、成功しませんでした:curl
url
bash-5.0# curl -v https://updates.jenkins.io/current/update-center.json
* Trying 92.242.132.16:443...
* TCP_NODELAY set
* connect to 92.242.132.16 port 443 failed: Operation timed out
* Failed to connect to updates.jenkins.io port 443: Operation timed out
* Closing connection 0
curl: (28) Failed to connect to updates.jenkins.io port 443: Operation timed out
しかし、私が言ってみましょう:
bash-5.0# curl -v https://www.google.com
* Trying 92.242.132.16:443...
* TCP_NODELAY set
* connect to 92.242.132.16 port 443 failed: Operation timed out
* Failed to connect to www.google.com port 443: Operation timed out
* Closing connection 0
curl: (28) Failed to connect to www.google.com port 443: Operation timed out
私は自分のローカル クラスターの外部にいることができpod
ますが、これに関するアイデアはありますか?
たとえば、次jenkins
のようにインストールしてみましたhelm
:
helm install --set Master.ServiceType=ClusterIP jenkins/jenkins --generate-name
同じ問題があるhttps
ことを指定しても、ローカルクラスターからアクセスできないため、明らかに失敗します。NodePort
helm install --set Master.ServiceType=NodePort jenkins/jenkins --generate-name
何か案は?