地方エンジニアの学習日記

興味ある技術の雑なメモだったりを書いてくブログ。たまに日記とガジェット紹介。

2020-12-17から1日間の記事一覧

【Mac】[brew] Error: homebrew-core is a shallow clone.

mac

$ brew update Error: homebrew-core is a shallow clone. To `brew update` first run: git -C "/usr/local/Homebrew/Library/Taps/homebrew/homebrew-core" fetch --unshallow This restriction has been made on GitHub's request because updating shall…

【Istio】サーキットブレーカをやるサンプル

k8s

apiVersion: networking.istio.io/v1beta1 kind: DestinationRule metadata: name: httpbin-destination-rule spec: host: c-native-flask-svc subsets: - name: v1 labels: version: v1 trafficPolicy: connectionPool: tcp: maxConnections: 2 http: http2…