Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): update hubble cli to v0.13.2 (v1.13) #31340

Merged
merged 1 commit into from
Mar 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion examples/hubble/hubble-cli.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ spec:
spec:
containers:
- name: hubble-cli
image: quay.io/cilium/hubble:v0.13.0@sha256:eaf525154267394e4fb6b0d0069303830cc70115ca615f683f716575ae5ce9ac
image: quay.io/cilium/hubble:v0.13.2@sha256:750dd97539b20c526f7646e4de56726106abc25dd0cc0dc9b367adfe18db52b4
imagePullPolicy: IfNotPresent
command:
- tail
Expand Down
10 changes: 5 additions & 5 deletions images/cilium/download-hubble.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,13 @@ set -o pipefail
set -o nounset

# renovate: datasource=github-release-attachments depName=cilium/hubble
hubble_version="v0.13.0"
hubble_version="v0.13.2"

declare -A hubble_sha256
# renovate: datasource=github-release-attachments depName=cilium/hubble digestVersion=v0.13.0
hubble_sha256[amd64]="33d06c144ab39b3966d815f9bf2474c331fc32b1ee52d1c2f559f0443dcdfc9a"
# renovate: datasource=github-release-attachments depName=cilium/hubble digestVersion=v0.13.0
hubble_sha256[arm64]="1c4a2d2acec14d3d1d52e51b1723608d7dfd54dc77d483be71e7774c9f870ec8"
# renovate: datasource=github-release-attachments depName=cilium/hubble digestVersion=v0.13.2
hubble_sha256[amd64]="d4872683bc2da5d1175b544452845c56be169c8fef0768d9bd5d710add64bd6b"
# renovate: datasource=github-release-attachments depName=cilium/hubble digestVersion=v0.13.2
hubble_sha256[arm64]="0eb69c778e6d64f5587ed5151ebf8d2e85bee23ae4a26282cccc6a97af3f8ad3"

for arch in amd64 arm64 ; do
curl --fail --show-error --silent --location "https://github.com/cilium/hubble/releases/download/${hubble_version}/hubble-linux-${arch}.tar.gz" --output "/tmp/hubble-${arch}.tgz"
Expand Down