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.12.0 (v1.14) (minor) #26763

Merged
merged 1 commit into from
Jul 12, 2023
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.11.6@sha256:b683ff2de3b778322419717b302ef834e7a0c1e786d69aa833c03d9dea4efcfc
image: quay.io/cilium/hubble:v0.12.0@sha256:1e43b5cd9be0375bb9e0e0f18ad940f0e2a7f47f97ca987be2fe30376da6bc60
imagePullPolicy: IfNotPresent
env:
- name: HUBBLE_SERVER
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.11.6"
hubble_version="v0.12.0"

declare -A hubble_sha256
# renovate: datasource=github-release-attachments depName=cilium/hubble digestVersion=v0.11.6
hubble_sha256[amd64]="2d2768574351a85770088c9239214cf50cb42461979f116ef20f985eb943b05a"
# renovate: datasource=github-release-attachments depName=cilium/hubble digestVersion=v0.11.6
hubble_sha256[arm64]="6c74e702638533ae835110be59d303ee74d4a19498bdb83ad488025684276ffe"
# renovate: datasource=github-release-attachments depName=cilium/hubble digestVersion=v0.12.0
hubble_sha256[amd64]="286ed8fecdcb552de9bc65aa828fa03722470d4b60af99602f401615bd489719"
# renovate: datasource=github-release-attachments depName=cilium/hubble digestVersion=v0.12.0
hubble_sha256[arm64]="62d73a73f7baa0e13d1a62a8a2d7475858307e0d762dde55f2c51220e2ae8a61"

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