From 54b2e63b082c0567ba7b3dc7d62006b41a54f1d6 Mon Sep 17 00:00:00 2001 From: Tasuku Yamashita Date: Thu, 7 May 2026 15:29:41 +0900 Subject: [PATCH] gha-runner-scale-set-helmfile: add new ARC runner image The legacy actions-runner-helmfile/ directory builds on summerwind/actions-runner, which is incompatible with the new ARC (gha-runner-scale-set) chart. To avoid breaking the legacy ARC runners while the migration is in progress, this PR introduces a parallel directory rather than rewriting the existing one. The new image is published as chatwork/gha-runner-scale-set-helmfile, using ghcr.io/actions/actions-runner as the base so the chart-supplied /home/runner/run.sh command takes effect (no ENTRYPOINT/CMD override). variant.mod sources the runner version from the actions/runner GitHub Releases instead of summerwind/actions-runner Docker Hub tags, with a SemVer-only validVersionPattern. Pre-installed tooling (latest stable at the time of writing): - runner: 2.334.0 - kubectl: 1.36.0 - helmfile: 1.5.0 - helm: 4.1.4 - kustomize: 5.8.1 - helm-diff: 3.15.6 - helm-secrets: 4.7.6 - helm-git: 1.5.2 - yq: 4.53.2 Once the legacy ARC runners that consume actions-runner-helmfile are decommissioned, the legacy directory can be removed in a separate PR. Co-Authored-By: Claude Opus 4.7 (1M context) --- gha-runner-scale-set-helmfile/Dockerfile | 59 + .../Dockerfile.arm64 | 59 + gha-runner-scale-set-helmfile/Dockerfile.tpl | 59 + gha-runner-scale-set-helmfile/Makefile | 63 + gha-runner-scale-set-helmfile/README.md | 7 + .../docker-compose.test.yml | 18 + gha-runner-scale-set-helmfile/goss/goss.yaml | 32 + .../goss/goss.yaml.tpl | 32 + gha-runner-scale-set-helmfile/hooks/test | 3 + gha-runner-scale-set-helmfile/variant.lock | 51619 ++++++++++++++++ gha-runner-scale-set-helmfile/variant.mod | 31 + 11 files changed, 51982 insertions(+) create mode 100644 gha-runner-scale-set-helmfile/Dockerfile create mode 100644 gha-runner-scale-set-helmfile/Dockerfile.arm64 create mode 100644 gha-runner-scale-set-helmfile/Dockerfile.tpl create mode 100644 gha-runner-scale-set-helmfile/Makefile create mode 100644 gha-runner-scale-set-helmfile/README.md create mode 100644 gha-runner-scale-set-helmfile/docker-compose.test.yml create mode 100644 gha-runner-scale-set-helmfile/goss/goss.yaml create mode 100644 gha-runner-scale-set-helmfile/goss/goss.yaml.tpl create mode 100755 gha-runner-scale-set-helmfile/hooks/test create mode 100644 gha-runner-scale-set-helmfile/variant.lock create mode 100644 gha-runner-scale-set-helmfile/variant.mod diff --git a/gha-runner-scale-set-helmfile/Dockerfile b/gha-runner-scale-set-helmfile/Dockerfile new file mode 100644 index 000000000..902f7ab09 --- /dev/null +++ b/gha-runner-scale-set-helmfile/Dockerfile @@ -0,0 +1,59 @@ +ARG RUNNER_VERSION=2.334.0 +FROM ghcr.io/actions/actions-runner:${RUNNER_VERSION} + +ARG TARGETOS +ARG TARGETARCH + +ARG RUNNER_VERSION=2.334.0 +ARG KUBECTL_VERSION=1.35.4 +ARG HELMFILE_VERSION=1.5.0 +ARG HELM_VERSION=4.1.4 +ARG HELM_FILE_NAME=helm-v${HELM_VERSION}-${TARGETOS}-${TARGETARCH}.tar.gz +ARG HELMFILE_FILE_NAME=helmfile_${HELMFILE_VERSION}_${TARGETOS}_${TARGETARCH}.tar.gz +ARG KUSTOMIZE_VERSION=5.8.1 +ARG KUSTOMIZE_FILE_NAME=kustomize_v${KUSTOMIZE_VERSION}_${TARGETOS}_${TARGETARCH}.tar.gz +ARG HELM_DIFF_VERSION=3.15.6 +ARG HELM_SECRETS_VERSION=4.7.6 +ARG HELM_GIT_VERSION=1.5.2 +ARG YQ_VERSION=4.53.2 +ARG YQ_FILE_NAME=yq_${TARGETOS}_${TARGETARCH} + +LABEL version="v${RUNNER_VERSION}-v${HELMFILE_VERSION}-v${HELM_VERSION}" + +USER root + +RUN apt-get update -y \ + && apt-get install -y --no-install-recommends gh wget ca-certificates \ + && rm -rf /var/lib/apt/lists/* + +ADD https://github.com/mikefarah/yq/releases/download/v${YQ_VERSION}/${YQ_FILE_NAME} /tmp +RUN mv /tmp/${YQ_FILE_NAME} /usr/local/bin/yq \ + && chmod 755 /usr/local/bin/yq + +ADD https://dl.k8s.io/release/v${KUBECTL_VERSION}/bin/${TARGETOS}/${TARGETARCH}/kubectl /tmp +RUN mv /tmp/kubectl /usr/local/bin/kubectl \ + && chmod 755 /usr/local/bin/kubectl + +ADD https://get.helm.sh/${HELM_FILE_NAME} /tmp +RUN tar -zxvf /tmp/${HELM_FILE_NAME} -C /tmp \ + && mv /tmp/${TARGETOS}-${TARGETARCH}/helm /usr/local/bin/helm \ + && chmod 755 /usr/local/bin/helm \ + && rm -rf /tmp/* + +ADD https://github.com/kubernetes-sigs/kustomize/releases/download/kustomize/v${KUSTOMIZE_VERSION}/${KUSTOMIZE_FILE_NAME} /tmp +RUN tar -zxf /tmp/${KUSTOMIZE_FILE_NAME} -C /tmp \ + && mv /tmp/kustomize /usr/local/bin/kustomize \ + && chmod 755 /usr/local/bin/kustomize \ + && rm -fr /tmp/* + +ADD https://github.com/helmfile/helmfile/releases/download/v${HELMFILE_VERSION}/${HELMFILE_FILE_NAME} /tmp +RUN tar -zxvf /tmp/${HELMFILE_FILE_NAME} -C /tmp \ + && mv /tmp/helmfile /usr/local/bin/helmfile \ + && chmod 755 /usr/local/bin/helmfile \ + && rm -rf /tmp/* + +USER runner + +RUN helm plugin install https://github.com/databus23/helm-diff --version v${HELM_DIFF_VERSION} --verify=false \ + && helm plugin install https://github.com/jkroepke/helm-secrets --version v${HELM_SECRETS_VERSION} --verify=false \ + && helm plugin install https://github.com/aslafy-z/helm-git.git --version v${HELM_GIT_VERSION} --verify=false diff --git a/gha-runner-scale-set-helmfile/Dockerfile.arm64 b/gha-runner-scale-set-helmfile/Dockerfile.arm64 new file mode 100644 index 000000000..902f7ab09 --- /dev/null +++ b/gha-runner-scale-set-helmfile/Dockerfile.arm64 @@ -0,0 +1,59 @@ +ARG RUNNER_VERSION=2.334.0 +FROM ghcr.io/actions/actions-runner:${RUNNER_VERSION} + +ARG TARGETOS +ARG TARGETARCH + +ARG RUNNER_VERSION=2.334.0 +ARG KUBECTL_VERSION=1.35.4 +ARG HELMFILE_VERSION=1.5.0 +ARG HELM_VERSION=4.1.4 +ARG HELM_FILE_NAME=helm-v${HELM_VERSION}-${TARGETOS}-${TARGETARCH}.tar.gz +ARG HELMFILE_FILE_NAME=helmfile_${HELMFILE_VERSION}_${TARGETOS}_${TARGETARCH}.tar.gz +ARG KUSTOMIZE_VERSION=5.8.1 +ARG KUSTOMIZE_FILE_NAME=kustomize_v${KUSTOMIZE_VERSION}_${TARGETOS}_${TARGETARCH}.tar.gz +ARG HELM_DIFF_VERSION=3.15.6 +ARG HELM_SECRETS_VERSION=4.7.6 +ARG HELM_GIT_VERSION=1.5.2 +ARG YQ_VERSION=4.53.2 +ARG YQ_FILE_NAME=yq_${TARGETOS}_${TARGETARCH} + +LABEL version="v${RUNNER_VERSION}-v${HELMFILE_VERSION}-v${HELM_VERSION}" + +USER root + +RUN apt-get update -y \ + && apt-get install -y --no-install-recommends gh wget ca-certificates \ + && rm -rf /var/lib/apt/lists/* + +ADD https://github.com/mikefarah/yq/releases/download/v${YQ_VERSION}/${YQ_FILE_NAME} /tmp +RUN mv /tmp/${YQ_FILE_NAME} /usr/local/bin/yq \ + && chmod 755 /usr/local/bin/yq + +ADD https://dl.k8s.io/release/v${KUBECTL_VERSION}/bin/${TARGETOS}/${TARGETARCH}/kubectl /tmp +RUN mv /tmp/kubectl /usr/local/bin/kubectl \ + && chmod 755 /usr/local/bin/kubectl + +ADD https://get.helm.sh/${HELM_FILE_NAME} /tmp +RUN tar -zxvf /tmp/${HELM_FILE_NAME} -C /tmp \ + && mv /tmp/${TARGETOS}-${TARGETARCH}/helm /usr/local/bin/helm \ + && chmod 755 /usr/local/bin/helm \ + && rm -rf /tmp/* + +ADD https://github.com/kubernetes-sigs/kustomize/releases/download/kustomize/v${KUSTOMIZE_VERSION}/${KUSTOMIZE_FILE_NAME} /tmp +RUN tar -zxf /tmp/${KUSTOMIZE_FILE_NAME} -C /tmp \ + && mv /tmp/kustomize /usr/local/bin/kustomize \ + && chmod 755 /usr/local/bin/kustomize \ + && rm -fr /tmp/* + +ADD https://github.com/helmfile/helmfile/releases/download/v${HELMFILE_VERSION}/${HELMFILE_FILE_NAME} /tmp +RUN tar -zxvf /tmp/${HELMFILE_FILE_NAME} -C /tmp \ + && mv /tmp/helmfile /usr/local/bin/helmfile \ + && chmod 755 /usr/local/bin/helmfile \ + && rm -rf /tmp/* + +USER runner + +RUN helm plugin install https://github.com/databus23/helm-diff --version v${HELM_DIFF_VERSION} --verify=false \ + && helm plugin install https://github.com/jkroepke/helm-secrets --version v${HELM_SECRETS_VERSION} --verify=false \ + && helm plugin install https://github.com/aslafy-z/helm-git.git --version v${HELM_GIT_VERSION} --verify=false diff --git a/gha-runner-scale-set-helmfile/Dockerfile.tpl b/gha-runner-scale-set-helmfile/Dockerfile.tpl new file mode 100644 index 000000000..86a3b0200 --- /dev/null +++ b/gha-runner-scale-set-helmfile/Dockerfile.tpl @@ -0,0 +1,59 @@ +ARG RUNNER_VERSION={{ .runner_version }} +FROM ghcr.io/actions/actions-runner:${RUNNER_VERSION} + +ARG TARGETOS +ARG TARGETARCH + +ARG RUNNER_VERSION={{ .runner_version }} +ARG KUBECTL_VERSION=1.35.4 +ARG HELMFILE_VERSION={{ .helmfile_version }} +ARG HELM_VERSION={{ .helm_version }} +ARG HELM_FILE_NAME=helm-v${HELM_VERSION}-${TARGETOS}-${TARGETARCH}.tar.gz +ARG HELMFILE_FILE_NAME=helmfile_${HELMFILE_VERSION}_${TARGETOS}_${TARGETARCH}.tar.gz +ARG KUSTOMIZE_VERSION=5.8.1 +ARG KUSTOMIZE_FILE_NAME=kustomize_v${KUSTOMIZE_VERSION}_${TARGETOS}_${TARGETARCH}.tar.gz +ARG HELM_DIFF_VERSION=3.15.6 +ARG HELM_SECRETS_VERSION=4.7.6 +ARG HELM_GIT_VERSION=1.5.2 +ARG YQ_VERSION=4.53.2 +ARG YQ_FILE_NAME=yq_${TARGETOS}_${TARGETARCH} + +LABEL version="v${RUNNER_VERSION}-v${HELMFILE_VERSION}-v${HELM_VERSION}" + +USER root + +RUN apt-get update -y \ + && apt-get install -y --no-install-recommends gh wget ca-certificates \ + && rm -rf /var/lib/apt/lists/* + +ADD https://github.com/mikefarah/yq/releases/download/v${YQ_VERSION}/${YQ_FILE_NAME} /tmp +RUN mv /tmp/${YQ_FILE_NAME} /usr/local/bin/yq \ + && chmod 755 /usr/local/bin/yq + +ADD https://dl.k8s.io/release/v${KUBECTL_VERSION}/bin/${TARGETOS}/${TARGETARCH}/kubectl /tmp +RUN mv /tmp/kubectl /usr/local/bin/kubectl \ + && chmod 755 /usr/local/bin/kubectl + +ADD https://get.helm.sh/${HELM_FILE_NAME} /tmp +RUN tar -zxvf /tmp/${HELM_FILE_NAME} -C /tmp \ + && mv /tmp/${TARGETOS}-${TARGETARCH}/helm /usr/local/bin/helm \ + && chmod 755 /usr/local/bin/helm \ + && rm -rf /tmp/* + +ADD https://github.com/kubernetes-sigs/kustomize/releases/download/kustomize/v${KUSTOMIZE_VERSION}/${KUSTOMIZE_FILE_NAME} /tmp +RUN tar -zxf /tmp/${KUSTOMIZE_FILE_NAME} -C /tmp \ + && mv /tmp/kustomize /usr/local/bin/kustomize \ + && chmod 755 /usr/local/bin/kustomize \ + && rm -fr /tmp/* + +ADD https://github.com/helmfile/helmfile/releases/download/v${HELMFILE_VERSION}/${HELMFILE_FILE_NAME} /tmp +RUN tar -zxvf /tmp/${HELMFILE_FILE_NAME} -C /tmp \ + && mv /tmp/helmfile /usr/local/bin/helmfile \ + && chmod 755 /usr/local/bin/helmfile \ + && rm -rf /tmp/* + +USER runner + +RUN helm plugin install https://github.com/databus23/helm-diff --version v${HELM_DIFF_VERSION} --verify=false \ + && helm plugin install https://github.com/jkroepke/helm-secrets --version v${HELM_SECRETS_VERSION} --verify=false \ + && helm plugin install https://github.com/aslafy-z/helm-git.git --version v${HELM_GIT_VERSION} --verify=false diff --git a/gha-runner-scale-set-helmfile/Makefile b/gha-runner-scale-set-helmfile/Makefile new file mode 100644 index 000000000..82584f82a --- /dev/null +++ b/gha-runner-scale-set-helmfile/Makefile @@ -0,0 +1,63 @@ +ARCH:=$(shell uname -m) +PLATFORM:=$(shell case "$(ARCH)" in \ + ("arm64"|"aarch64") echo "arm64" ;; \ + ("x86_64") echo "amd64" ;; \ + (*) echo $(ARCH) ;; \ +esac) + +ARM64_SUFFIX:=aarch64 +AMD64_SUFFIX:=x86_64 +SUFFIX:=$(shell case "$(ARCH)" in \ + ("arm64"|"aarch64") echo "$(ARM64_SUFFIX)" ;; \ + ("x86_64") echo "$(AMD64_SUFFIX)" ;; \ + (*) echo $(ARCH) ;; \ +esac) + +# $(call image_ref,version,suffix) -> chatwork/gha-runner-scale-set-helmfile:[-] +image_ref=chatwork/gha-runner-scale-set-helmfile:$(1)$(if $(2),-$(2)) + +.PHONY: build +build: + @docker buildx build -t $(call image_ref,latest) --platform linux/${PLATFORM} -f Dockerfile --load .; \ + version=$$(docker inspect -f {{.Config.Labels.version}} $(call image_ref,latest)); \ + if [ -n "$$version" ]; then \ + docker tag $(call image_ref,latest) $(call image_ref,$$version); \ + fi + +.PHONY: test +test: build + docker-compose -f docker-compose.test.yml up --no-start sut + docker cp $(shell pwd)/goss gha-runner-scale-set-helmfile:/goss + docker-compose -f docker-compose.test.yml up --no-recreate --exit-code-from sut sut + +.PHONY: push +push: + @version=$$(docker inspect -f {{.Config.Labels.version}} $(call image_ref,latest)); \ + if docker inspect --format='{{index .RepoDigests 0}}' $(call image_ref,$$version,$(SUFFIX)) >/dev/null 2>&1; then \ + echo "no changes"; \ + else \ + docker buildx build -t $(call image_ref,$$version,$(SUFFIX)) --platform linux/${PLATFORM} -f Dockerfile --push .; \ + fi + +.PHONY: manifest\:push +manifest\:push: + @version=$$(docker inspect -f {{.Config.Labels.version}} $(call image_ref,latest)); \ + if docker buildx imagetools inspect $(call image_ref,$$version) >/dev/null 2>&1; then \ + echo "no changes"; \ + else \ + docker buildx imagetools create -t $(call image_ref,$$version) \ + $(call image_ref,$$version,$(ARM64_SUFFIX)) \ + $(call image_ref,$$version,$(AMD64_SUFFIX)); \ + docker buildx imagetools create -t $(call image_ref,latest) \ + $(call image_ref,$$version,$(ARM64_SUFFIX)) \ + $(call image_ref,$$version,$(AMD64_SUFFIX)); \ + hub-tool tag rm $(call image_ref,$$version,$(ARM64_SUFFIX)) -f || true; \ + hub-tool tag rm $(call image_ref,$$version,$(AMD64_SUFFIX)) -f || true; \ + fi + +.PHONY: manifest\:succeed-message +manifest\:succeed-message: + @version=$$(docker inspect -f {{.Config.Labels.version}} $(call image_ref,latest)); \ + echo "Released new tags."; \ + echo "- $(call image_ref,$$version)"; \ + echo "- $(call image_ref,latest)" diff --git a/gha-runner-scale-set-helmfile/README.md b/gha-runner-scale-set-helmfile/README.md new file mode 100644 index 000000000..1bae75b9d --- /dev/null +++ b/gha-runner-scale-set-helmfile/README.md @@ -0,0 +1,7 @@ +# gha-runner-scale-set-helmfile + +GitHub Actions self-hosted runner image based on the new ARC (`gha-runner-scale-set`) base image, with helmfile / helm / kubectl / kustomize / yq and helm plugins (helm-diff / helm-secrets / helm-git) pre-installed. + +The legacy `actions-runner-helmfile` directory keeps the old summerwind base for the legacy ARC; this directory is the new ARC equivalent and will eventually replace it once the legacy ARC runners are decommissioned. + +https://github.com/actions/actions-runner-controller diff --git a/gha-runner-scale-set-helmfile/docker-compose.test.yml b/gha-runner-scale-set-helmfile/docker-compose.test.yml new file mode 100644 index 000000000..99035583a --- /dev/null +++ b/gha-runner-scale-set-helmfile/docker-compose.test.yml @@ -0,0 +1,18 @@ +version: '3' +services: + gha-runner-scale-set-helmfile: + build: + context: . + image: chatwork/gha-runner-scale-set-helmfile + sut: + image: chatwork/dgoss:latest + environment: + GOSS_FILES_PATH: /goss + GOSS_FILES_STRATEGY: cp + entrypoint: "" + command: /usr/local/bin/dgoss run --entrypoint '' chatwork/gha-runner-scale-set-helmfile tail -f /dev/null + container_name: gha-runner-scale-set-helmfile + volumes: + - /var/run/docker.sock:/var/run/docker.sock + depends_on: + - gha-runner-scale-set-helmfile diff --git a/gha-runner-scale-set-helmfile/goss/goss.yaml b/gha-runner-scale-set-helmfile/goss/goss.yaml new file mode 100644 index 000000000..7e9532d66 --- /dev/null +++ b/gha-runner-scale-set-helmfile/goss/goss.yaml @@ -0,0 +1,32 @@ +file: + /usr/local/bin/helmfile: + exists: true + mode: "0755" + /usr/local/bin/helm: + exists: true + mode: "0755" + /usr/local/bin/kubectl: + exists: true + mode: "0755" + /usr/local/bin/yq: + exists: true + mode: "0755" +command: + /usr/local/bin/helm version: + exit-status: 0 + stdout: + - "4.1.4" + /usr/local/bin/helmfile -v: + exit-status: 0 + stdout: + - "1.5.0" + /usr/local/bin/helm plugin list: + exit-status: 0 + stdout: + - /^diff/ + - /^helm-git/ + - /^secrets/ + /usr/local/bin/yq --version: + exit-status: 0 + /usr/local/bin/kubectl version --client: + exit-status: 0 diff --git a/gha-runner-scale-set-helmfile/goss/goss.yaml.tpl b/gha-runner-scale-set-helmfile/goss/goss.yaml.tpl new file mode 100644 index 000000000..845910892 --- /dev/null +++ b/gha-runner-scale-set-helmfile/goss/goss.yaml.tpl @@ -0,0 +1,32 @@ +file: + /usr/local/bin/helmfile: + exists: true + mode: "0755" + /usr/local/bin/helm: + exists: true + mode: "0755" + /usr/local/bin/kubectl: + exists: true + mode: "0755" + /usr/local/bin/yq: + exists: true + mode: "0755" +command: + /usr/local/bin/helm version: + exit-status: 0 + stdout: + - "{{ .helm_version }}" + /usr/local/bin/helmfile -v: + exit-status: 0 + stdout: + - "{{ .helmfile_version }}" + /usr/local/bin/helm plugin list: + exit-status: 0 + stdout: + - /^diff/ + - /^helm-git/ + - /^secrets/ + /usr/local/bin/yq --version: + exit-status: 0 + /usr/local/bin/kubectl version --client: + exit-status: 0 diff --git a/gha-runner-scale-set-helmfile/hooks/test b/gha-runner-scale-set-helmfile/hooks/test new file mode 100755 index 000000000..3f97d1157 --- /dev/null +++ b/gha-runner-scale-set-helmfile/hooks/test @@ -0,0 +1,3 @@ +#!/bin/bash + +make test \ No newline at end of file diff --git a/gha-runner-scale-set-helmfile/variant.lock b/gha-runner-scale-set-helmfile/variant.lock new file mode 100644 index 000000000..fe05e09b0 --- /dev/null +++ b/gha-runner-scale-set-helmfile/variant.lock @@ -0,0 +1,51619 @@ +dependencies: + helm: + version: 4.1.4 + previousVersion: 4.1.3 + versions: + - 3.9.2 + - 3.9.3 + - 3.9.4 + - 3.10.0 + - 3.10.1 + - 3.10.2 + - 3.10.3 + - 3.11.0 + - 3.11.1 + - 3.11.2 + - 3.11.3 + - 3.12.0 + - 3.12.1 + - 3.12.2 + - 3.12.3 + - 3.13.0 + - 3.13.1 + - 3.13.2 + - 3.13.3 + - 3.14.0 + - 3.14.1 + - 3.14.2 + - 3.14.3 + - 3.14.4 + - 3.15.0 + - 3.15.1 + - 3.15.2 + - 3.15.3 + - 3.16.4 + - 3.17.0 + - 3.17.1 + - 3.17.2 + - 3.17.3 + - 3.18.0 + - 3.18.1 + - 3.18.2 + - 3.18.3 + - 3.18.4 + - 3.18.5 + - 3.18.6 + - 3.19.0 + - 3.19.1 + - 3.19.2 + - 4.1.1 + - 4.1.3 + - 4.1.4 + githubRelease: + assets: + - browser_download_url: https://github.com/helm/helm/releases/download/v4.1.4/helm-v4.1.4-darwin-amd64.tar.gz.asc + content_type: application/octet-stream + created_at: "2026-04-09T06:00:06Z" + digest: sha256:04716c4fac18472403680e5f161cb0dde71a8b9f831dbe54c4c46ead7958cd32 + download_count: 3 + id: 392164314 + label: null + name: helm-v4.1.4-darwin-amd64.tar.gz.asc + node_id: RA_kwDOApspmc4XX_Pa + size: 265 + state: uploaded + updated_at: "2026-04-09T06:00:07Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/2787248?v=4 + events_url: https://api.github.com/users/gjenkins8/events{/privacy} + followers_url: https://api.github.com/users/gjenkins8/followers + following_url: https://api.github.com/users/gjenkins8/following{/other_user} + gists_url: https://api.github.com/users/gjenkins8/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/gjenkins8 + id: 2787248 + login: gjenkins8 + node_id: MDQ6VXNlcjI3ODcyNDg= + organizations_url: https://api.github.com/users/gjenkins8/orgs + received_events_url: https://api.github.com/users/gjenkins8/received_events + repos_url: https://api.github.com/users/gjenkins8/repos + site_admin: false + starred_url: https://api.github.com/users/gjenkins8/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/gjenkins8/subscriptions + type: User + url: https://api.github.com/users/gjenkins8 + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/392164314 + - browser_download_url: https://github.com/helm/helm/releases/download/v4.1.4/helm-v4.1.4-darwin-amd64.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2026-04-09T06:00:07Z" + digest: sha256:a331930bbfbaab89dc7ec61d420989d022a1ec96aa12e5d52d126466638d1b26 + download_count: 4 + id: 392164318 + label: null + name: helm-v4.1.4-darwin-amd64.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4XX_Pe + size: 265 + state: uploaded + updated_at: "2026-04-09T06:00:07Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/2787248?v=4 + events_url: https://api.github.com/users/gjenkins8/events{/privacy} + followers_url: https://api.github.com/users/gjenkins8/followers + following_url: https://api.github.com/users/gjenkins8/following{/other_user} + gists_url: https://api.github.com/users/gjenkins8/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/gjenkins8 + id: 2787248 + login: gjenkins8 + node_id: MDQ6VXNlcjI3ODcyNDg= + organizations_url: https://api.github.com/users/gjenkins8/orgs + received_events_url: https://api.github.com/users/gjenkins8/received_events + repos_url: https://api.github.com/users/gjenkins8/repos + site_admin: false + starred_url: https://api.github.com/users/gjenkins8/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/gjenkins8/subscriptions + type: User + url: https://api.github.com/users/gjenkins8 + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/392164318 + - browser_download_url: https://github.com/helm/helm/releases/download/v4.1.4/helm-v4.1.4-darwin-amd64.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2026-04-09T06:00:07Z" + digest: sha256:f040ad72fe0e0c8238451c2ddc9699eccc2fa91ef2c7e68c2191e2a44ba72f82 + download_count: 4 + id: 392164322 + label: null + name: helm-v4.1.4-darwin-amd64.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4XX_Pi + size: 265 + state: uploaded + updated_at: "2026-04-09T06:00:07Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/2787248?v=4 + events_url: https://api.github.com/users/gjenkins8/events{/privacy} + followers_url: https://api.github.com/users/gjenkins8/followers + following_url: https://api.github.com/users/gjenkins8/following{/other_user} + gists_url: https://api.github.com/users/gjenkins8/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/gjenkins8 + id: 2787248 + login: gjenkins8 + node_id: MDQ6VXNlcjI3ODcyNDg= + organizations_url: https://api.github.com/users/gjenkins8/orgs + received_events_url: https://api.github.com/users/gjenkins8/received_events + repos_url: https://api.github.com/users/gjenkins8/repos + site_admin: false + starred_url: https://api.github.com/users/gjenkins8/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/gjenkins8/subscriptions + type: User + url: https://api.github.com/users/gjenkins8 + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/392164322 + - browser_download_url: https://github.com/helm/helm/releases/download/v4.1.4/helm-v4.1.4-darwin-arm64.tar.gz.asc + content_type: application/octet-stream + created_at: "2026-04-09T06:00:07Z" + digest: sha256:be20a9cfb4ac20ba0b1b3acd96e86a0a77380464a3dc84e44fa80e348c4de242 + download_count: 3 + id: 392164327 + label: null + name: helm-v4.1.4-darwin-arm64.tar.gz.asc + node_id: RA_kwDOApspmc4XX_Pn + size: 265 + state: uploaded + updated_at: "2026-04-09T06:00:08Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/2787248?v=4 + events_url: https://api.github.com/users/gjenkins8/events{/privacy} + followers_url: https://api.github.com/users/gjenkins8/followers + following_url: https://api.github.com/users/gjenkins8/following{/other_user} + gists_url: https://api.github.com/users/gjenkins8/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/gjenkins8 + id: 2787248 + login: gjenkins8 + node_id: MDQ6VXNlcjI3ODcyNDg= + organizations_url: https://api.github.com/users/gjenkins8/orgs + received_events_url: https://api.github.com/users/gjenkins8/received_events + repos_url: https://api.github.com/users/gjenkins8/repos + site_admin: false + starred_url: https://api.github.com/users/gjenkins8/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/gjenkins8/subscriptions + type: User + url: https://api.github.com/users/gjenkins8 + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/392164327 + - browser_download_url: https://github.com/helm/helm/releases/download/v4.1.4/helm-v4.1.4-darwin-arm64.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2026-04-09T06:00:08Z" + digest: sha256:8e70f07d0642ac1541953f612e295c506b711d5b7f6c6d0ef4a8ce0d19dc5df6 + download_count: 4 + id: 392164329 + label: null + name: helm-v4.1.4-darwin-arm64.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4XX_Pp + size: 265 + state: uploaded + updated_at: "2026-04-09T06:00:08Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/2787248?v=4 + events_url: https://api.github.com/users/gjenkins8/events{/privacy} + followers_url: https://api.github.com/users/gjenkins8/followers + following_url: https://api.github.com/users/gjenkins8/following{/other_user} + gists_url: https://api.github.com/users/gjenkins8/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/gjenkins8 + id: 2787248 + login: gjenkins8 + node_id: MDQ6VXNlcjI3ODcyNDg= + organizations_url: https://api.github.com/users/gjenkins8/orgs + received_events_url: https://api.github.com/users/gjenkins8/received_events + repos_url: https://api.github.com/users/gjenkins8/repos + site_admin: false + starred_url: https://api.github.com/users/gjenkins8/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/gjenkins8/subscriptions + type: User + url: https://api.github.com/users/gjenkins8 + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/392164329 + - browser_download_url: https://github.com/helm/helm/releases/download/v4.1.4/helm-v4.1.4-darwin-arm64.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2026-04-09T06:00:08Z" + digest: sha256:0c808236c18b1ef7c381efa198ac8a1803127afadce3567229dd40a079be344f + download_count: 4 + id: 392164332 + label: null + name: helm-v4.1.4-darwin-arm64.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4XX_Ps + size: 265 + state: uploaded + updated_at: "2026-04-09T06:00:08Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/2787248?v=4 + events_url: https://api.github.com/users/gjenkins8/events{/privacy} + followers_url: https://api.github.com/users/gjenkins8/followers + following_url: https://api.github.com/users/gjenkins8/following{/other_user} + gists_url: https://api.github.com/users/gjenkins8/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/gjenkins8 + id: 2787248 + login: gjenkins8 + node_id: MDQ6VXNlcjI3ODcyNDg= + organizations_url: https://api.github.com/users/gjenkins8/orgs + received_events_url: https://api.github.com/users/gjenkins8/received_events + repos_url: https://api.github.com/users/gjenkins8/repos + site_admin: false + starred_url: https://api.github.com/users/gjenkins8/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/gjenkins8/subscriptions + type: User + url: https://api.github.com/users/gjenkins8 + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/392164332 + - browser_download_url: https://github.com/helm/helm/releases/download/v4.1.4/helm-v4.1.4-linux-386.tar.gz.asc + content_type: application/octet-stream + created_at: "2026-04-09T06:00:08Z" + digest: sha256:352f9290f18972cb08d2f5682f745158812cccf99689e8a88834659e4c23f107 + download_count: 3 + id: 392164334 + label: null + name: helm-v4.1.4-linux-386.tar.gz.asc + node_id: RA_kwDOApspmc4XX_Pu + size: 265 + state: uploaded + updated_at: "2026-04-09T06:00:09Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/2787248?v=4 + events_url: https://api.github.com/users/gjenkins8/events{/privacy} + followers_url: https://api.github.com/users/gjenkins8/followers + following_url: https://api.github.com/users/gjenkins8/following{/other_user} + gists_url: https://api.github.com/users/gjenkins8/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/gjenkins8 + id: 2787248 + login: gjenkins8 + node_id: MDQ6VXNlcjI3ODcyNDg= + organizations_url: https://api.github.com/users/gjenkins8/orgs + received_events_url: https://api.github.com/users/gjenkins8/received_events + repos_url: https://api.github.com/users/gjenkins8/repos + site_admin: false + starred_url: https://api.github.com/users/gjenkins8/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/gjenkins8/subscriptions + type: User + url: https://api.github.com/users/gjenkins8 + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/392164334 + - browser_download_url: https://github.com/helm/helm/releases/download/v4.1.4/helm-v4.1.4-linux-386.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2026-04-09T06:00:09Z" + digest: sha256:03c4be1db258437aae29a9fddb63f09cd26facdc9917928f07667141e4688270 + download_count: 4 + id: 392164336 + label: null + name: helm-v4.1.4-linux-386.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4XX_Pw + size: 265 + state: uploaded + updated_at: "2026-04-09T06:00:09Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/2787248?v=4 + events_url: https://api.github.com/users/gjenkins8/events{/privacy} + followers_url: https://api.github.com/users/gjenkins8/followers + following_url: https://api.github.com/users/gjenkins8/following{/other_user} + gists_url: https://api.github.com/users/gjenkins8/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/gjenkins8 + id: 2787248 + login: gjenkins8 + node_id: MDQ6VXNlcjI3ODcyNDg= + organizations_url: https://api.github.com/users/gjenkins8/orgs + received_events_url: https://api.github.com/users/gjenkins8/received_events + repos_url: https://api.github.com/users/gjenkins8/repos + site_admin: false + starred_url: https://api.github.com/users/gjenkins8/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/gjenkins8/subscriptions + type: User + url: https://api.github.com/users/gjenkins8 + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/392164336 + - browser_download_url: https://github.com/helm/helm/releases/download/v4.1.4/helm-v4.1.4-linux-386.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2026-04-09T06:00:09Z" + digest: sha256:063a7f2faa36d7be37fe361ec509061b5493b5dca51174d9d291f17366680709 + download_count: 4 + id: 392164338 + label: null + name: helm-v4.1.4-linux-386.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4XX_Py + size: 265 + state: uploaded + updated_at: "2026-04-09T06:00:10Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/2787248?v=4 + events_url: https://api.github.com/users/gjenkins8/events{/privacy} + followers_url: https://api.github.com/users/gjenkins8/followers + following_url: https://api.github.com/users/gjenkins8/following{/other_user} + gists_url: https://api.github.com/users/gjenkins8/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/gjenkins8 + id: 2787248 + login: gjenkins8 + node_id: MDQ6VXNlcjI3ODcyNDg= + organizations_url: https://api.github.com/users/gjenkins8/orgs + received_events_url: https://api.github.com/users/gjenkins8/received_events + repos_url: https://api.github.com/users/gjenkins8/repos + site_admin: false + starred_url: https://api.github.com/users/gjenkins8/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/gjenkins8/subscriptions + type: User + url: https://api.github.com/users/gjenkins8 + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/392164338 + - browser_download_url: https://github.com/helm/helm/releases/download/v4.1.4/helm-v4.1.4-linux-amd64.tar.gz.asc + content_type: application/octet-stream + created_at: "2026-04-09T06:00:10Z" + digest: sha256:3d07ca2ee9697589dc072e8da4b8510681e30a79db1f57ae5f143d1cd601efdd + download_count: 19 + id: 392164344 + label: null + name: helm-v4.1.4-linux-amd64.tar.gz.asc + node_id: RA_kwDOApspmc4XX_P4 + size: 265 + state: uploaded + updated_at: "2026-04-09T06:00:10Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/2787248?v=4 + events_url: https://api.github.com/users/gjenkins8/events{/privacy} + followers_url: https://api.github.com/users/gjenkins8/followers + following_url: https://api.github.com/users/gjenkins8/following{/other_user} + gists_url: https://api.github.com/users/gjenkins8/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/gjenkins8 + id: 2787248 + login: gjenkins8 + node_id: MDQ6VXNlcjI3ODcyNDg= + organizations_url: https://api.github.com/users/gjenkins8/orgs + received_events_url: https://api.github.com/users/gjenkins8/received_events + repos_url: https://api.github.com/users/gjenkins8/repos + site_admin: false + starred_url: https://api.github.com/users/gjenkins8/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/gjenkins8/subscriptions + type: User + url: https://api.github.com/users/gjenkins8 + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/392164344 + - browser_download_url: https://github.com/helm/helm/releases/download/v4.1.4/helm-v4.1.4-linux-amd64.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2026-04-09T06:00:10Z" + digest: sha256:42d4c8d61a69d47b07853472e8ad276f988c1661aaa26bc39d71cd8f4d11f7ae + download_count: 18 + id: 392164347 + label: null + name: helm-v4.1.4-linux-amd64.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4XX_P7 + size: 265 + state: uploaded + updated_at: "2026-04-09T06:00:10Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/2787248?v=4 + events_url: https://api.github.com/users/gjenkins8/events{/privacy} + followers_url: https://api.github.com/users/gjenkins8/followers + following_url: https://api.github.com/users/gjenkins8/following{/other_user} + gists_url: https://api.github.com/users/gjenkins8/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/gjenkins8 + id: 2787248 + login: gjenkins8 + node_id: MDQ6VXNlcjI3ODcyNDg= + organizations_url: https://api.github.com/users/gjenkins8/orgs + received_events_url: https://api.github.com/users/gjenkins8/received_events + repos_url: https://api.github.com/users/gjenkins8/repos + site_admin: false + starred_url: https://api.github.com/users/gjenkins8/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/gjenkins8/subscriptions + type: User + url: https://api.github.com/users/gjenkins8 + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/392164347 + - browser_download_url: https://github.com/helm/helm/releases/download/v4.1.4/helm-v4.1.4-linux-amd64.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2026-04-09T06:00:10Z" + digest: sha256:fe507554b5c5af0afa091c729a1edb389641aefe815715c63063fa11447644b7 + download_count: 4 + id: 392164349 + label: null + name: helm-v4.1.4-linux-amd64.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4XX_P9 + size: 265 + state: uploaded + updated_at: "2026-04-09T06:00:11Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/2787248?v=4 + events_url: https://api.github.com/users/gjenkins8/events{/privacy} + followers_url: https://api.github.com/users/gjenkins8/followers + following_url: https://api.github.com/users/gjenkins8/following{/other_user} + gists_url: https://api.github.com/users/gjenkins8/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/gjenkins8 + id: 2787248 + login: gjenkins8 + node_id: MDQ6VXNlcjI3ODcyNDg= + organizations_url: https://api.github.com/users/gjenkins8/orgs + received_events_url: https://api.github.com/users/gjenkins8/received_events + repos_url: https://api.github.com/users/gjenkins8/repos + site_admin: false + starred_url: https://api.github.com/users/gjenkins8/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/gjenkins8/subscriptions + type: User + url: https://api.github.com/users/gjenkins8 + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/392164349 + - browser_download_url: https://github.com/helm/helm/releases/download/v4.1.4/helm-v4.1.4-linux-arm.tar.gz.asc + content_type: application/octet-stream + created_at: "2026-04-09T06:00:11Z" + digest: sha256:67b4d2370aff2242d1aa89cef647db0153b9298d7a8307a98f650be78d2eef33 + download_count: 3 + id: 392164351 + label: null + name: helm-v4.1.4-linux-arm.tar.gz.asc + node_id: RA_kwDOApspmc4XX_P_ + size: 265 + state: uploaded + updated_at: "2026-04-09T06:00:11Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/2787248?v=4 + events_url: https://api.github.com/users/gjenkins8/events{/privacy} + followers_url: https://api.github.com/users/gjenkins8/followers + following_url: https://api.github.com/users/gjenkins8/following{/other_user} + gists_url: https://api.github.com/users/gjenkins8/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/gjenkins8 + id: 2787248 + login: gjenkins8 + node_id: MDQ6VXNlcjI3ODcyNDg= + organizations_url: https://api.github.com/users/gjenkins8/orgs + received_events_url: https://api.github.com/users/gjenkins8/received_events + repos_url: https://api.github.com/users/gjenkins8/repos + site_admin: false + starred_url: https://api.github.com/users/gjenkins8/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/gjenkins8/subscriptions + type: User + url: https://api.github.com/users/gjenkins8 + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/392164351 + - browser_download_url: https://github.com/helm/helm/releases/download/v4.1.4/helm-v4.1.4-linux-arm.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2026-04-09T06:00:11Z" + digest: sha256:8d9f35075f7e93722e8cc52dfc2967c65a5f866269368e3da721506e76b42e37 + download_count: 4 + id: 392164352 + label: null + name: helm-v4.1.4-linux-arm.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4XX_QA + size: 265 + state: uploaded + updated_at: "2026-04-09T06:00:11Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/2787248?v=4 + events_url: https://api.github.com/users/gjenkins8/events{/privacy} + followers_url: https://api.github.com/users/gjenkins8/followers + following_url: https://api.github.com/users/gjenkins8/following{/other_user} + gists_url: https://api.github.com/users/gjenkins8/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/gjenkins8 + id: 2787248 + login: gjenkins8 + node_id: MDQ6VXNlcjI3ODcyNDg= + organizations_url: https://api.github.com/users/gjenkins8/orgs + received_events_url: https://api.github.com/users/gjenkins8/received_events + repos_url: https://api.github.com/users/gjenkins8/repos + site_admin: false + starred_url: https://api.github.com/users/gjenkins8/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/gjenkins8/subscriptions + type: User + url: https://api.github.com/users/gjenkins8 + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/392164352 + - browser_download_url: https://github.com/helm/helm/releases/download/v4.1.4/helm-v4.1.4-linux-arm.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2026-04-09T06:00:11Z" + digest: sha256:9dbef1d8457b41a0a7b67f068e83f64bc0d17420933065344062836a11327b85 + download_count: 4 + id: 392164360 + label: null + name: helm-v4.1.4-linux-arm.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4XX_QI + size: 265 + state: uploaded + updated_at: "2026-04-09T06:00:12Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/2787248?v=4 + events_url: https://api.github.com/users/gjenkins8/events{/privacy} + followers_url: https://api.github.com/users/gjenkins8/followers + following_url: https://api.github.com/users/gjenkins8/following{/other_user} + gists_url: https://api.github.com/users/gjenkins8/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/gjenkins8 + id: 2787248 + login: gjenkins8 + node_id: MDQ6VXNlcjI3ODcyNDg= + organizations_url: https://api.github.com/users/gjenkins8/orgs + received_events_url: https://api.github.com/users/gjenkins8/received_events + repos_url: https://api.github.com/users/gjenkins8/repos + site_admin: false + starred_url: https://api.github.com/users/gjenkins8/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/gjenkins8/subscriptions + type: User + url: https://api.github.com/users/gjenkins8 + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/392164360 + - browser_download_url: https://github.com/helm/helm/releases/download/v4.1.4/helm-v4.1.4-linux-arm64.tar.gz.asc + content_type: application/octet-stream + created_at: "2026-04-09T06:00:12Z" + digest: sha256:f7df3e644c30b667bc08a157579308c203bf89c53db058c9f8d7ef2c4ca570ea + download_count: 6 + id: 392164362 + label: null + name: helm-v4.1.4-linux-arm64.tar.gz.asc + node_id: RA_kwDOApspmc4XX_QK + size: 265 + state: uploaded + updated_at: "2026-04-09T06:00:12Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/2787248?v=4 + events_url: https://api.github.com/users/gjenkins8/events{/privacy} + followers_url: https://api.github.com/users/gjenkins8/followers + following_url: https://api.github.com/users/gjenkins8/following{/other_user} + gists_url: https://api.github.com/users/gjenkins8/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/gjenkins8 + id: 2787248 + login: gjenkins8 + node_id: MDQ6VXNlcjI3ODcyNDg= + organizations_url: https://api.github.com/users/gjenkins8/orgs + received_events_url: https://api.github.com/users/gjenkins8/received_events + repos_url: https://api.github.com/users/gjenkins8/repos + site_admin: false + starred_url: https://api.github.com/users/gjenkins8/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/gjenkins8/subscriptions + type: User + url: https://api.github.com/users/gjenkins8 + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/392164362 + - browser_download_url: https://github.com/helm/helm/releases/download/v4.1.4/helm-v4.1.4-linux-arm64.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2026-04-09T06:00:12Z" + digest: sha256:490f645cb7e5b1d9b27697926965302914771105c322bb107e3a0b496822875e + download_count: 7 + id: 392164364 + label: null + name: helm-v4.1.4-linux-arm64.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4XX_QM + size: 265 + state: uploaded + updated_at: "2026-04-09T06:00:12Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/2787248?v=4 + events_url: https://api.github.com/users/gjenkins8/events{/privacy} + followers_url: https://api.github.com/users/gjenkins8/followers + following_url: https://api.github.com/users/gjenkins8/following{/other_user} + gists_url: https://api.github.com/users/gjenkins8/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/gjenkins8 + id: 2787248 + login: gjenkins8 + node_id: MDQ6VXNlcjI3ODcyNDg= + organizations_url: https://api.github.com/users/gjenkins8/orgs + received_events_url: https://api.github.com/users/gjenkins8/received_events + repos_url: https://api.github.com/users/gjenkins8/repos + site_admin: false + starred_url: https://api.github.com/users/gjenkins8/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/gjenkins8/subscriptions + type: User + url: https://api.github.com/users/gjenkins8 + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/392164364 + - browser_download_url: https://github.com/helm/helm/releases/download/v4.1.4/helm-v4.1.4-linux-arm64.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2026-04-09T06:00:12Z" + digest: sha256:9408c3cf1d45542270fe8f95b7ae0a82b90453029d09df97cb23e5ef1bb355e3 + download_count: 4 + id: 392164368 + label: null + name: helm-v4.1.4-linux-arm64.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4XX_QQ + size: 265 + state: uploaded + updated_at: "2026-04-09T06:00:13Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/2787248?v=4 + events_url: https://api.github.com/users/gjenkins8/events{/privacy} + followers_url: https://api.github.com/users/gjenkins8/followers + following_url: https://api.github.com/users/gjenkins8/following{/other_user} + gists_url: https://api.github.com/users/gjenkins8/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/gjenkins8 + id: 2787248 + login: gjenkins8 + node_id: MDQ6VXNlcjI3ODcyNDg= + organizations_url: https://api.github.com/users/gjenkins8/orgs + received_events_url: https://api.github.com/users/gjenkins8/received_events + repos_url: https://api.github.com/users/gjenkins8/repos + site_admin: false + starred_url: https://api.github.com/users/gjenkins8/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/gjenkins8/subscriptions + type: User + url: https://api.github.com/users/gjenkins8 + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/392164368 + - browser_download_url: https://github.com/helm/helm/releases/download/v4.1.4/helm-v4.1.4-linux-ppc64le.tar.gz.asc + content_type: application/octet-stream + created_at: "2026-04-09T06:00:13Z" + digest: sha256:53f4212c6f9cc76019ccabbc7817fb47e69d346b3f7376bee2c15491d2f6662f + download_count: 3 + id: 392164371 + label: null + name: helm-v4.1.4-linux-ppc64le.tar.gz.asc + node_id: RA_kwDOApspmc4XX_QT + size: 265 + state: uploaded + updated_at: "2026-04-09T06:00:13Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/2787248?v=4 + events_url: https://api.github.com/users/gjenkins8/events{/privacy} + followers_url: https://api.github.com/users/gjenkins8/followers + following_url: https://api.github.com/users/gjenkins8/following{/other_user} + gists_url: https://api.github.com/users/gjenkins8/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/gjenkins8 + id: 2787248 + login: gjenkins8 + node_id: MDQ6VXNlcjI3ODcyNDg= + organizations_url: https://api.github.com/users/gjenkins8/orgs + received_events_url: https://api.github.com/users/gjenkins8/received_events + repos_url: https://api.github.com/users/gjenkins8/repos + site_admin: false + starred_url: https://api.github.com/users/gjenkins8/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/gjenkins8/subscriptions + type: User + url: https://api.github.com/users/gjenkins8 + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/392164371 + - browser_download_url: https://github.com/helm/helm/releases/download/v4.1.4/helm-v4.1.4-linux-ppc64le.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2026-04-09T06:00:13Z" + digest: sha256:bd0da113551040bd5fdb221ebde4a911951483cec885a046c56db9e1838934ef + download_count: 4 + id: 392164373 + label: null + name: helm-v4.1.4-linux-ppc64le.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4XX_QV + size: 265 + state: uploaded + updated_at: "2026-04-09T06:00:13Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/2787248?v=4 + events_url: https://api.github.com/users/gjenkins8/events{/privacy} + followers_url: https://api.github.com/users/gjenkins8/followers + following_url: https://api.github.com/users/gjenkins8/following{/other_user} + gists_url: https://api.github.com/users/gjenkins8/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/gjenkins8 + id: 2787248 + login: gjenkins8 + node_id: MDQ6VXNlcjI3ODcyNDg= + organizations_url: https://api.github.com/users/gjenkins8/orgs + received_events_url: https://api.github.com/users/gjenkins8/received_events + repos_url: https://api.github.com/users/gjenkins8/repos + site_admin: false + starred_url: https://api.github.com/users/gjenkins8/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/gjenkins8/subscriptions + type: User + url: https://api.github.com/users/gjenkins8 + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/392164373 + - browser_download_url: https://github.com/helm/helm/releases/download/v4.1.4/helm-v4.1.4-linux-ppc64le.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2026-04-09T06:00:13Z" + digest: sha256:84bb09229c025591a0e41c195eb6dd13087161a8f08272f99a4c6d92714a6898 + download_count: 4 + id: 392164377 + label: null + name: helm-v4.1.4-linux-ppc64le.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4XX_QZ + size: 265 + state: uploaded + updated_at: "2026-04-09T06:00:14Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/2787248?v=4 + events_url: https://api.github.com/users/gjenkins8/events{/privacy} + followers_url: https://api.github.com/users/gjenkins8/followers + following_url: https://api.github.com/users/gjenkins8/following{/other_user} + gists_url: https://api.github.com/users/gjenkins8/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/gjenkins8 + id: 2787248 + login: gjenkins8 + node_id: MDQ6VXNlcjI3ODcyNDg= + organizations_url: https://api.github.com/users/gjenkins8/orgs + received_events_url: https://api.github.com/users/gjenkins8/received_events + repos_url: https://api.github.com/users/gjenkins8/repos + site_admin: false + starred_url: https://api.github.com/users/gjenkins8/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/gjenkins8/subscriptions + type: User + url: https://api.github.com/users/gjenkins8 + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/392164377 + - browser_download_url: https://github.com/helm/helm/releases/download/v4.1.4/helm-v4.1.4-linux-riscv64.tar.gz.asc + content_type: application/octet-stream + created_at: "2026-04-09T06:00:14Z" + digest: sha256:31e2659edb7244a2c71b26f21c2768a16feadeb85244d4800606ad5f85813dd9 + download_count: 3 + id: 392164380 + label: null + name: helm-v4.1.4-linux-riscv64.tar.gz.asc + node_id: RA_kwDOApspmc4XX_Qc + size: 265 + state: uploaded + updated_at: "2026-04-09T06:00:14Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/2787248?v=4 + events_url: https://api.github.com/users/gjenkins8/events{/privacy} + followers_url: https://api.github.com/users/gjenkins8/followers + following_url: https://api.github.com/users/gjenkins8/following{/other_user} + gists_url: https://api.github.com/users/gjenkins8/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/gjenkins8 + id: 2787248 + login: gjenkins8 + node_id: MDQ6VXNlcjI3ODcyNDg= + organizations_url: https://api.github.com/users/gjenkins8/orgs + received_events_url: https://api.github.com/users/gjenkins8/received_events + repos_url: https://api.github.com/users/gjenkins8/repos + site_admin: false + starred_url: https://api.github.com/users/gjenkins8/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/gjenkins8/subscriptions + type: User + url: https://api.github.com/users/gjenkins8 + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/392164380 + - browser_download_url: https://github.com/helm/helm/releases/download/v4.1.4/helm-v4.1.4-linux-riscv64.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2026-04-09T06:00:14Z" + digest: sha256:abe3f45dd4108c83fcf55f0c3273935f698c39b223047d889bc87689aa78bf28 + download_count: 4 + id: 392164382 + label: null + name: helm-v4.1.4-linux-riscv64.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4XX_Qe + size: 265 + state: uploaded + updated_at: "2026-04-09T06:00:14Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/2787248?v=4 + events_url: https://api.github.com/users/gjenkins8/events{/privacy} + followers_url: https://api.github.com/users/gjenkins8/followers + following_url: https://api.github.com/users/gjenkins8/following{/other_user} + gists_url: https://api.github.com/users/gjenkins8/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/gjenkins8 + id: 2787248 + login: gjenkins8 + node_id: MDQ6VXNlcjI3ODcyNDg= + organizations_url: https://api.github.com/users/gjenkins8/orgs + received_events_url: https://api.github.com/users/gjenkins8/received_events + repos_url: https://api.github.com/users/gjenkins8/repos + site_admin: false + starred_url: https://api.github.com/users/gjenkins8/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/gjenkins8/subscriptions + type: User + url: https://api.github.com/users/gjenkins8 + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/392164382 + - browser_download_url: https://github.com/helm/helm/releases/download/v4.1.4/helm-v4.1.4-linux-riscv64.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2026-04-09T06:00:14Z" + digest: sha256:b1c7562096e0a6b4e343d9e82f3a5c98ac42c2290b11e156519297be15e84bef + download_count: 4 + id: 392164385 + label: null + name: helm-v4.1.4-linux-riscv64.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4XX_Qh + size: 265 + state: uploaded + updated_at: "2026-04-09T06:00:15Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/2787248?v=4 + events_url: https://api.github.com/users/gjenkins8/events{/privacy} + followers_url: https://api.github.com/users/gjenkins8/followers + following_url: https://api.github.com/users/gjenkins8/following{/other_user} + gists_url: https://api.github.com/users/gjenkins8/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/gjenkins8 + id: 2787248 + login: gjenkins8 + node_id: MDQ6VXNlcjI3ODcyNDg= + organizations_url: https://api.github.com/users/gjenkins8/orgs + received_events_url: https://api.github.com/users/gjenkins8/received_events + repos_url: https://api.github.com/users/gjenkins8/repos + site_admin: false + starred_url: https://api.github.com/users/gjenkins8/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/gjenkins8/subscriptions + type: User + url: https://api.github.com/users/gjenkins8 + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/392164385 + - browser_download_url: https://github.com/helm/helm/releases/download/v4.1.4/helm-v4.1.4-linux-s390x.tar.gz.asc + content_type: application/octet-stream + created_at: "2026-04-09T06:00:15Z" + digest: sha256:3f77cd31676fdc5681d71893e86d950cd466e0be9a5345e45bcf48306695e991 + download_count: 3 + id: 392164388 + label: null + name: helm-v4.1.4-linux-s390x.tar.gz.asc + node_id: RA_kwDOApspmc4XX_Qk + size: 265 + state: uploaded + updated_at: "2026-04-09T06:00:15Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/2787248?v=4 + events_url: https://api.github.com/users/gjenkins8/events{/privacy} + followers_url: https://api.github.com/users/gjenkins8/followers + following_url: https://api.github.com/users/gjenkins8/following{/other_user} + gists_url: https://api.github.com/users/gjenkins8/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/gjenkins8 + id: 2787248 + login: gjenkins8 + node_id: MDQ6VXNlcjI3ODcyNDg= + organizations_url: https://api.github.com/users/gjenkins8/orgs + received_events_url: https://api.github.com/users/gjenkins8/received_events + repos_url: https://api.github.com/users/gjenkins8/repos + site_admin: false + starred_url: https://api.github.com/users/gjenkins8/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/gjenkins8/subscriptions + type: User + url: https://api.github.com/users/gjenkins8 + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/392164388 + - browser_download_url: https://github.com/helm/helm/releases/download/v4.1.4/helm-v4.1.4-linux-s390x.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2026-04-09T06:00:15Z" + digest: sha256:4cc9a0947917709c2e012b3b268fea9518ad8e9b22860a61fa9de0eedb8c656c + download_count: 4 + id: 392164389 + label: null + name: helm-v4.1.4-linux-s390x.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4XX_Ql + size: 265 + state: uploaded + updated_at: "2026-04-09T06:00:15Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/2787248?v=4 + events_url: https://api.github.com/users/gjenkins8/events{/privacy} + followers_url: https://api.github.com/users/gjenkins8/followers + following_url: https://api.github.com/users/gjenkins8/following{/other_user} + gists_url: https://api.github.com/users/gjenkins8/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/gjenkins8 + id: 2787248 + login: gjenkins8 + node_id: MDQ6VXNlcjI3ODcyNDg= + organizations_url: https://api.github.com/users/gjenkins8/orgs + received_events_url: https://api.github.com/users/gjenkins8/received_events + repos_url: https://api.github.com/users/gjenkins8/repos + site_admin: false + starred_url: https://api.github.com/users/gjenkins8/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/gjenkins8/subscriptions + type: User + url: https://api.github.com/users/gjenkins8 + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/392164389 + - browser_download_url: https://github.com/helm/helm/releases/download/v4.1.4/helm-v4.1.4-linux-s390x.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2026-04-09T06:00:15Z" + digest: sha256:10c954392905809ed8e35ed11c23a258ca9b9d88915a7195eccc72f89ad14b38 + download_count: 4 + id: 392164393 + label: null + name: helm-v4.1.4-linux-s390x.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4XX_Qp + size: 265 + state: uploaded + updated_at: "2026-04-09T06:00:16Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/2787248?v=4 + events_url: https://api.github.com/users/gjenkins8/events{/privacy} + followers_url: https://api.github.com/users/gjenkins8/followers + following_url: https://api.github.com/users/gjenkins8/following{/other_user} + gists_url: https://api.github.com/users/gjenkins8/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/gjenkins8 + id: 2787248 + login: gjenkins8 + node_id: MDQ6VXNlcjI3ODcyNDg= + organizations_url: https://api.github.com/users/gjenkins8/orgs + received_events_url: https://api.github.com/users/gjenkins8/received_events + repos_url: https://api.github.com/users/gjenkins8/repos + site_admin: false + starred_url: https://api.github.com/users/gjenkins8/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/gjenkins8/subscriptions + type: User + url: https://api.github.com/users/gjenkins8 + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/392164393 + - browser_download_url: https://github.com/helm/helm/releases/download/v4.1.4/helm-v4.1.4-windows-amd64.zip.asc + content_type: application/octet-stream + created_at: "2026-04-09T06:00:16Z" + digest: sha256:2c91e40090e9580a59cac4b807ea7deb3c5fa406977860abe36ab2f749f3b290 + download_count: 5 + id: 392164394 + label: null + name: helm-v4.1.4-windows-amd64.zip.asc + node_id: RA_kwDOApspmc4XX_Qq + size: 265 + state: uploaded + updated_at: "2026-04-09T06:00:16Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/2787248?v=4 + events_url: https://api.github.com/users/gjenkins8/events{/privacy} + followers_url: https://api.github.com/users/gjenkins8/followers + following_url: https://api.github.com/users/gjenkins8/following{/other_user} + gists_url: https://api.github.com/users/gjenkins8/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/gjenkins8 + id: 2787248 + login: gjenkins8 + node_id: MDQ6VXNlcjI3ODcyNDg= + organizations_url: https://api.github.com/users/gjenkins8/orgs + received_events_url: https://api.github.com/users/gjenkins8/received_events + repos_url: https://api.github.com/users/gjenkins8/repos + site_admin: false + starred_url: https://api.github.com/users/gjenkins8/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/gjenkins8/subscriptions + type: User + url: https://api.github.com/users/gjenkins8 + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/392164394 + - browser_download_url: https://github.com/helm/helm/releases/download/v4.1.4/helm-v4.1.4-windows-amd64.zip.sha256.asc + content_type: application/octet-stream + created_at: "2026-04-09T06:00:16Z" + digest: sha256:13ca8a8479dde3613fff46bf4bd0e19f220c6891361ae4ac0367cef22d884955 + download_count: 4 + id: 392164408 + label: null + name: helm-v4.1.4-windows-amd64.zip.sha256.asc + node_id: RA_kwDOApspmc4XX_Q4 + size: 265 + state: uploaded + updated_at: "2026-04-09T06:00:16Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/2787248?v=4 + events_url: https://api.github.com/users/gjenkins8/events{/privacy} + followers_url: https://api.github.com/users/gjenkins8/followers + following_url: https://api.github.com/users/gjenkins8/following{/other_user} + gists_url: https://api.github.com/users/gjenkins8/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/gjenkins8 + id: 2787248 + login: gjenkins8 + node_id: MDQ6VXNlcjI3ODcyNDg= + organizations_url: https://api.github.com/users/gjenkins8/orgs + received_events_url: https://api.github.com/users/gjenkins8/received_events + repos_url: https://api.github.com/users/gjenkins8/repos + site_admin: false + starred_url: https://api.github.com/users/gjenkins8/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/gjenkins8/subscriptions + type: User + url: https://api.github.com/users/gjenkins8 + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/392164408 + - browser_download_url: https://github.com/helm/helm/releases/download/v4.1.4/helm-v4.1.4-windows-amd64.zip.sha256sum.asc + content_type: application/octet-stream + created_at: "2026-04-09T06:00:16Z" + digest: sha256:7c8073fb14900f14a8292edf7784fc23f0d9f701ac41d6270fb352a36ecb61af + download_count: 4 + id: 392164415 + label: null + name: helm-v4.1.4-windows-amd64.zip.sha256sum.asc + node_id: RA_kwDOApspmc4XX_Q_ + size: 265 + state: uploaded + updated_at: "2026-04-09T06:00:17Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/2787248?v=4 + events_url: https://api.github.com/users/gjenkins8/events{/privacy} + followers_url: https://api.github.com/users/gjenkins8/followers + following_url: https://api.github.com/users/gjenkins8/following{/other_user} + gists_url: https://api.github.com/users/gjenkins8/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/gjenkins8 + id: 2787248 + login: gjenkins8 + node_id: MDQ6VXNlcjI3ODcyNDg= + organizations_url: https://api.github.com/users/gjenkins8/orgs + received_events_url: https://api.github.com/users/gjenkins8/received_events + repos_url: https://api.github.com/users/gjenkins8/repos + site_admin: false + starred_url: https://api.github.com/users/gjenkins8/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/gjenkins8/subscriptions + type: User + url: https://api.github.com/users/gjenkins8 + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/392164415 + - browser_download_url: https://github.com/helm/helm/releases/download/v4.1.4/helm-v4.1.4-windows-arm64.zip.asc + content_type: application/octet-stream + created_at: "2026-04-09T06:00:17Z" + digest: sha256:1332d87d952e30c9c4b256fb72870b9b220f457e5d534c83b15ad14b5f76e0da + download_count: 3 + id: 392164417 + label: null + name: helm-v4.1.4-windows-arm64.zip.asc + node_id: RA_kwDOApspmc4XX_RB + size: 265 + state: uploaded + updated_at: "2026-04-09T06:00:17Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/2787248?v=4 + events_url: https://api.github.com/users/gjenkins8/events{/privacy} + followers_url: https://api.github.com/users/gjenkins8/followers + following_url: https://api.github.com/users/gjenkins8/following{/other_user} + gists_url: https://api.github.com/users/gjenkins8/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/gjenkins8 + id: 2787248 + login: gjenkins8 + node_id: MDQ6VXNlcjI3ODcyNDg= + organizations_url: https://api.github.com/users/gjenkins8/orgs + received_events_url: https://api.github.com/users/gjenkins8/received_events + repos_url: https://api.github.com/users/gjenkins8/repos + site_admin: false + starred_url: https://api.github.com/users/gjenkins8/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/gjenkins8/subscriptions + type: User + url: https://api.github.com/users/gjenkins8 + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/392164417 + - browser_download_url: https://github.com/helm/helm/releases/download/v4.1.4/helm-v4.1.4-windows-arm64.zip.sha256.asc + content_type: application/octet-stream + created_at: "2026-04-09T06:00:17Z" + digest: sha256:01f8a7afda03cd69334787252858bb891e67bfeb4b89ba145db4e3821259c883 + download_count: 4 + id: 392164422 + label: null + name: helm-v4.1.4-windows-arm64.zip.sha256.asc + node_id: RA_kwDOApspmc4XX_RG + size: 265 + state: uploaded + updated_at: "2026-04-09T06:00:17Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/2787248?v=4 + events_url: https://api.github.com/users/gjenkins8/events{/privacy} + followers_url: https://api.github.com/users/gjenkins8/followers + following_url: https://api.github.com/users/gjenkins8/following{/other_user} + gists_url: https://api.github.com/users/gjenkins8/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/gjenkins8 + id: 2787248 + login: gjenkins8 + node_id: MDQ6VXNlcjI3ODcyNDg= + organizations_url: https://api.github.com/users/gjenkins8/orgs + received_events_url: https://api.github.com/users/gjenkins8/received_events + repos_url: https://api.github.com/users/gjenkins8/repos + site_admin: false + starred_url: https://api.github.com/users/gjenkins8/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/gjenkins8/subscriptions + type: User + url: https://api.github.com/users/gjenkins8 + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/392164422 + - browser_download_url: https://github.com/helm/helm/releases/download/v4.1.4/helm-v4.1.4-windows-arm64.zip.sha256sum.asc + content_type: application/octet-stream + created_at: "2026-04-09T06:00:17Z" + digest: sha256:7e2733ba50bdbaaee9da17c22391714498a27f5e6a24490bb2b165af426d0c67 + download_count: 4 + id: 392164435 + label: null + name: helm-v4.1.4-windows-arm64.zip.sha256sum.asc + node_id: RA_kwDOApspmc4XX_RT + size: 265 + state: uploaded + updated_at: "2026-04-09T06:00:18Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/2787248?v=4 + events_url: https://api.github.com/users/gjenkins8/events{/privacy} + followers_url: https://api.github.com/users/gjenkins8/followers + following_url: https://api.github.com/users/gjenkins8/following{/other_user} + gists_url: https://api.github.com/users/gjenkins8/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/gjenkins8 + id: 2787248 + login: gjenkins8 + node_id: MDQ6VXNlcjI3ODcyNDg= + organizations_url: https://api.github.com/users/gjenkins8/orgs + received_events_url: https://api.github.com/users/gjenkins8/received_events + repos_url: https://api.github.com/users/gjenkins8/repos + site_admin: false + starred_url: https://api.github.com/users/gjenkins8/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/gjenkins8/subscriptions + type: User + url: https://api.github.com/users/gjenkins8 + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/392164435 + assets_url: https://api.github.com/repos/helm/helm/releases/306902115/assets + author: + avatar_url: https://avatars.githubusercontent.com/u/2787248?v=4 + events_url: https://api.github.com/users/gjenkins8/events{/privacy} + followers_url: https://api.github.com/users/gjenkins8/followers + following_url: https://api.github.com/users/gjenkins8/following{/other_user} + gists_url: https://api.github.com/users/gjenkins8/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/gjenkins8 + id: 2787248 + login: gjenkins8 + node_id: MDQ6VXNlcjI3ODcyNDg= + organizations_url: https://api.github.com/users/gjenkins8/orgs + received_events_url: https://api.github.com/users/gjenkins8/received_events + repos_url: https://api.github.com/users/gjenkins8/repos + site_admin: false + starred_url: https://api.github.com/users/gjenkins8/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/gjenkins8/subscriptions + type: User + url: https://api.github.com/users/gjenkins8 + user_view_type: public + body: "Helm v4.1.4 is a security fix patch release. Users are encouraged to + upgrade for the best experience.\r\n\r\nThe community keeps growing, and we'd + love to see you there!\r\n\r\n- Join the discussion in [Kubernetes Slack](https://kubernetes.slack.com):\r\n + \ - for questions and just to hang out\r\n - for discussing PRs, code, + and bugs\r\n- Hang out at the Public Developer Call: Thursday, 9:30 Pacific + via [Zoom](https://zoom.us/j/696660622)\r\n- Test, debug, and contribute charts: + [ArtifactHub/packages](https://artifacthub.io/packages/search?kind=0)\r\n\r\n## + Security fixes\r\n\r\n- [GHSA-hr2v-4r36-88hr ](https://github.com/helm/helm/security/advisories/GHSA-hr2v-4r36-88hr) + Helm Chart extraction output directory collapse via `Chart.yaml` name dot-segment\r\n- + [GHSA-q5jf-9vfq-h4h7](https://github.com/helm/helm/security/advisories/GHSA-q5jf-9vfq-h4h7) + Plugin verification fails open when `.prov` is missing, allowing unsigned + plugin install\r\n- [GHSA-vmx8-mqv2-9gmg](https://github.com/helm/helm/security/advisories/GHSA-vmx8-mqv2-9gmg) + Path traversal in plugin metadata version enables arbitrary file write outside + Helm plugin directory\r\n\r\nA big thank you to the reporters of these issues + (@maru1009, @1seal). \r\n\r\n## Installation and Upgrading\r\n\r\nDownload + Helm v4.1.4. The common platform binaries are here:\r\n\r\n- [MacOS amd64](https://get.helm.sh/helm-v4.1.4-darwin-amd64.tar.gz) + ([checksum](https://get.helm.sh/helm-v4.1.4-darwin-amd64.tar.gz.sha256sum) + / abf09c8503ad1d8ef76d3737a058c3456a998aae5f5966fce4bb3031aeb1654e)\r\n- [MacOS + arm64](https://get.helm.sh/helm-v4.1.4-darwin-arm64.tar.gz) ([checksum](https://get.helm.sh/helm-v4.1.4-darwin-arm64.tar.gz.sha256sum) + / 7c2eca678e8001fa863cdf8cbf6ac1b3799f9404a89eb55c08260ef5732e658d)\r\n- [Linux + amd64](https://get.helm.sh/helm-v4.1.4-linux-amd64.tar.gz) ([checksum](https://get.helm.sh/helm-v4.1.4-linux-amd64.tar.gz.sha256sum) + / 70b2c30a19da4db264dfd68c8a3664e05093a361cefd89572ffb36f8abfa3d09)\r\n- [Linux + arm](https://get.helm.sh/helm-v4.1.4-linux-arm.tar.gz) ([checksum](https://get.helm.sh/helm-v4.1.4-linux-arm.tar.gz.sha256sum) + / c4a7d37032379cc7e82c9c76487d1041b193c9a0fbb4b8f3790230899b830a4f)\r\n- [Linux + arm64](https://get.helm.sh/helm-v4.1.4-linux-arm64.tar.gz) ([checksum](https://get.helm.sh/helm-v4.1.4-linux-arm64.tar.gz.sha256sum) + / 13d03672be289045d2ff00e4e345d61de1c6f21c1257a45955a30e8ae036d8f1)\r\n- [Linux + i386](https://get.helm.sh/helm-v4.1.4-linux-386.tar.gz) ([checksum](https://get.helm.sh/helm-v4.1.4-linux-386.tar.gz.sha256sum) + / 3e9bcefb85293854367bea931d669bb742974bbd978b3960df921ed129ff40f9)\r\n- [Linux + ppc64le](https://get.helm.sh/helm-v4.1.4-linux-ppc64le.tar.gz) ([checksum](https://get.helm.sh/helm-v4.1.4-linux-ppc64le.tar.gz.sha256sum) + / 35a48f5db5c655b4471b37be75e76bfb2b23fc8a95d0fa2f0f344f0694336358)\r\n- [Linux + s390x](https://get.helm.sh/helm-v4.1.4-linux-s390x.tar.gz) ([checksum](https://get.helm.sh/helm-v4.1.4-linux-s390x.tar.gz.sha256sum) + / c5653d0b3687f008dc48f80219906b574af3b623ddc114f92383327299ad935e)\r\n- [Linux + riscv64](https://get.helm.sh/helm-v4.1.4-linux-riscv64.tar.gz) ([checksum](https://get.helm.sh/helm-v4.1.4-linux-riscv64.tar.gz.sha256sum) + / 9d747ed5761a6a5c15aa7ad108b65aee917d8e33448690e83a6451b6a48748e6)\r\n- [Windows + amd64](https://get.helm.sh/helm-v4.1.4-windows-amd64.zip) ([checksum](https://get.helm.sh/helm-v4.1.4-windows-amd64.zip.sha256sum) + / bd60f567f667631a2c9b698dfabe5e3cd52eaaf4264163c0a9cae566db8560e8)\r\n- [Windows + arm64](https://get.helm.sh/helm-v4.1.4-windows-arm64.zip) ([checksum](https://get.helm.sh/helm-v4.1.4-windows-arm64.zip.sha256sum) + / d0a651026da4a26b28bdfc3d455ce3dfacbc267182dc2225c2172b1dcc549643)\r\n\r\nThe + [Quickstart Guide](https://helm.sh/docs/intro/quickstart/) will get you going + from there. For **upgrade instructions** or detailed installation notes, check + the [install guide](https://helm.sh/docs/intro/install/). You can also use + a [script to install](https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-4) + on any system with `bash`.\r\n## What's Next\r\n\r\n- 4.1.5 and 3.20.3 are + the next patch (bug fix) releases and will be on April 8, 2026\r\n- 4.2.0 + and 3.21.0 are the next minor (feature) releases and will be on May 13, 2026\r\n\r\n## + Changelog\r\n\r\n- fix: Plugin missing provenance bypass 05fa37973dc9e42b76e1d2883494c87174b6074f + (George Jenkins)\r\n- fix: Chart dot-name path bug 4e7994d4467182f535b6797c94b5b0e994a91436 + (George Jenkins)\r\n- ignore error plugin loads (cli, getter) 25819432bf87ac0b54f0d3fa54982add2cac609e + (George Jenkins)\r\n- fix: Plugin version path traversal 36c8539e99bc42d7aef9b87d136254662d04f027 + (George Jenkins)\r\n- fix: pin codeql-action/upload-sarif to commit SHA in + scorecards workflow c61e0860ec797330a4c26a78dde7020cdc6743b1 (Terry Howe)" + created_at: "2026-04-09T05:22:20Z" + draft: false + html_url: https://github.com/helm/helm/releases/tag/v4.1.4 + id: 306902115 + immutable: false + mentions_count: 2 + name: Helm v4.1.4 + node_id: RE_kwDOApspmc4SSvRj + prerelease: false + published_at: "2026-04-09T06:01:47Z" + tag_name: v4.1.4 + tarball_url: https://api.github.com/repos/helm/helm/tarball/v4.1.4 + target_commitish: main + updated_at: "2026-04-09T06:01:47Z" + upload_url: https://uploads.github.com/repos/helm/helm/releases/306902115/assets{?name,label} + url: https://api.github.com/repos/helm/helm/releases/306902115 + zipball_url: https://api.github.com/repos/helm/helm/zipball/v4.1.4 + helmfile: + version: 1.5.0 + previousVersion: 1.4.5 + versions: + - 0.144.0 + - 0.145.2 + - 0.145.3 + - "0145.4" + githubRelease: + assets: + - browser_download_url: https://github.com/helmfile/helmfile/releases/download/v1.5.0/helmfile_1.5.0_checksums.txt + content_type: text/plain; charset=utf-8 + created_at: "2026-05-03T13:24:03Z" + digest: sha256:fdee808c59e81f9e6d95fc7f2856390ca409e61fda55ee8898e3ab2f2df4db7d + download_count: 0 + id: 411139777 + label: "" + name: helmfile_1.5.0_checksums.txt + node_id: RA_kwDOHEifes4YgX7B + size: 804 + state: uploaded + updated_at: "2026-05-03T13:24:04Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/in/15368?v=4 + events_url: https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/github-actions%5Bbot%5D/followers + following_url: https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/apps/github-actions + id: 41898282 + login: github-actions[bot] + node_id: MDM6Qm90NDE4OTgyODI= + organizations_url: https://api.github.com/users/github-actions%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/github-actions%5Bbot%5D/received_events + repos_url: https://api.github.com/users/github-actions%5Bbot%5D/repos + site_admin: false + starred_url: https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/github-actions%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/github-actions%5Bbot%5D + user_view_type: public + url: https://api.github.com/repos/helmfile/helmfile/releases/assets/411139777 + - browser_download_url: https://github.com/helmfile/helmfile/releases/download/v1.5.0/helmfile_1.5.0_darwin_amd64.tar.gz + content_type: application/gzip + created_at: "2026-05-03T13:23:59Z" + digest: sha256:2c5f7bed26c799722ea23790ca0c0cbe8b4c0dd6c25b4778c50927d78f4cdd78 + download_count: 0 + id: 411139748 + label: "" + name: helmfile_1.5.0_darwin_amd64.tar.gz + node_id: RA_kwDOHEifes4YgX6k + size: 47331346 + state: uploaded + updated_at: "2026-05-03T13:24:01Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/in/15368?v=4 + events_url: https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/github-actions%5Bbot%5D/followers + following_url: https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/apps/github-actions + id: 41898282 + login: github-actions[bot] + node_id: MDM6Qm90NDE4OTgyODI= + organizations_url: https://api.github.com/users/github-actions%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/github-actions%5Bbot%5D/received_events + repos_url: https://api.github.com/users/github-actions%5Bbot%5D/repos + site_admin: false + starred_url: https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/github-actions%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/github-actions%5Bbot%5D + user_view_type: public + url: https://api.github.com/repos/helmfile/helmfile/releases/assets/411139748 + - browser_download_url: https://github.com/helmfile/helmfile/releases/download/v1.5.0/helmfile_1.5.0_darwin_arm64.tar.gz + content_type: application/gzip + created_at: "2026-05-03T13:24:02Z" + digest: sha256:0595b457f162e16c6c264ab7556ed6b0627cdeb693eed4401bfd77df79613b21 + download_count: 0 + id: 411139771 + label: "" + name: helmfile_1.5.0_darwin_arm64.tar.gz + node_id: RA_kwDOHEifes4YgX67 + size: 44435618 + state: uploaded + updated_at: "2026-05-03T13:24:03Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/in/15368?v=4 + events_url: https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/github-actions%5Bbot%5D/followers + following_url: https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/apps/github-actions + id: 41898282 + login: github-actions[bot] + node_id: MDM6Qm90NDE4OTgyODI= + organizations_url: https://api.github.com/users/github-actions%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/github-actions%5Bbot%5D/received_events + repos_url: https://api.github.com/users/github-actions%5Bbot%5D/repos + site_admin: false + starred_url: https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/github-actions%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/github-actions%5Bbot%5D + user_view_type: public + url: https://api.github.com/repos/helmfile/helmfile/releases/assets/411139771 + - browser_download_url: https://github.com/helmfile/helmfile/releases/download/v1.5.0/helmfile_1.5.0_linux_386.tar.gz + content_type: application/gzip + created_at: "2026-05-03T13:24:01Z" + digest: sha256:871be9a71849cf04ea3758720cfef7c83074544eb43b06dd60c0397dd6aae5b6 + download_count: 0 + id: 411139766 + label: "" + name: helmfile_1.5.0_linux_386.tar.gz + node_id: RA_kwDOHEifes4YgX62 + size: 43038034 + state: uploaded + updated_at: "2026-05-03T13:24:03Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/in/15368?v=4 + events_url: https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/github-actions%5Bbot%5D/followers + following_url: https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/apps/github-actions + id: 41898282 + login: github-actions[bot] + node_id: MDM6Qm90NDE4OTgyODI= + organizations_url: https://api.github.com/users/github-actions%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/github-actions%5Bbot%5D/received_events + repos_url: https://api.github.com/users/github-actions%5Bbot%5D/repos + site_admin: false + starred_url: https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/github-actions%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/github-actions%5Bbot%5D + user_view_type: public + url: https://api.github.com/repos/helmfile/helmfile/releases/assets/411139766 + - browser_download_url: https://github.com/helmfile/helmfile/releases/download/v1.5.0/helmfile_1.5.0_linux_amd64.tar.gz + content_type: application/gzip + created_at: "2026-05-03T13:23:59Z" + digest: sha256:9612fc88e626098ca8fad63aa73781850896767b3ac1be1b305c48167da062fa + download_count: 0 + id: 411139746 + label: "" + name: helmfile_1.5.0_linux_amd64.tar.gz + node_id: RA_kwDOHEifes4YgX6i + size: 46333835 + state: uploaded + updated_at: "2026-05-03T13:24:01Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/in/15368?v=4 + events_url: https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/github-actions%5Bbot%5D/followers + following_url: https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/apps/github-actions + id: 41898282 + login: github-actions[bot] + node_id: MDM6Qm90NDE4OTgyODI= + organizations_url: https://api.github.com/users/github-actions%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/github-actions%5Bbot%5D/received_events + repos_url: https://api.github.com/users/github-actions%5Bbot%5D/repos + site_admin: false + starred_url: https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/github-actions%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/github-actions%5Bbot%5D + user_view_type: public + url: https://api.github.com/repos/helmfile/helmfile/releases/assets/411139746 + - browser_download_url: https://github.com/helmfile/helmfile/releases/download/v1.5.0/helmfile_1.5.0_linux_arm64.tar.gz + content_type: application/gzip + created_at: "2026-05-03T13:24:01Z" + digest: sha256:d98ae0a480a3020ab361fea6b5973e28f976caf392c8ac84157a05796247a7fe + download_count: 0 + id: 411139765 + label: "" + name: helmfile_1.5.0_linux_arm64.tar.gz + node_id: RA_kwDOHEifes4YgX61 + size: 42117990 + state: uploaded + updated_at: "2026-05-03T13:24:03Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/in/15368?v=4 + events_url: https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/github-actions%5Bbot%5D/followers + following_url: https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/apps/github-actions + id: 41898282 + login: github-actions[bot] + node_id: MDM6Qm90NDE4OTgyODI= + organizations_url: https://api.github.com/users/github-actions%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/github-actions%5Bbot%5D/received_events + repos_url: https://api.github.com/users/github-actions%5Bbot%5D/repos + site_admin: false + starred_url: https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/github-actions%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/github-actions%5Bbot%5D + user_view_type: public + url: https://api.github.com/repos/helmfile/helmfile/releases/assets/411139765 + - browser_download_url: https://github.com/helmfile/helmfile/releases/download/v1.5.0/helmfile_1.5.0_windows_386.tar.gz + content_type: application/gzip + created_at: "2026-05-03T13:24:01Z" + digest: sha256:c08d406341b25c9c3aed9a9d51dfaa11374808333426b5a2d4cdeb6b87c5b358 + download_count: 0 + id: 411139767 + label: "" + name: helmfile_1.5.0_windows_386.tar.gz + node_id: RA_kwDOHEifes4YgX63 + size: 45091197 + state: uploaded + updated_at: "2026-05-03T13:24:04Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/in/15368?v=4 + events_url: https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/github-actions%5Bbot%5D/followers + following_url: https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/apps/github-actions + id: 41898282 + login: github-actions[bot] + node_id: MDM6Qm90NDE4OTgyODI= + organizations_url: https://api.github.com/users/github-actions%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/github-actions%5Bbot%5D/received_events + repos_url: https://api.github.com/users/github-actions%5Bbot%5D/repos + site_admin: false + starred_url: https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/github-actions%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/github-actions%5Bbot%5D + user_view_type: public + url: https://api.github.com/repos/helmfile/helmfile/releases/assets/411139767 + - browser_download_url: https://github.com/helmfile/helmfile/releases/download/v1.5.0/helmfile_1.5.0_windows_amd64.tar.gz + content_type: application/gzip + created_at: "2026-05-03T13:23:59Z" + digest: sha256:ea15d325be59da46d17e03309c337bcbe7f8a5ab285294c0c3d288e6b42f4a72 + download_count: 0 + id: 411139745 + label: "" + name: helmfile_1.5.0_windows_amd64.tar.gz + node_id: RA_kwDOHEifes4YgX6h + size: 47513035 + state: uploaded + updated_at: "2026-05-03T13:24:01Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/in/15368?v=4 + events_url: https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/github-actions%5Bbot%5D/followers + following_url: https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/apps/github-actions + id: 41898282 + login: github-actions[bot] + node_id: MDM6Qm90NDE4OTgyODI= + organizations_url: https://api.github.com/users/github-actions%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/github-actions%5Bbot%5D/received_events + repos_url: https://api.github.com/users/github-actions%5Bbot%5D/repos + site_admin: false + starred_url: https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/github-actions%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/github-actions%5Bbot%5D + user_view_type: public + url: https://api.github.com/repos/helmfile/helmfile/releases/assets/411139745 + - browser_download_url: https://github.com/helmfile/helmfile/releases/download/v1.5.0/helmfile_1.5.0_windows_arm64.tar.gz + content_type: application/gzip + created_at: "2026-05-03T13:23:59Z" + digest: sha256:3565b73d9a89567dba158392d203ca6c36b9a62d361ade350b69b1e713ef695f + download_count: 0 + id: 411139747 + label: "" + name: helmfile_1.5.0_windows_arm64.tar.gz + node_id: RA_kwDOHEifes4YgX6j + size: 42232907 + state: uploaded + updated_at: "2026-05-03T13:24:01Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/in/15368?v=4 + events_url: https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/github-actions%5Bbot%5D/followers + following_url: https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/apps/github-actions + id: 41898282 + login: github-actions[bot] + node_id: MDM6Qm90NDE4OTgyODI= + organizations_url: https://api.github.com/users/github-actions%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/github-actions%5Bbot%5D/received_events + repos_url: https://api.github.com/users/github-actions%5Bbot%5D/repos + site_admin: false + starred_url: https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/github-actions%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/github-actions%5Bbot%5D + user_view_type: public + url: https://api.github.com/repos/helmfile/helmfile/releases/assets/411139747 + assets_url: https://api.github.com/repos/helmfile/helmfile/releases/316858717/assets + author: + avatar_url: https://avatars.githubusercontent.com/u/11087727?v=4 + events_url: https://api.github.com/users/yxxhero/events{/privacy} + followers_url: https://api.github.com/users/yxxhero/followers + following_url: https://api.github.com/users/yxxhero/following{/other_user} + gists_url: https://api.github.com/users/yxxhero/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/yxxhero + id: 11087727 + login: yxxhero + node_id: MDQ6VXNlcjExMDg3NzI3 + organizations_url: https://api.github.com/users/yxxhero/orgs + received_events_url: https://api.github.com/users/yxxhero/received_events + repos_url: https://api.github.com/users/yxxhero/repos + site_admin: false + starred_url: https://api.github.com/users/yxxhero/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/yxxhero/subscriptions + type: User + url: https://api.github.com/users/yxxhero + user_view_type: public + body: "## What's Changed\r\n* feat: add --write-output flag to helmfile fetch + for air-gapped environments by @yxxhero in https://github.com/helmfile/helmfile/pull/2572\r\n* + feat: add 'create' subcommand to scaffold helmfile deployment projects by + @yxxhero in https://github.com/helmfile/helmfile/pull/2574\r\n* docs: restructure + documentation and improve newcomer experience by @yxxhero in https://github.com/helmfile/helmfile/pull/2573\r\n* + docs: deduplicate Technical Details sections in values-and-merging.md by @yxxhero + in https://github.com/helmfile/helmfile/pull/2575\r\n\r\n\r\n**Full Changelog**: + https://github.com/helmfile/helmfile/compare/v1.4.5...v1.5.0" + created_at: "2026-05-03T12:59:03Z" + draft: false + html_url: https://github.com/helmfile/helmfile/releases/tag/v1.5.0 + id: 316858717 + immutable: false + mentions_count: 1 + name: v1.5.0 + node_id: RE_kwDOHEifes4S4uFd + prerelease: false + published_at: "2026-05-03T12:59:31Z" + tag_name: v1.5.0 + tarball_url: https://api.github.com/repos/helmfile/helmfile/tarball/v1.5.0 + target_commitish: main + updated_at: "2026-05-03T13:24:04Z" + upload_url: https://uploads.github.com/repos/helmfile/helmfile/releases/316858717/assets{?name,label} + url: https://api.github.com/repos/helmfile/helmfile/releases/316858717 + zipball_url: https://api.github.com/repos/helmfile/helmfile/zipball/v1.5.0 + runner: + version: 2.309.0-ubuntu-22.04-ead26ab + previousVersion: 2.309.0 + versions: + - 2.309.0 +meta: + dependencies: + helm: + 3.9.3: + githubRelease: + assets: + - browser_download_url: https://github.com/helm/helm/releases/download/v3.9.3/helm-v3.9.3-darwin-amd64.tar.gz.asc + content_type: text/plain + created_at: "2022-08-10T18:22:04Z" + download_count: 3 + id: 74312380 + label: null + name: helm-v3.9.3-darwin-amd64.tar.gz.asc + node_id: RA_kwDOApspmc4Ebeq8 + size: 833 + state: uploaded + updated_at: "2022-08-10T18:22:05Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/74312380 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.9.3/helm-v3.9.3-darwin-amd64.tar.gz.sha256.asc + content_type: text/plain + created_at: "2022-08-10T18:22:05Z" + download_count: 3 + id: 74312381 + label: null + name: helm-v3.9.3-darwin-amd64.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4Ebeq9 + size: 833 + state: uploaded + updated_at: "2022-08-10T18:22:05Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/74312381 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.9.3/helm-v3.9.3-darwin-amd64.tar.gz.sha256sum.asc + content_type: text/plain + created_at: "2022-08-10T18:22:05Z" + download_count: 3 + id: 74312382 + label: null + name: helm-v3.9.3-darwin-amd64.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4Ebeq- + size: 833 + state: uploaded + updated_at: "2022-08-10T18:22:05Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/74312382 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.9.3/helm-v3.9.3-darwin-arm64.tar.gz.asc + content_type: text/plain + created_at: "2022-08-10T18:22:05Z" + download_count: 3 + id: 74312383 + label: null + name: helm-v3.9.3-darwin-arm64.tar.gz.asc + node_id: RA_kwDOApspmc4Ebeq_ + size: 833 + state: uploaded + updated_at: "2022-08-10T18:22:06Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/74312383 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.9.3/helm-v3.9.3-darwin-arm64.tar.gz.sha256.asc + content_type: text/plain + created_at: "2022-08-10T18:22:06Z" + download_count: 3 + id: 74312386 + label: null + name: helm-v3.9.3-darwin-arm64.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4EberC + size: 833 + state: uploaded + updated_at: "2022-08-10T18:22:06Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/74312386 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.9.3/helm-v3.9.3-darwin-arm64.tar.gz.sha256sum.asc + content_type: text/plain + created_at: "2022-08-10T18:22:06Z" + download_count: 3 + id: 74312393 + label: null + name: helm-v3.9.3-darwin-arm64.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4EberJ + size: 833 + state: uploaded + updated_at: "2022-08-10T18:22:06Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/74312393 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.9.3/helm-v3.9.3-linux-386.tar.gz.asc + content_type: text/plain + created_at: "2022-08-10T18:22:06Z" + download_count: 3 + id: 74312394 + label: null + name: helm-v3.9.3-linux-386.tar.gz.asc + node_id: RA_kwDOApspmc4EberK + size: 833 + state: uploaded + updated_at: "2022-08-10T18:22:06Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/74312394 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.9.3/helm-v3.9.3-linux-386.tar.gz.sha256.asc + content_type: text/plain + created_at: "2022-08-10T18:22:06Z" + download_count: 3 + id: 74312395 + label: null + name: helm-v3.9.3-linux-386.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4EberL + size: 833 + state: uploaded + updated_at: "2022-08-10T18:22:07Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/74312395 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.9.3/helm-v3.9.3-linux-386.tar.gz.sha256sum.asc + content_type: text/plain + created_at: "2022-08-10T18:22:07Z" + download_count: 3 + id: 74312396 + label: null + name: helm-v3.9.3-linux-386.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4EberM + size: 833 + state: uploaded + updated_at: "2022-08-10T18:22:07Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/74312396 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.9.3/helm-v3.9.3-linux-amd64.tar.gz.asc + content_type: text/plain + created_at: "2022-08-10T18:22:07Z" + download_count: 39 + id: 74312397 + label: null + name: helm-v3.9.3-linux-amd64.tar.gz.asc + node_id: RA_kwDOApspmc4EberN + size: 833 + state: uploaded + updated_at: "2022-08-10T18:22:07Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/74312397 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.9.3/helm-v3.9.3-linux-amd64.tar.gz.sha256.asc + content_type: text/plain + created_at: "2022-08-10T18:22:07Z" + download_count: 35 + id: 74312399 + label: null + name: helm-v3.9.3-linux-amd64.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4EberP + size: 833 + state: uploaded + updated_at: "2022-08-10T18:22:08Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/74312399 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.9.3/helm-v3.9.3-linux-amd64.tar.gz.sha256sum.asc + content_type: text/plain + created_at: "2022-08-10T18:22:08Z" + download_count: 3 + id: 74312400 + label: null + name: helm-v3.9.3-linux-amd64.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4EberQ + size: 833 + state: uploaded + updated_at: "2022-08-10T18:22:08Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/74312400 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.9.3/helm-v3.9.3-linux-arm.tar.gz.asc + content_type: text/plain + created_at: "2022-08-10T18:22:08Z" + download_count: 5 + id: 74312401 + label: null + name: helm-v3.9.3-linux-arm.tar.gz.asc + node_id: RA_kwDOApspmc4EberR + size: 833 + state: uploaded + updated_at: "2022-08-10T18:22:08Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/74312401 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.9.3/helm-v3.9.3-linux-arm.tar.gz.sha256.asc + content_type: text/plain + created_at: "2022-08-10T18:22:08Z" + download_count: 3 + id: 74312402 + label: null + name: helm-v3.9.3-linux-arm.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4EberS + size: 833 + state: uploaded + updated_at: "2022-08-10T18:22:08Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/74312402 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.9.3/helm-v3.9.3-linux-arm.tar.gz.sha256sum.asc + content_type: text/plain + created_at: "2022-08-10T18:22:08Z" + download_count: 3 + id: 74312403 + label: null + name: helm-v3.9.3-linux-arm.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4EberT + size: 833 + state: uploaded + updated_at: "2022-08-10T18:22:09Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/74312403 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.9.3/helm-v3.9.3-linux-arm64.tar.gz.asc + content_type: text/plain + created_at: "2022-08-10T18:22:09Z" + download_count: 7 + id: 74312405 + label: null + name: helm-v3.9.3-linux-arm64.tar.gz.asc + node_id: RA_kwDOApspmc4EberV + size: 833 + state: uploaded + updated_at: "2022-08-10T18:22:09Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/74312405 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.9.3/helm-v3.9.3-linux-arm64.tar.gz.sha256.asc + content_type: text/plain + created_at: "2022-08-10T18:22:09Z" + download_count: 7 + id: 74312406 + label: null + name: helm-v3.9.3-linux-arm64.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4EberW + size: 833 + state: uploaded + updated_at: "2022-08-10T18:22:09Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/74312406 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.9.3/helm-v3.9.3-linux-arm64.tar.gz.sha256sum.asc + content_type: text/plain + created_at: "2022-08-10T18:22:09Z" + download_count: 3 + id: 74312407 + label: null + name: helm-v3.9.3-linux-arm64.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4EberX + size: 833 + state: uploaded + updated_at: "2022-08-10T18:22:09Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/74312407 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.9.3/helm-v3.9.3-linux-ppc64le.tar.gz.asc + content_type: text/plain + created_at: "2022-08-10T18:22:09Z" + download_count: 2 + id: 74312409 + label: null + name: helm-v3.9.3-linux-ppc64le.tar.gz.asc + node_id: RA_kwDOApspmc4EberZ + size: 833 + state: uploaded + updated_at: "2022-08-10T18:22:09Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/74312409 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.9.3/helm-v3.9.3-linux-ppc64le.tar.gz.sha256.asc + content_type: text/plain + created_at: "2022-08-10T18:22:09Z" + download_count: 2 + id: 74312410 + label: null + name: helm-v3.9.3-linux-ppc64le.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4Ebera + size: 833 + state: uploaded + updated_at: "2022-08-10T18:22:10Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/74312410 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.9.3/helm-v3.9.3-linux-ppc64le.tar.gz.sha256sum.asc + content_type: text/plain + created_at: "2022-08-10T18:22:10Z" + download_count: 2 + id: 74312412 + label: null + name: helm-v3.9.3-linux-ppc64le.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4Eberc + size: 833 + state: uploaded + updated_at: "2022-08-10T18:22:10Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/74312412 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.9.3/helm-v3.9.3-linux-s390x.tar.gz.asc + content_type: text/plain + created_at: "2022-08-10T18:22:10Z" + download_count: 2 + id: 74312418 + label: null + name: helm-v3.9.3-linux-s390x.tar.gz.asc + node_id: RA_kwDOApspmc4Eberi + size: 833 + state: uploaded + updated_at: "2022-08-10T18:22:10Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/74312418 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.9.3/helm-v3.9.3-linux-s390x.tar.gz.sha256.asc + content_type: text/plain + created_at: "2022-08-10T18:22:10Z" + download_count: 2 + id: 74312420 + label: null + name: helm-v3.9.3-linux-s390x.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4Eberk + size: 833 + state: uploaded + updated_at: "2022-08-10T18:22:10Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/74312420 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.9.3/helm-v3.9.3-linux-s390x.tar.gz.sha256sum.asc + content_type: text/plain + created_at: "2022-08-10T18:22:10Z" + download_count: 2 + id: 74312422 + label: null + name: helm-v3.9.3-linux-s390x.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4Eberm + size: 833 + state: uploaded + updated_at: "2022-08-10T18:22:11Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/74312422 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.9.3/helm-v3.9.3-windows-amd64.zip.asc + content_type: text/plain + created_at: "2022-08-10T18:22:11Z" + download_count: 5 + id: 74312423 + label: null + name: helm-v3.9.3-windows-amd64.zip.asc + node_id: RA_kwDOApspmc4Ebern + size: 833 + state: uploaded + updated_at: "2022-08-10T18:22:11Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/74312423 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.9.3/helm-v3.9.3-windows-amd64.zip.sha256.asc + content_type: text/plain + created_at: "2022-08-10T18:22:11Z" + download_count: 3 + id: 74312428 + label: null + name: helm-v3.9.3-windows-amd64.zip.sha256.asc + node_id: RA_kwDOApspmc4Ebers + size: 833 + state: uploaded + updated_at: "2022-08-10T18:22:11Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/74312428 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.9.3/helm-v3.9.3-windows-amd64.zip.sha256sum.asc + content_type: text/plain + created_at: "2022-08-10T18:22:11Z" + download_count: 3 + id: 74312430 + label: null + name: helm-v3.9.3-windows-amd64.zip.sha256sum.asc + node_id: RA_kwDOApspmc4Eberu + size: 833 + state: uploaded + updated_at: "2022-08-10T18:22:11Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/74312430 + assets_url: https://api.github.com/repos/helm/helm/releases/74131051/assets + author: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + body: "Helm v3.9.3 is a patch release. Users are encouraged to upgrade for + the best experience. Users are encouraged to upgrade for the best experience.\r\n\r\nThe + community keeps growing, and we'd love to see you there!\r\n\r\n- Join + the discussion in [Kubernetes Slack](https://kubernetes.slack.com):\r\n + \ - for questions and just to hang out\r\n - for discussing PRs, code, + and bugs\r\n- Hang out at the Public Developer Call: Thursday, 9:30 Pacific + via [Zoom](https://zoom.us/j/696660622)\r\n- Test, debug, and contribute + charts: [ArtifactHub/packages](https://artifacthub.io/packages/search?kind=0)\r\n\r\n## + Installation and Upgrading\r\n\r\nDownload Helm v3.9.3. The common platform + binaries are here:\r\n\r\n- [MacOS amd64](https://get.helm.sh/helm-v3.9.3-darwin-amd64.tar.gz) + ([checksum](https://get.helm.sh/helm-v3.9.3-darwin-amd64.tar.gz.sha256sum) + / ca3d57bb68135fa45a7acc2612d472e8ad01b78f49eaca57490aefef74a61c95)\r\n- + [MacOS arm64](https://get.helm.sh/helm-v3.9.3-darwin-arm64.tar.gz) ([checksum](https://get.helm.sh/helm-v3.9.3-darwin-arm64.tar.gz.sha256sum) + / db20ee8758616e1d69e90aedc5eb940751888bdd2b031badf2080a05df4c9eb7)\r\n- + [Linux amd64](https://get.helm.sh/helm-v3.9.3-linux-amd64.tar.gz) ([checksum](https://get.helm.sh/helm-v3.9.3-linux-amd64.tar.gz.sha256sum) + / 2d07360a9d93b18488f1ddb9de818b92ba738acbec6e1c66885a88703fa7b21c)\r\n- + [Linux arm](https://get.helm.sh/helm-v3.9.3-linux-arm.tar.gz) ([checksum](https://get.helm.sh/helm-v3.9.3-linux-arm.tar.gz.sha256sum) + / 2b8cdb8064914ed1f1cd17f8366e68eab2f14e9fb0b2a0bac0f47fac7fbddf36)\r\n- + [Linux arm64](https://get.helm.sh/helm-v3.9.3-linux-arm64.tar.gz) ([checksum](https://get.helm.sh/helm-v3.9.3-linux-arm64.tar.gz.sha256sum) + / 59168c08c32293759005d0c509ce4be9038d7663827e05564c779e59658d8299)\r\n- + [Linux i386](https://get.helm.sh/helm-v3.9.3-linux-386.tar.gz) ([checksum](https://get.helm.sh/helm-v3.9.3-linux-386.tar.gz.sha256sum) + / 634a5dca59674cb77fb7a69d08cee00c9051505e81af1c1d3ea96e5f3de84dbc)\r\n- + [Linux ppc64le](https://get.helm.sh/helm-v3.9.3-linux-ppc64le.tar.gz) + ([checksum](https://get.helm.sh/helm-v3.9.3-linux-ppc64le.tar.gz.sha256sum) + / bf06f00a01e01a3ad011c0b70fbbb07db3e65f2134ed5e640a2a2832a4101f48)\r\n- + [Linux s390x](https://get.helm.sh/helm-v3.9.3-linux-s390x.tar.gz) ([checksum](https://get.helm.sh/helm-v3.9.3-linux-s390x.tar.gz.sha256sum) + / 257a7373b380dc1fdb811030867c1483c511a5521bb1348fe59e97883582f9f3)\r\n- + [Windows amd64](https://get.helm.sh/helm-v3.9.3-windows-amd64.zip) ([checksum](https://get.helm.sh/helm-v3.9.3-windows-amd64.zip.sha256sum) + / cdd24727d233e620ce6e8ec21646a6218bde94cf3d5f24e9c4ae6a114939975d)\r\n\r\nThis + release was signed with `672C 657B E06B 4B30 969C 4A57 4614 49C2 5E36 + B98E ` and can be found at @mattfarina [keybase account](https://keybase.io/mattfarina). + Please use the attached signatures for verifying this release using `gpg`.\r\n\r\nThe + [Quickstart Guide](https://helm.sh/docs/intro/quickstart/) will get you + going from there. For **upgrade instructions** or detailed installation + notes, check the [install guide](https://helm.sh/docs/intro/install/). + You can also use a [script to install](https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3) + on any system with `bash`.\r\n\r\n## What's Next\r\n\r\n- 3.10.0 is the + next feature release and will be on September 13, 2022\r\n\r\n## Changelog\r\n\r\n- + Bump k8s.io/kube-openapi to fix CVE-2022-1996 in github.com/emicklei/go-restful + 414ff28d4029ae8c8b05d62aa06c7fe3dee2bc58 (Guilherme Macedo)\r\n- fixes + #11142 missing array length check on release c801d8876a6fc9c9a5bfa15f31892e16cd30c7bd + (Arvid E. Picciani)\r\n" + created_at: "2022-08-10T17:34:56Z" + draft: false + html_url: https://github.com/helm/helm/releases/tag/v3.9.3 + id: 74131051 + mentions_count: 1 + name: Helm 3.9.3 + node_id: RE_kwDOApspmc4EayZr + prerelease: false + published_at: "2022-08-10T18:22:55Z" + reactions: + "+1": 3 + "-1": 0 + confused: 0 + eyes: 0 + heart: 0 + hooray: 1 + laugh: 0 + rocket: 1 + total_count: 5 + url: https://api.github.com/repos/helm/helm/releases/74131051/reactions + tag_name: v3.9.3 + tarball_url: https://api.github.com/repos/helm/helm/tarball/v3.9.3 + target_commitish: release-3.9 + upload_url: https://uploads.github.com/repos/helm/helm/releases/74131051/assets{?name,label} + url: https://api.github.com/repos/helm/helm/releases/74131051 + zipball_url: https://api.github.com/repos/helm/helm/zipball/v3.9.3 + 3.9.4: + githubRelease: + assets: + - browser_download_url: https://github.com/helm/helm/releases/download/v3.9.4/helm-v3.9.4-darwin-amd64.tar.gz.asc + content_type: text/plain + created_at: "2022-08-24T19:28:59Z" + download_count: 3 + id: 75744044 + label: null + name: helm-v3.9.4-darwin-amd64.tar.gz.asc + node_id: RA_kwDOApspmc4Eg8Ms + size: 833 + state: uploaded + updated_at: "2022-08-24T19:29:00Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/75744044 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.9.4/helm-v3.9.4-darwin-amd64.tar.gz.sha256.asc + content_type: text/plain + created_at: "2022-08-24T19:28:59Z" + download_count: 3 + id: 75744043 + label: null + name: helm-v3.9.4-darwin-amd64.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4Eg8Mr + size: 833 + state: uploaded + updated_at: "2022-08-24T19:28:59Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/75744043 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.9.4/helm-v3.9.4-darwin-amd64.tar.gz.sha256sum.asc + content_type: text/plain + created_at: "2022-08-24T19:28:59Z" + download_count: 3 + id: 75744042 + label: null + name: helm-v3.9.4-darwin-amd64.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4Eg8Mq + size: 833 + state: uploaded + updated_at: "2022-08-24T19:28:59Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/75744042 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.9.4/helm-v3.9.4-darwin-arm64.tar.gz.asc + content_type: text/plain + created_at: "2022-08-24T19:28:59Z" + download_count: 5 + id: 75744041 + label: null + name: helm-v3.9.4-darwin-arm64.tar.gz.asc + node_id: RA_kwDOApspmc4Eg8Mp + size: 833 + state: uploaded + updated_at: "2022-08-24T19:28:59Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/75744041 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.9.4/helm-v3.9.4-darwin-arm64.tar.gz.sha256.asc + content_type: text/plain + created_at: "2022-08-24T19:28:58Z" + download_count: 3 + id: 75744040 + label: null + name: helm-v3.9.4-darwin-arm64.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4Eg8Mo + size: 833 + state: uploaded + updated_at: "2022-08-24T19:28:59Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/75744040 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.9.4/helm-v3.9.4-darwin-arm64.tar.gz.sha256sum.asc + content_type: text/plain + created_at: "2022-08-24T19:28:58Z" + download_count: 3 + id: 75744039 + label: null + name: helm-v3.9.4-darwin-arm64.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4Eg8Mn + size: 833 + state: uploaded + updated_at: "2022-08-24T19:28:58Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/75744039 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.9.4/helm-v3.9.4-linux-386.tar.gz.asc + content_type: text/plain + created_at: "2022-08-24T19:28:58Z" + download_count: 3 + id: 75744038 + label: null + name: helm-v3.9.4-linux-386.tar.gz.asc + node_id: RA_kwDOApspmc4Eg8Mm + size: 833 + state: uploaded + updated_at: "2022-08-24T19:28:58Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/75744038 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.9.4/helm-v3.9.4-linux-386.tar.gz.sha256.asc + content_type: text/plain + created_at: "2022-08-24T19:28:58Z" + download_count: 3 + id: 75744037 + label: null + name: helm-v3.9.4-linux-386.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4Eg8Ml + size: 833 + state: uploaded + updated_at: "2022-08-24T19:28:58Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/75744037 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.9.4/helm-v3.9.4-linux-386.tar.gz.sha256sum.asc + content_type: text/plain + created_at: "2022-08-24T19:28:57Z" + download_count: 3 + id: 75744036 + label: null + name: helm-v3.9.4-linux-386.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4Eg8Mk + size: 833 + state: uploaded + updated_at: "2022-08-24T19:28:58Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/75744036 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.9.4/helm-v3.9.4-linux-amd64.tar.gz.asc + content_type: text/plain + created_at: "2022-08-24T19:28:57Z" + download_count: 16 + id: 75744035 + label: null + name: helm-v3.9.4-linux-amd64.tar.gz.asc + node_id: RA_kwDOApspmc4Eg8Mj + size: 833 + state: uploaded + updated_at: "2022-08-24T19:28:57Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/75744035 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.9.4/helm-v3.9.4-linux-amd64.tar.gz.sha256.asc + content_type: text/plain + created_at: "2022-08-24T19:28:57Z" + download_count: 15 + id: 75744034 + label: null + name: helm-v3.9.4-linux-amd64.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4Eg8Mi + size: 833 + state: uploaded + updated_at: "2022-08-24T19:28:57Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/75744034 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.9.4/helm-v3.9.4-linux-amd64.tar.gz.sha256sum.asc + content_type: text/plain + created_at: "2022-08-24T19:28:57Z" + download_count: 3 + id: 75744033 + label: null + name: helm-v3.9.4-linux-amd64.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4Eg8Mh + size: 833 + state: uploaded + updated_at: "2022-08-24T19:28:57Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/75744033 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.9.4/helm-v3.9.4-linux-arm.tar.gz.asc + content_type: text/plain + created_at: "2022-08-24T19:28:56Z" + download_count: 3 + id: 75744029 + label: null + name: helm-v3.9.4-linux-arm.tar.gz.asc + node_id: RA_kwDOApspmc4Eg8Md + size: 833 + state: uploaded + updated_at: "2022-08-24T19:28:56Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/75744029 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.9.4/helm-v3.9.4-linux-arm.tar.gz.sha256.asc + content_type: text/plain + created_at: "2022-08-24T19:28:55Z" + download_count: 3 + id: 75744028 + label: null + name: helm-v3.9.4-linux-arm.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4Eg8Mc + size: 833 + state: uploaded + updated_at: "2022-08-24T19:28:56Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/75744028 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.9.4/helm-v3.9.4-linux-arm.tar.gz.sha256sum.asc + content_type: text/plain + created_at: "2022-08-24T19:28:55Z" + download_count: 3 + id: 75744027 + label: null + name: helm-v3.9.4-linux-arm.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4Eg8Mb + size: 833 + state: uploaded + updated_at: "2022-08-24T19:28:55Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/75744027 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.9.4/helm-v3.9.4-linux-arm64.tar.gz.asc + content_type: text/plain + created_at: "2022-08-24T19:28:56Z" + download_count: 8 + id: 75744032 + label: null + name: helm-v3.9.4-linux-arm64.tar.gz.asc + node_id: RA_kwDOApspmc4Eg8Mg + size: 833 + state: uploaded + updated_at: "2022-08-24T19:28:57Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/75744032 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.9.4/helm-v3.9.4-linux-arm64.tar.gz.sha256.asc + content_type: text/plain + created_at: "2022-08-24T19:28:56Z" + download_count: 8 + id: 75744031 + label: null + name: helm-v3.9.4-linux-arm64.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4Eg8Mf + size: 833 + state: uploaded + updated_at: "2022-08-24T19:28:56Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/75744031 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.9.4/helm-v3.9.4-linux-arm64.tar.gz.sha256sum.asc + content_type: text/plain + created_at: "2022-08-24T19:28:56Z" + download_count: 3 + id: 75744030 + label: null + name: helm-v3.9.4-linux-arm64.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4Eg8Me + size: 833 + state: uploaded + updated_at: "2022-08-24T19:28:56Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/75744030 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.9.4/helm-v3.9.4-linux-ppc64le.tar.gz.asc + content_type: text/plain + created_at: "2022-08-24T19:28:55Z" + download_count: 3 + id: 75744026 + label: null + name: helm-v3.9.4-linux-ppc64le.tar.gz.asc + node_id: RA_kwDOApspmc4Eg8Ma + size: 833 + state: uploaded + updated_at: "2022-08-24T19:28:55Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/75744026 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.9.4/helm-v3.9.4-linux-ppc64le.tar.gz.sha256.asc + content_type: text/plain + created_at: "2022-08-24T19:28:55Z" + download_count: 3 + id: 75744025 + label: null + name: helm-v3.9.4-linux-ppc64le.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4Eg8MZ + size: 833 + state: uploaded + updated_at: "2022-08-24T19:28:55Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/75744025 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.9.4/helm-v3.9.4-linux-ppc64le.tar.gz.sha256sum.asc + content_type: text/plain + created_at: "2022-08-24T19:28:54Z" + download_count: 3 + id: 75744024 + label: null + name: helm-v3.9.4-linux-ppc64le.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4Eg8MY + size: 833 + state: uploaded + updated_at: "2022-08-24T19:28:55Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/75744024 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.9.4/helm-v3.9.4-linux-s390x.tar.gz.asc + content_type: text/plain + created_at: "2022-08-24T19:28:54Z" + download_count: 3 + id: 75744023 + label: null + name: helm-v3.9.4-linux-s390x.tar.gz.asc + node_id: RA_kwDOApspmc4Eg8MX + size: 833 + state: uploaded + updated_at: "2022-08-24T19:28:54Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/75744023 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.9.4/helm-v3.9.4-linux-s390x.tar.gz.sha256.asc + content_type: text/plain + created_at: "2022-08-24T19:28:54Z" + download_count: 3 + id: 75744022 + label: null + name: helm-v3.9.4-linux-s390x.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4Eg8MW + size: 833 + state: uploaded + updated_at: "2022-08-24T19:28:54Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/75744022 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.9.4/helm-v3.9.4-linux-s390x.tar.gz.sha256sum.asc + content_type: text/plain + created_at: "2022-08-24T19:28:54Z" + download_count: 3 + id: 75744021 + label: null + name: helm-v3.9.4-linux-s390x.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4Eg8MV + size: 833 + state: uploaded + updated_at: "2022-08-24T19:28:54Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/75744021 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.9.4/helm-v3.9.4-windows-amd64.zip.asc + content_type: text/plain + created_at: "2022-08-24T19:28:53Z" + download_count: 3 + id: 75744020 + label: null + name: helm-v3.9.4-windows-amd64.zip.asc + node_id: RA_kwDOApspmc4Eg8MU + size: 833 + state: uploaded + updated_at: "2022-08-24T19:28:54Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/75744020 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.9.4/helm-v3.9.4-windows-amd64.zip.sha256.asc + content_type: text/plain + created_at: "2022-08-24T19:28:53Z" + download_count: 3 + id: 75744019 + label: null + name: helm-v3.9.4-windows-amd64.zip.sha256.asc + node_id: RA_kwDOApspmc4Eg8MT + size: 833 + state: uploaded + updated_at: "2022-08-24T19:28:53Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/75744019 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.9.4/helm-v3.9.4-windows-amd64.zip.sha256sum.asc + content_type: text/plain + created_at: "2022-08-24T19:28:53Z" + download_count: 3 + id: 75744018 + label: null + name: helm-v3.9.4-windows-amd64.zip.sha256sum.asc + node_id: RA_kwDOApspmc4Eg8MS + size: 833 + state: uploaded + updated_at: "2022-08-24T19:28:53Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/75744018 + assets_url: https://api.github.com/repos/helm/helm/releases/75268893/assets + author: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + body: "Helm v3.9.4 is a security (patch) release. Users are strongly recommended + to update to this release.\r\n\r\nWhile fuzz testing Helm, provided by + the CNCF, a possible out of memory panic was discovered with the _strvals_ + package. Out of memory panics cannot be recovered from in Go. This can + potentially be used to produce a denial of service (DOS). More details + are available in [the advisory](https://github.com/helm/helm/security/advisories/GHSA-7hfp-qfw3-5jxh).\r\n\r\nThe + community keeps growing, and we'd love to see you there!\r\n\r\n- Join + the discussion in [Kubernetes Slack](https://kubernetes.slack.com):\r\n + \ - for questions and just to hang out\r\n - for discussing PRs, code, + and bugs\r\n- Hang out at the Public Developer Call: Thursday, 9:30 Pacific + via [Zoom](https://zoom.us/j/696660622)\r\n- Test, debug, and contribute + charts: [ArtifactHub/packages](https://artifacthub.io/packages/search?kind=0)\r\n\r\n## + Installation and Upgrading\r\n\r\nDownload Helm v3.9.4. The common platform + binaries are here:\r\n\r\n- [MacOS amd64](https://get.helm.sh/helm-v3.9.4-darwin-amd64.tar.gz) + ([checksum](https://get.helm.sh/helm-v3.9.4-darwin-amd64.tar.gz.sha256sum) + / fe5930feca6fd1bd2c57df01c1f381c6444d1c3d2b857526bf6cbfbd6bf906b4)\r\n- + [MacOS arm64](https://get.helm.sh/helm-v3.9.4-darwin-arm64.tar.gz) ([checksum](https://get.helm.sh/helm-v3.9.4-darwin-arm64.tar.gz.sha256sum) + / a73d91751153169781b3ab5b4702ba1a2631fc8242eba33828b5905870059312)\r\n- + [Linux amd64](https://get.helm.sh/helm-v3.9.4-linux-amd64.tar.gz) ([checksum](https://get.helm.sh/helm-v3.9.4-linux-amd64.tar.gz.sha256sum) + / 31960ff2f76a7379d9bac526ddf889fb79241191f1dbe2a24f7864ddcb3f6560)\r\n- + [Linux arm](https://get.helm.sh/helm-v3.9.4-linux-arm.tar.gz) ([checksum](https://get.helm.sh/helm-v3.9.4-linux-arm.tar.gz.sha256sum) + / 18ce0f79dcd927fea5b714ca03299929dad05266192d4cde3de6b4c4d4544249)\r\n- + [Linux arm64](https://get.helm.sh/helm-v3.9.4-linux-arm64.tar.gz) ([checksum](https://get.helm.sh/helm-v3.9.4-linux-arm64.tar.gz.sha256sum) + / d24163e466f7884c55079d1050968e80a05b633830047116cdfd8ae28d35b0c0)\r\n- + [Linux i386](https://get.helm.sh/helm-v3.9.4-linux-386.tar.gz) ([checksum](https://get.helm.sh/helm-v3.9.4-linux-386.tar.gz.sha256sum) + / a37b0070e2f072050fdf4bd7430ffbe55390fee410eb0781cd01a0fe206eb963)\r\n- + [Linux ppc64le](https://get.helm.sh/helm-v3.9.4-linux-ppc64le.tar.gz) + ([checksum](https://get.helm.sh/helm-v3.9.4-linux-ppc64le.tar.gz.sha256sum) + / c63a951415c192397fda07c2f52aa60639b280920381c48d58be6803eb0c22f9)\r\n- + [Linux s390x](https://get.helm.sh/helm-v3.9.4-linux-s390x.tar.gz) ([checksum](https://get.helm.sh/helm-v3.9.4-linux-s390x.tar.gz.sha256sum) + / 7fec97fa800d9bd981e2f42fb0908175db1f35da2d373a971ec7376fe4cb5451)\r\n- + [Windows amd64](https://get.helm.sh/helm-v3.9.4-windows-amd64.zip) ([checksum](https://get.helm.sh/helm-v3.9.4-windows-amd64.zip.sha256sum) + / 7cdc1342bc1863b6d5ce695fbef4d3b0d65c7c5bcef6ec6adf8fc9aa53821262)\r\n\r\nThis + release was signed with `672C 657B E06B 4B30 969C 4A57 4614 49C2 5E36 + B98E ` and can be found at @mattfarina [keybase account](https://keybase.io/mattfarina). + Please use the attached signatures for verifying this release using `gpg`.\r\n\r\nThe + [Quickstart Guide](https://helm.sh/docs/intro/quickstart/) will get you + going from there. For **upgrade instructions** or detailed installation + notes, check the [install guide](https://helm.sh/docs/intro/install/). + You can also use a [script to install](https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3) + on any system with `bash`.\r\n\r\n## What's Next\r\n\r\n- 3.10.0 is the + next feature release and will be on September 14, 2022" + created_at: "2022-08-24T18:45:42Z" + draft: false + html_url: https://github.com/helm/helm/releases/tag/v3.9.4 + id: 75268893 + mentions_count: 1 + name: Helm 3.9.4 + node_id: RE_kwDOApspmc4EfIMd + prerelease: false + published_at: "2022-08-24T20:00:15Z" + tag_name: v3.9.4 + tarball_url: https://api.github.com/repos/helm/helm/tarball/v3.9.4 + target_commitish: release-3.9 + upload_url: https://uploads.github.com/repos/helm/helm/releases/75268893/assets{?name,label} + url: https://api.github.com/repos/helm/helm/releases/75268893 + zipball_url: https://api.github.com/repos/helm/helm/zipball/v3.9.4 + 3.10.0: + githubRelease: + assets: + - browser_download_url: https://github.com/helm/helm/releases/download/v3.10.0/helm-v3.10.0-darwin-amd64.tar.gz.asc + content_type: text/plain + created_at: "2022-09-21T17:25:00Z" + download_count: 5 + id: 78589575 + label: null + name: helm-v3.10.0-darwin-amd64.tar.gz.asc + node_id: RA_kwDOApspmc4Ery6H + size: 833 + state: uploaded + updated_at: "2022-09-21T17:25:00Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/78589575 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.10.0/helm-v3.10.0-darwin-amd64.tar.gz.sha256.asc + content_type: text/plain + created_at: "2022-09-21T17:25:00Z" + download_count: 5 + id: 78589574 + label: null + name: helm-v3.10.0-darwin-amd64.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4Ery6G + size: 833 + state: uploaded + updated_at: "2022-09-21T17:25:00Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/78589574 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.10.0/helm-v3.10.0-darwin-amd64.tar.gz.sha256sum.asc + content_type: text/plain + created_at: "2022-09-21T17:24:59Z" + download_count: 5 + id: 78589573 + label: null + name: helm-v3.10.0-darwin-amd64.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4Ery6F + size: 833 + state: uploaded + updated_at: "2022-09-21T17:25:00Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/78589573 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.10.0/helm-v3.10.0-darwin-arm64.tar.gz.asc + content_type: text/plain + created_at: "2022-09-21T17:24:59Z" + download_count: 5 + id: 78589572 + label: null + name: helm-v3.10.0-darwin-arm64.tar.gz.asc + node_id: RA_kwDOApspmc4Ery6E + size: 833 + state: uploaded + updated_at: "2022-09-21T17:24:59Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/78589572 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.10.0/helm-v3.10.0-darwin-arm64.tar.gz.sha256.asc + content_type: text/plain + created_at: "2022-09-21T17:24:59Z" + download_count: 5 + id: 78589571 + label: null + name: helm-v3.10.0-darwin-arm64.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4Ery6D + size: 833 + state: uploaded + updated_at: "2022-09-21T17:24:59Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/78589571 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.10.0/helm-v3.10.0-darwin-arm64.tar.gz.sha256sum.asc + content_type: text/plain + created_at: "2022-09-21T17:24:59Z" + download_count: 5 + id: 78589570 + label: null + name: helm-v3.10.0-darwin-arm64.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4Ery6C + size: 833 + state: uploaded + updated_at: "2022-09-21T17:24:59Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/78589570 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.10.0/helm-v3.10.0-linux-386.tar.gz.asc + content_type: text/plain + created_at: "2022-09-21T17:24:58Z" + download_count: 6 + id: 78589569 + label: null + name: helm-v3.10.0-linux-386.tar.gz.asc + node_id: RA_kwDOApspmc4Ery6B + size: 833 + state: uploaded + updated_at: "2022-09-21T17:24:59Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/78589569 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.10.0/helm-v3.10.0-linux-386.tar.gz.sha256.asc + content_type: text/plain + created_at: "2022-09-21T17:24:58Z" + download_count: 5 + id: 78589565 + label: null + name: helm-v3.10.0-linux-386.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4Ery59 + size: 833 + state: uploaded + updated_at: "2022-09-21T17:24:58Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/78589565 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.10.0/helm-v3.10.0-linux-386.tar.gz.sha256sum.asc + content_type: text/plain + created_at: "2022-09-21T17:24:58Z" + download_count: 5 + id: 78589563 + label: null + name: helm-v3.10.0-linux-386.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4Ery57 + size: 833 + state: uploaded + updated_at: "2022-09-21T17:24:58Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/78589563 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.10.0/helm-v3.10.0-linux-amd64.tar.gz.asc + content_type: text/plain + created_at: "2022-09-21T17:24:58Z" + download_count: 18 + id: 78589562 + label: null + name: helm-v3.10.0-linux-amd64.tar.gz.asc + node_id: RA_kwDOApspmc4Ery56 + size: 833 + state: uploaded + updated_at: "2022-09-21T17:24:58Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/78589562 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.10.0/helm-v3.10.0-linux-amd64.tar.gz.sha256.asc + content_type: text/plain + created_at: "2022-09-21T17:24:57Z" + download_count: 17 + id: 78589560 + label: null + name: helm-v3.10.0-linux-amd64.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4Ery54 + size: 833 + state: uploaded + updated_at: "2022-09-21T17:24:58Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/78589560 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.10.0/helm-v3.10.0-linux-amd64.tar.gz.sha256sum.asc + content_type: text/plain + created_at: "2022-09-21T17:24:57Z" + download_count: 5 + id: 78589559 + label: null + name: helm-v3.10.0-linux-amd64.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4Ery53 + size: 833 + state: uploaded + updated_at: "2022-09-21T17:24:57Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/78589559 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.10.0/helm-v3.10.0-linux-arm.tar.gz.asc + content_type: text/plain + created_at: "2022-09-21T17:24:56Z" + download_count: 5 + id: 78589555 + label: null + name: helm-v3.10.0-linux-arm.tar.gz.asc + node_id: RA_kwDOApspmc4Ery5z + size: 833 + state: uploaded + updated_at: "2022-09-21T17:24:56Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/78589555 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.10.0/helm-v3.10.0-linux-arm.tar.gz.sha256.asc + content_type: text/plain + created_at: "2022-09-21T17:24:56Z" + download_count: 5 + id: 78589554 + label: null + name: helm-v3.10.0-linux-arm.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4Ery5y + size: 833 + state: uploaded + updated_at: "2022-09-21T17:24:56Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/78589554 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.10.0/helm-v3.10.0-linux-arm.tar.gz.sha256sum.asc + content_type: text/plain + created_at: "2022-09-21T17:24:56Z" + download_count: 5 + id: 78589553 + label: null + name: helm-v3.10.0-linux-arm.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4Ery5x + size: 833 + state: uploaded + updated_at: "2022-09-21T17:24:56Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/78589553 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.10.0/helm-v3.10.0-linux-arm64.tar.gz.asc + content_type: text/plain + created_at: "2022-09-21T17:24:57Z" + download_count: 11 + id: 78589558 + label: null + name: helm-v3.10.0-linux-arm64.tar.gz.asc + node_id: RA_kwDOApspmc4Ery52 + size: 833 + state: uploaded + updated_at: "2022-09-21T17:24:57Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/78589558 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.10.0/helm-v3.10.0-linux-arm64.tar.gz.sha256.asc + content_type: text/plain + created_at: "2022-09-21T17:24:57Z" + download_count: 11 + id: 78589557 + label: null + name: helm-v3.10.0-linux-arm64.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4Ery51 + size: 833 + state: uploaded + updated_at: "2022-09-21T17:24:57Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/78589557 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.10.0/helm-v3.10.0-linux-arm64.tar.gz.sha256sum.asc + content_type: text/plain + created_at: "2022-09-21T17:24:56Z" + download_count: 5 + id: 78589556 + label: null + name: helm-v3.10.0-linux-arm64.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4Ery50 + size: 833 + state: uploaded + updated_at: "2022-09-21T17:24:57Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/78589556 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.10.0/helm-v3.10.0-linux-ppc64le.tar.gz.asc + content_type: text/plain + created_at: "2022-09-21T17:24:55Z" + download_count: 4 + id: 78589552 + label: null + name: helm-v3.10.0-linux-ppc64le.tar.gz.asc + node_id: RA_kwDOApspmc4Ery5w + size: 833 + state: uploaded + updated_at: "2022-09-21T17:24:56Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/78589552 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.10.0/helm-v3.10.0-linux-ppc64le.tar.gz.sha256.asc + content_type: text/plain + created_at: "2022-09-21T17:24:55Z" + download_count: 4 + id: 78589550 + label: null + name: helm-v3.10.0-linux-ppc64le.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4Ery5u + size: 833 + state: uploaded + updated_at: "2022-09-21T17:24:55Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/78589550 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.10.0/helm-v3.10.0-linux-ppc64le.tar.gz.sha256sum.asc + content_type: text/plain + created_at: "2022-09-21T17:24:55Z" + download_count: 4 + id: 78589549 + label: null + name: helm-v3.10.0-linux-ppc64le.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4Ery5t + size: 833 + state: uploaded + updated_at: "2022-09-21T17:24:55Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/78589549 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.10.0/helm-v3.10.0-linux-s390x.tar.gz.asc + content_type: text/plain + created_at: "2022-09-21T17:24:55Z" + download_count: 4 + id: 78589548 + label: null + name: helm-v3.10.0-linux-s390x.tar.gz.asc + node_id: RA_kwDOApspmc4Ery5s + size: 833 + state: uploaded + updated_at: "2022-09-21T17:24:55Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/78589548 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.10.0/helm-v3.10.0-linux-s390x.tar.gz.sha256.asc + content_type: text/plain + created_at: "2022-09-21T17:24:54Z" + download_count: 4 + id: 78589547 + label: null + name: helm-v3.10.0-linux-s390x.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4Ery5r + size: 833 + state: uploaded + updated_at: "2022-09-21T17:24:55Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/78589547 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.10.0/helm-v3.10.0-linux-s390x.tar.gz.sha256sum.asc + content_type: text/plain + created_at: "2022-09-21T17:24:54Z" + download_count: 4 + id: 78589546 + label: null + name: helm-v3.10.0-linux-s390x.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4Ery5q + size: 833 + state: uploaded + updated_at: "2022-09-21T17:24:54Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/78589546 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.10.0/helm-v3.10.0-windows-amd64.zip.asc + content_type: text/plain + created_at: "2022-09-21T17:24:54Z" + download_count: 5 + id: 78589545 + label: null + name: helm-v3.10.0-windows-amd64.zip.asc + node_id: RA_kwDOApspmc4Ery5p + size: 833 + state: uploaded + updated_at: "2022-09-21T17:24:54Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/78589545 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.10.0/helm-v3.10.0-windows-amd64.zip.sha256.asc + content_type: text/plain + created_at: "2022-09-21T17:24:54Z" + download_count: 5 + id: 78589544 + label: null + name: helm-v3.10.0-windows-amd64.zip.sha256.asc + node_id: RA_kwDOApspmc4Ery5o + size: 833 + state: uploaded + updated_at: "2022-09-21T17:24:54Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/78589544 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.10.0/helm-v3.10.0-windows-amd64.zip.sha256sum.asc + content_type: text/plain + created_at: "2022-09-21T17:24:52Z" + download_count: 4 + id: 78589542 + label: null + name: helm-v3.10.0-windows-amd64.zip.sha256sum.asc + node_id: RA_kwDOApspmc4Ery5m + size: 833 + state: uploaded + updated_at: "2022-09-21T17:24:54Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/78589542 + assets_url: https://api.github.com/repos/helm/helm/releases/77798500/assets + author: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + body: "Helm v3.10.0 is a feature release. Users are encouraged to upgrade + for the best experience.\r\n\r\nThe community keeps growing, and we'd + love to see you there!\r\n\r\n- Join the discussion in [Kubernetes Slack](https://kubernetes.slack.com):\r\n + \ - for questions and just to hang out\r\n - for discussing PRs, code, + and bugs\r\n- Hang out at the Public Developer Call: Thursday, 9:30 Pacific + via [Zoom](https://zoom.us/j/696660622)\r\n- Test, debug, and contribute + charts: [ArtifactHub/packages](https://artifacthub.io/packages/search?kind=0)\r\n\r\n## + Notable Changes\r\n\r\n- Added --set-json flag to set json values.\r\n- + Added support `helm list --no-headers`\r\n- Added --burst-limit option + for client-side throttling limit configuration\r\n\r\n## Installation + and Upgrading\r\n\r\nDownload Helm v3.10.0. The common platform binaries + are here:\r\n\r\n- [MacOS amd64](https://get.helm.sh/helm-v3.10.0-darwin-amd64.tar.gz) + ([checksum](https://get.helm.sh/helm-v3.10.0-darwin-amd64.tar.gz.sha256sum) + / 1e7fd528482ac2ef2d79fe300724b3e07ff6f846a2a9b0b0fe6f5fa05691786b)\r\n- + [MacOS arm64](https://get.helm.sh/helm-v3.10.0-darwin-arm64.tar.gz) ([checksum](https://get.helm.sh/helm-v3.10.0-darwin-arm64.tar.gz.sha256sum) + / f7f6558ebc8211824032a7fdcf0d55ad064cb33ec1eeec3d18057b9fe2e04dbe)\r\n- + [Linux amd64](https://get.helm.sh/helm-v3.10.0-linux-amd64.tar.gz) ([checksum](https://get.helm.sh/helm-v3.10.0-linux-amd64.tar.gz.sha256sum) + / bf56beb418bb529b5e0d6d43d56654c5a03f89c98400b409d1013a33d9586474)\r\n- + [Linux arm](https://get.helm.sh/helm-v3.10.0-linux-arm.tar.gz) ([checksum](https://get.helm.sh/helm-v3.10.0-linux-arm.tar.gz.sha256sum) + / 1f756a2ea800dafb92fb77acc016220fdedee2be07630befd5ffd1410062b39c)\r\n- + [Linux arm64](https://get.helm.sh/helm-v3.10.0-linux-arm64.tar.gz) ([checksum](https://get.helm.sh/helm-v3.10.0-linux-arm64.tar.gz.sha256sum) + / 3b72f5f8a60772fb156d0a4ab93272e8da7ef4d18e6421a7020d7c019f521fc1)\r\n- + [Linux i386](https://get.helm.sh/helm-v3.10.0-linux-386.tar.gz) ([checksum](https://get.helm.sh/helm-v3.10.0-linux-386.tar.gz.sha256sum) + / 423159a7f49f1719dab78f78113ac5d8deae21f99491e79984c6363ae668428d)\r\n- + [Linux ppc64le](https://get.helm.sh/helm-v3.10.0-linux-ppc64le.tar.gz) + ([checksum](https://get.helm.sh/helm-v3.10.0-linux-ppc64le.tar.gz.sha256sum) + / 90f49ef742bf36480b46073a11ca4244670e74f530bf507b488180fbf7334ef3)\r\n- + [Linux s390x](https://get.helm.sh/helm-v3.10.0-linux-s390x.tar.gz) ([checksum](https://get.helm.sh/helm-v3.10.0-linux-s390x.tar.gz.sha256sum) + / f80733880529148c80f864cdb2d83ef26401b83176b8f4744ecddf4589cb4991)\r\n- + [Windows amd64](https://get.helm.sh/helm-v3.10.0-windows-amd64.zip) ([checksum](https://get.helm.sh/helm-v3.10.0-windows-amd64.zip.sha256sum) + / 9d841d55eb7cd6e07be0364bbfa85bceca7e184d50b43b13d20f044403937309)\r\n\r\nThis + release was signed with `672C 657B E06B 4B30 969C 4A57 4614 49C2 5E36 + B98E ` and can be found at @mattfarina [keybase account](https://keybase.io/mattfarina). + Please use the attached signatures for verifying this release using `gpg`.\r\n\r\nThe + [Quickstart Guide](https://helm.sh/docs/intro/quickstart/) will get you + going from there. For **upgrade instructions** or detailed installation + notes, check the [install guide](https://helm.sh/docs/intro/install/). + You can also use a [script to install](https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3) + on any system with `bash`.\r\n\r\n## What's Next\r\n\r\n- 3.10.1 will + contain only bug fixes and be released on October 12, 2022.\r\n- 3.11.0 + is the next feature release and will be released on January 18, 2023\r\n\r\n## + Changelog\r\n\r\n- bump version to v3.10.0 ce66412a723e4d89555dc67217607c6579ffcb21 + (Matt Farina)\r\n- Updating to Kubernetes 1.25 client libs 2108a23d347f238ce451c0014b9907963f2153ae + (Matt Farina)\r\n- Updating the certificates used for testing 7cbec356b4221239ecd4754d9f2c224fc3020e0d + (Matt Farina)\r\n- Updating index handling 225f8d7732aba378378e7507655157b1d26cd514 + (Matt Farina)\r\n- Drop direct github.com/docker/docker dependency ea5365a3d10a5377f1515f3377fdf20e538168c2 + (Mikhail Mazurskiy)\r\n- fix special string in the filename ece46c1d3a44e5f90cca0cbb96ae302dc47885cb + (d-d-up)\r\n- chore: add oci install description d1c0b7e0d099a75512f57ee83ee582d2d1da69c0 + (longkai)\r\n- Fixing x509 test on darwin b3aa0b4118c20cc63d3da011199a346b9c92b386 + (Matt Farina)\r\n- Bump k8s.io/kube-openapi to fix CVE-2022-1996 in github.com/emicklei/go-restful + 1e0f8a4ee9991d1244b8576021011ef45982e955 (Guilherme Macedo)\r\n- fixes + #11142 missing array length check on release b9f347a574851d01f058663d7b65a108b9f980bc + (Arvid E. Picciani)\r\n- chore(deps): bump github.com/stretchr/testify + from 1.7.5 to 1.8.0 0c9de28b581f71ff1edbc336550860b05e594c63 (dependabot[bot])\r\n- + Upgrading to Kubernetes 1.24.2 211bd2b60a79dd6a8b4b79623c3df7bfa7b0f7e4 + (Martin Hickey)\r\n- Bump Oras to 1.2.0 51e6c8e4e024486b6de1fb248119b46f020db9af + (Martin Hickey)\r\n- fix: use `go install` instead of `go get` aa6e82bac8db0b50766c03276dd0fed1bba6208c + (Matthew Fisher)\r\n- bump Go 1.18 39b0a82365a70d0a100783e1735a480e1aefcbc0 + (yxxhero)\r\n- fix: improve logging & safety of statefulSetReady 7c74f1dd027709156c3345e1965693f04b8dd9ac + (Dominic Evans)\r\n- make token caching an opt in feature 42a04c76a48e6cdbd19debf042b2c9df34cf9ac6 + (Soule BA)\r\n- chore(deps): bump github.com/stretchr/testify from 1.7.4 + to 1.7.5 0acd81b43e95cc239e20f5bd6dcfaeb33dae8dc1 (dependabot[bot])\r\n- + chore(deps): bump github.com/rubenv/sql-migrate from 1.1.1 to 1.1.2 ccc104a208bfd612cee57b891dc71435d1c6434d + (dependabot[bot])\r\n- chore(deps): bump github.com/spf13/cobra from 1.4.0 + to 1.5.0 (#11075) 3ff331fb14a998fd6c953bfb684337d8720f96ba (dependabot[bot])\r\n- + chore(deps): bump github.com/stretchr/testify from 1.7.1 to 1.7.4 994d78651176832c1d146291cabbd2ea8caf494f + (dependabot[bot])\r\n- Upgrading to Kubernetes 1.24.1 packages 5ef01c2714586dce761be5004f6752122044b1e1 + (Matt Farina)\r\n- chore(deps): bump github.com/Masterminds/squirrel from + 1.5.2 to 1.5.3 fe2a66c63c92f260c521b364800edab4e193a388 (dependabot[bot])\r\n- + feat(*): add flags/env for kube api tls overrides 687852e4feb50749eb64616e47446f1623e6d736 + (Justen Walker)\r\n- Add --burst-limit option for client-side throttling + limit configuration (#10842) 823d92942119dfa07fd763bf6306bd67686811a8 + (Igor Sutton)\r\n- chore(deps): bump github.com/lib/pq from 1.10.5 to + 1.10.6 f3cfd4f6cc7ac0712f19c1767b1962c98e2bb3d7 (dependabot[bot])\r\n- + chore(deps): bump oras.land/oras-go from 1.1.0 to 1.1.1 a3bb2f71e09e64ecd3a7814e5043b730fc42966a + (dependabot[bot])\r\n- chore(deps): bump github.com/evanphx/json-patch + 606633cc5e831532a093ec893a09fff325f1b3a9 (dependabot[bot])\r\n- Bump github.com/lib/pq + from 1.10.4 to 1.10.5 ede591f65d389e285ce6a61de894346c21f3418e (dependabot[bot])\r\n- + build(deps): bump github.com/containerd/containerd from 1.6.3 to 1.6.4 + 8b6904869a48118291a406b90bd98a01e12237ba (dependabot[bot])\r\n- build(deps): + bump github.com/docker/docker 67ed6e29991ef390e6e822491b52d4cbb3071e11 + (dependabot[bot])\r\n- bump version to v3.9.0 1db28a2311bd4893d39679de708e5a77a751c4d2 + (Matt Farina)\r\n- build(deps): bump github.com/jmoiron/sqlx from 1.3.4 + to 1.3.5 43aa3132ff97ff4905397846715079ad68e0e2b6 (dependabot[bot])\r\n- + Bump github.com/BurntSushi/toml from 1.0.0 to 1.1.0 aafc920185be5024e66ddef17e69e385ba4122fb + (dependabot[bot])\r\n- Fixed helm uninstall not deleting the resource. + fe00c9296d50acc490dd08cd95eb014d37409716 (Mayank Thakur)\r\n- Fix UT d8c0e01132705b427d27835f9d3e2e8bb3e4da22 + (stan-sz)\r\n- Fix linter 6c55d9e3e9f45afd576a9480fcad88d7d9d12ef5 (stan-sz)\r\n- + Update install.go a7e4ae752af018b357f551c653c2b39bc5720313 (stan-sz)\r\n- + Log error message on failed download 660e4ffe7aae8d33dfe869d01ae75156662365ac + (stan-sz)\r\n- Add support `helm list --no-headers` d76f86b01ccf734a134c99a6823bd435eb4401d8 + (suzaku)\r\n- update go.mod d20c954819e77243e36528f268873d09097925d5 (yxxhero)\r\n- + fix --registry-config issue 9f199b6517c21394bca555983c70fc232d65014c (yxxhero)\r\n- + feat: add --set-json flag to set json values. 11e7d0cd73fb924d3347228c68d10ccdb123b6c6 + (Luca Di Rocco)\r\n- fix(helm): ignore file-not-found error for `helm + repo list -o json` 94779dc99f266adde81882412ee944072da3b136 (Teo Klestrup + Rƶijezon)\r\n" + created_at: "2022-09-21T16:25:03Z" + draft: false + html_url: https://github.com/helm/helm/releases/tag/v3.10.0 + id: 77798500 + mentions_count: 1 + name: Helm 3.10.0 + node_id: RE_kwDOApspmc4Eoxxk + prerelease: false + published_at: "2022-09-21T17:32:35Z" + reactions: + "+1": 0 + "-1": 0 + confused: 0 + eyes: 0 + heart: 0 + hooray: 2 + laugh: 0 + rocket: 2 + total_count: 4 + url: https://api.github.com/repos/helm/helm/releases/77798500/reactions + tag_name: v3.10.0 + tarball_url: https://api.github.com/repos/helm/helm/tarball/v3.10.0 + target_commitish: release-3.10 + upload_url: https://uploads.github.com/repos/helm/helm/releases/77798500/assets{?name,label} + url: https://api.github.com/repos/helm/helm/releases/77798500 + zipball_url: https://api.github.com/repos/helm/helm/zipball/v3.10.0 + 3.10.1: + githubRelease: + assets: + - browser_download_url: https://github.com/helm/helm/releases/download/v3.10.1/helm-v3.10.1-darwin-amd64.tar.gz.asc + content_type: text/plain + created_at: "2022-10-12T20:51:03Z" + download_count: 1 + id: 80808336 + label: null + name: helm-v3.10.1-darwin-amd64.tar.gz.asc + node_id: RA_kwDOApspmc4E0QmQ + size: 833 + state: uploaded + updated_at: "2022-10-12T20:51:03Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/80808336 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.10.1/helm-v3.10.1-darwin-amd64.tar.gz.sha256.asc + content_type: text/plain + created_at: "2022-10-12T20:44:50Z" + download_count: 1 + id: 80807921 + label: null + name: helm-v3.10.1-darwin-amd64.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4E0Qfx + size: 833 + state: uploaded + updated_at: "2022-10-12T20:44:51Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/80807921 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.10.1/helm-v3.10.1-darwin-amd64.tar.gz.sha256sum.asc + content_type: text/plain + created_at: "2022-10-12T20:44:51Z" + download_count: 1 + id: 80807922 + label: null + name: helm-v3.10.1-darwin-amd64.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4E0Qfy + size: 833 + state: uploaded + updated_at: "2022-10-12T20:44:51Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/80807922 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.10.1/helm-v3.10.1-darwin-arm64.tar.gz.asc + content_type: text/plain + created_at: "2022-10-12T20:44:51Z" + download_count: 1 + id: 80807923 + label: null + name: helm-v3.10.1-darwin-arm64.tar.gz.asc + node_id: RA_kwDOApspmc4E0Qfz + size: 833 + state: uploaded + updated_at: "2022-10-12T20:44:51Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/80807923 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.10.1/helm-v3.10.1-darwin-arm64.tar.gz.sha256.asc + content_type: text/plain + created_at: "2022-10-12T20:44:51Z" + download_count: 1 + id: 80807924 + label: null + name: helm-v3.10.1-darwin-arm64.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4E0Qf0 + size: 833 + state: uploaded + updated_at: "2022-10-12T20:44:51Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/80807924 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.10.1/helm-v3.10.1-darwin-arm64.tar.gz.sha256sum.asc + content_type: text/plain + created_at: "2022-10-12T20:44:51Z" + download_count: 1 + id: 80807925 + label: null + name: helm-v3.10.1-darwin-arm64.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4E0Qf1 + size: 833 + state: uploaded + updated_at: "2022-10-12T20:44:52Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/80807925 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.10.1/helm-v3.10.1-linux-386.tar.gz.asc + content_type: text/plain + created_at: "2022-10-12T20:44:52Z" + download_count: 1 + id: 80807926 + label: null + name: helm-v3.10.1-linux-386.tar.gz.asc + node_id: RA_kwDOApspmc4E0Qf2 + size: 833 + state: uploaded + updated_at: "2022-10-12T20:44:52Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/80807926 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.10.1/helm-v3.10.1-linux-386.tar.gz.sha256.asc + content_type: text/plain + created_at: "2022-10-12T20:44:52Z" + download_count: 1 + id: 80807927 + label: null + name: helm-v3.10.1-linux-386.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4E0Qf3 + size: 833 + state: uploaded + updated_at: "2022-10-12T20:44:52Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/80807927 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.10.1/helm-v3.10.1-linux-386.tar.gz.sha256sum.asc + content_type: text/plain + created_at: "2022-10-12T20:44:52Z" + download_count: 1 + id: 80807929 + label: null + name: helm-v3.10.1-linux-386.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4E0Qf5 + size: 833 + state: uploaded + updated_at: "2022-10-12T20:44:52Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/80807929 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.10.1/helm-v3.10.1-linux-amd64.tar.gz.asc + content_type: text/plain + created_at: "2022-10-12T20:44:52Z" + download_count: 19 + id: 80807931 + label: null + name: helm-v3.10.1-linux-amd64.tar.gz.asc + node_id: RA_kwDOApspmc4E0Qf7 + size: 833 + state: uploaded + updated_at: "2022-10-12T20:44:53Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/80807931 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.10.1/helm-v3.10.1-linux-amd64.tar.gz.sha256.asc + content_type: text/plain + created_at: "2022-10-12T20:44:53Z" + download_count: 13 + id: 80807934 + label: null + name: helm-v3.10.1-linux-amd64.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4E0Qf- + size: 833 + state: uploaded + updated_at: "2022-10-12T20:44:53Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/80807934 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.10.1/helm-v3.10.1-linux-amd64.tar.gz.sha256sum.asc + content_type: text/plain + created_at: "2022-10-12T20:44:53Z" + download_count: 1 + id: 80807935 + label: null + name: helm-v3.10.1-linux-amd64.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4E0Qf_ + size: 833 + state: uploaded + updated_at: "2022-10-12T20:44:53Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/80807935 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.10.1/helm-v3.10.1-linux-arm.tar.gz.asc + content_type: text/plain + created_at: "2022-10-12T20:44:54Z" + download_count: 1 + id: 80807940 + label: null + name: helm-v3.10.1-linux-arm.tar.gz.asc + node_id: RA_kwDOApspmc4E0QgE + size: 833 + state: uploaded + updated_at: "2022-10-12T20:44:55Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/80807940 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.10.1/helm-v3.10.1-linux-arm.tar.gz.sha256.asc + content_type: text/plain + created_at: "2022-10-12T20:44:55Z" + download_count: 1 + id: 80807941 + label: null + name: helm-v3.10.1-linux-arm.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4E0QgF + size: 833 + state: uploaded + updated_at: "2022-10-12T20:44:55Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/80807941 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.10.1/helm-v3.10.1-linux-arm.tar.gz.sha256sum.asc + content_type: text/plain + created_at: "2022-10-12T20:44:55Z" + download_count: 1 + id: 80807942 + label: null + name: helm-v3.10.1-linux-arm.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4E0QgG + size: 833 + state: uploaded + updated_at: "2022-10-12T20:44:55Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/80807942 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.10.1/helm-v3.10.1-linux-arm64.tar.gz.asc + content_type: text/plain + created_at: "2022-10-12T20:44:53Z" + download_count: 10 + id: 80807936 + label: null + name: helm-v3.10.1-linux-arm64.tar.gz.asc + node_id: RA_kwDOApspmc4E0QgA + size: 833 + state: uploaded + updated_at: "2022-10-12T20:44:54Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/80807936 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.10.1/helm-v3.10.1-linux-arm64.tar.gz.sha256.asc + content_type: text/plain + created_at: "2022-10-12T20:44:54Z" + download_count: 9 + id: 80807938 + label: null + name: helm-v3.10.1-linux-arm64.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4E0QgC + size: 833 + state: uploaded + updated_at: "2022-10-12T20:44:54Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/80807938 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.10.1/helm-v3.10.1-linux-arm64.tar.gz.sha256sum.asc + content_type: text/plain + created_at: "2022-10-12T20:44:54Z" + download_count: 1 + id: 80807939 + label: null + name: helm-v3.10.1-linux-arm64.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4E0QgD + size: 833 + state: uploaded + updated_at: "2022-10-12T20:44:54Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/80807939 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.10.1/helm-v3.10.1-linux-ppc64le.tar.gz.asc + content_type: text/plain + created_at: "2022-10-12T20:44:55Z" + download_count: 2 + id: 80807943 + label: null + name: helm-v3.10.1-linux-ppc64le.tar.gz.asc + node_id: RA_kwDOApspmc4E0QgH + size: 833 + state: uploaded + updated_at: "2022-10-12T20:44:55Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/80807943 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.10.1/helm-v3.10.1-linux-ppc64le.tar.gz.sha256.asc + content_type: text/plain + created_at: "2022-10-12T20:44:55Z" + download_count: 1 + id: 80807944 + label: null + name: helm-v3.10.1-linux-ppc64le.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4E0QgI + size: 833 + state: uploaded + updated_at: "2022-10-12T20:44:56Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/80807944 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.10.1/helm-v3.10.1-linux-ppc64le.tar.gz.sha256sum.asc + content_type: text/plain + created_at: "2022-10-12T20:44:56Z" + download_count: 1 + id: 80807945 + label: null + name: helm-v3.10.1-linux-ppc64le.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4E0QgJ + size: 833 + state: uploaded + updated_at: "2022-10-12T20:44:56Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/80807945 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.10.1/helm-v3.10.1-linux-s390x.tar.gz.asc + content_type: text/plain + created_at: "2022-10-12T20:44:56Z" + download_count: 2 + id: 80807946 + label: null + name: helm-v3.10.1-linux-s390x.tar.gz.asc + node_id: RA_kwDOApspmc4E0QgK + size: 833 + state: uploaded + updated_at: "2022-10-12T20:44:56Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/80807946 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.10.1/helm-v3.10.1-linux-s390x.tar.gz.sha256.asc + content_type: text/plain + created_at: "2022-10-12T20:44:56Z" + download_count: 1 + id: 80807948 + label: null + name: helm-v3.10.1-linux-s390x.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4E0QgM + size: 833 + state: uploaded + updated_at: "2022-10-12T20:44:56Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/80807948 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.10.1/helm-v3.10.1-linux-s390x.tar.gz.sha256sum.asc + content_type: text/plain + created_at: "2022-10-12T20:44:56Z" + download_count: 1 + id: 80807949 + label: null + name: helm-v3.10.1-linux-s390x.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4E0QgN + size: 833 + state: uploaded + updated_at: "2022-10-12T20:44:57Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/80807949 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.10.1/helm-v3.10.1-windows-amd64.zip.asc + content_type: text/plain + created_at: "2022-10-12T20:44:57Z" + download_count: 1 + id: 80807950 + label: null + name: helm-v3.10.1-windows-amd64.zip.asc + node_id: RA_kwDOApspmc4E0QgO + size: 833 + state: uploaded + updated_at: "2022-10-12T20:44:57Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/80807950 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.10.1/helm-v3.10.1-windows-amd64.zip.sha256.asc + content_type: text/plain + created_at: "2022-10-12T20:44:57Z" + download_count: 1 + id: 80807951 + label: null + name: helm-v3.10.1-windows-amd64.zip.sha256.asc + node_id: RA_kwDOApspmc4E0QgP + size: 833 + state: uploaded + updated_at: "2022-10-12T20:44:57Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/80807951 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.10.1/helm-v3.10.1-windows-amd64.zip.sha256sum.asc + content_type: text/plain + created_at: "2022-10-12T20:44:57Z" + download_count: 1 + id: 80807952 + label: null + name: helm-v3.10.1-windows-amd64.zip.sha256sum.asc + node_id: RA_kwDOApspmc4E0QgQ + size: 833 + state: uploaded + updated_at: "2022-10-12T20:44:57Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/80807952 + assets_url: https://api.github.com/repos/helm/helm/releases/79689336/assets + author: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + body: "Helm v3.10.1 is a patch release. Users are encouraged to upgrade + for the best experience. Users are encouraged to upgrade for the best + experience.\r\n\r\nThe community keeps growing, and we'd love to see you + there!\r\n\r\n- Join the discussion in [Kubernetes Slack](https://kubernetes.slack.com):\r\n + \ - for questions and just to hang out\r\n - for discussing PRs, code, + and bugs\r\n- Hang out at the Public Developer Call: Thursday, 9:30 Pacific + via [Zoom](https://zoom.us/j/696660622)\r\n- Test, debug, and contribute + charts: [ArtifactHub/packages](https://artifacthub.io/packages/search?kind=0)\r\n\r\n## + Installation and Upgrading\r\n\r\nDownload Helm v3.10.1. The common platform + binaries are here:\r\n\r\n- [MacOS amd64](https://get.helm.sh/helm-v3.10.1-darwin-amd64.tar.gz) + ([checksum](https://get.helm.sh/helm-v3.10.1-darwin-amd64.tar.gz.sha256sum) + / e7f2db0df45a5011c1df8c82efde1e306a93a31eba4696d27cd751917e549ac6)\r\n- + [MacOS arm64](https://get.helm.sh/helm-v3.10.1-darwin-arm64.tar.gz) ([checksum](https://get.helm.sh/helm-v3.10.1-darwin-arm64.tar.gz.sha256sum) + / 28a079a61c393d125c5d5e1a8e20a04b72c709ccfa8e7822f3f17bb1ad2bbc22)\r\n- + [Linux amd64](https://get.helm.sh/helm-v3.10.1-linux-amd64.tar.gz) ([checksum](https://get.helm.sh/helm-v3.10.1-linux-amd64.tar.gz.sha256sum) + / c12d2cd638f2d066fec123d0bd7f010f32c643afdf288d39a4610b1f9cb32af3)\r\n- + [Linux arm](https://get.helm.sh/helm-v3.10.1-linux-arm.tar.gz) ([checksum](https://get.helm.sh/helm-v3.10.1-linux-arm.tar.gz.sha256sum) + / 309f56a35185023262b4f20f7315d4e60854b517243444b34f5a458c81b33009)\r\n- + [Linux arm64](https://get.helm.sh/helm-v3.10.1-linux-arm64.tar.gz) ([checksum](https://get.helm.sh/helm-v3.10.1-linux-arm64.tar.gz.sha256sum) + / d04b38d439ab8655abb4cb9ccc1efa8a3fe95f3f68af46d9137c6b7985491833)\r\n- + [Linux i386](https://get.helm.sh/helm-v3.10.1-linux-386.tar.gz) ([checksum](https://get.helm.sh/helm-v3.10.1-linux-386.tar.gz.sha256sum) + / fb75a02d8a6e9ba6dd458f47dc0771a0f15c1842b6f6e2928c9136e676657993)\r\n- + [Linux ppc64le](https://get.helm.sh/helm-v3.10.1-linux-ppc64le.tar.gz) + ([checksum](https://get.helm.sh/helm-v3.10.1-linux-ppc64le.tar.gz.sha256sum) + / 855ab37613b393c68d50b4355273df2322f27db08b1deca8807bac80343a8a64)\r\n- + [Linux s390x](https://get.helm.sh/helm-v3.10.1-linux-s390x.tar.gz) ([checksum](https://get.helm.sh/helm-v3.10.1-linux-s390x.tar.gz.sha256sum) + / e51220b4582a3cad4b45330c96e1b0408d33e25f90a9e66b06649903acf1bed1)\r\n- + [Windows amd64](https://get.helm.sh/helm-v3.10.1-windows-amd64.zip) ([checksum](https://get.helm.sh/helm-v3.10.1-windows-amd64.zip.sha256sum) + / 4c6f89f005a86665e3e90c28d36446434945594aac960a8d5a2d1c4fb1e53522)\r\n\r\nThis + release was signed with `672C 657B E06B 4B30 969C 4A57 4614 49C2 5E36 + B98E ` and can be found at @mattfarina [keybase account](https://keybase.io/mattfarina). + Please use the attached signatures for verifying this release using `gpg`.\r\n\r\nThe + [Quickstart Guide](https://helm.sh/docs/intro/quickstart/) will get you + going from there. For **upgrade instructions** or detailed installation + notes, check the [install guide](https://helm.sh/docs/intro/install/). + You can also use a [script to install](https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3) + on any system with `bash`.\r\n\r\n## What's Next\r\n\r\n- 3.10.2 will + contain only bug fixes and be released on November 9, 2022\r\n- 3.11.1 + is the next feature releaseand be released on January 18, 2023\r\n\r\n## + Changelog\r\n\r\n- Updating the deb location for azure cli 9f88ccb6aee40b9a0535fcc7efea6055e1ef72c9 + (Matt Farina)\r\n- Updating the repo the azure cli is installed from a59afc47d6c6b7946f5734bb51a7d1cf2599a0c1 + (Matt Farina)\r\n- Updating to kubernetes 1.25.2 packages 35af809b4db460a8834b05d78a58eddcfc236558 + (Matt Farina)\r\n- one defer 97780c7ecc85dcb8e7ba302d50403152b2502ce6 + (CI)\r\n- don't change r.CachePath 9f61b0a6bd8686a0c509ec0bd4ec4e449d930c19 + (CI)\r\n- avoid adding new public function 75a1369794499daa7223271996781cadaf2c1adf + (CI)\r\n- fix tests 959acd8a1da38d33b5069f083a040fa237c04bfd (CI)\r\n- + fix: clean up temp files in FindChartInAuthAndTLSAndPassRepoURL (#11171) + f6830f7b0ab91909454fbdc476b4e760d6525abc (CI)\r\n- Allow CGO_ENABLED to + be overridden for build 91409241993efe6032e078d73f95163f0dc550bc (Joe + Julian)\r\n- update: Optimize the error message 23ff142d8b078287c3191260a10972699bf741a8 + (wujunwei)\r\n- add nil judge for dependency , maintainers validate and + some testcase. f22e26085ca44eef41f9c080374fcc056dd73cbb (wujunwei)\r\n- + Fix URL with encoded path support for ChartDownloader 4e075315f81311372568d73f2c929577d10c0de2 + (Mathieu Parent)\r\n- fix: add cases.NoLower option for we can get same + effect to strings.Title 48444319694a4b6110541ef7bfea9a8627c1aa39 (wujunwei)\r\n- + Tolerate temporary errors from etcdserver 802a22903b9666aaba73a6e58602f4ff0dc9cf01 + (Davanum Srinivas)\r\n" + created_at: "2022-10-12T20:12:43Z" + draft: false + html_url: https://github.com/helm/helm/releases/tag/v3.10.1 + id: 79689336 + mentions_count: 1 + name: Helm 3.10.1 + node_id: RE_kwDOApspmc4Ev_Z4 + prerelease: false + published_at: "2022-10-12T20:51:20Z" + tag_name: v3.10.1 + tarball_url: https://api.github.com/repos/helm/helm/tarball/v3.10.1 + target_commitish: release-3.10 + upload_url: https://uploads.github.com/repos/helm/helm/releases/79689336/assets{?name,label} + url: https://api.github.com/repos/helm/helm/releases/79689336 + zipball_url: https://api.github.com/repos/helm/helm/zipball/v3.10.1 + 3.10.2: + githubRelease: + assets: + - browser_download_url: https://github.com/helm/helm/releases/download/v3.10.2/helm-v3.10.2-darwin-amd64.tar.gz.asc + content_type: application/octet-stream + created_at: "2022-11-10T17:12:16Z" + download_count: 2 + id: 84166626 + label: null + name: helm-v3.10.2-darwin-amd64.tar.gz.asc + node_id: RA_kwDOApspmc4FBEfi + size: 833 + state: uploaded + updated_at: "2022-11-10T17:12:17Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/84166626 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.10.2/helm-v3.10.2-darwin-amd64.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2022-11-10T17:12:17Z" + download_count: 1 + id: 84166628 + label: null + name: helm-v3.10.2-darwin-amd64.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4FBEfk + size: 833 + state: uploaded + updated_at: "2022-11-10T17:12:17Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/84166628 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.10.2/helm-v3.10.2-darwin-amd64.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2022-11-10T17:12:17Z" + download_count: 1 + id: 84166629 + label: null + name: helm-v3.10.2-darwin-amd64.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4FBEfl + size: 833 + state: uploaded + updated_at: "2022-11-10T17:12:18Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/84166629 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.10.2/helm-v3.10.2-darwin-arm64.tar.gz.asc + content_type: application/octet-stream + created_at: "2022-11-10T17:12:18Z" + download_count: 1 + id: 84166630 + label: null + name: helm-v3.10.2-darwin-arm64.tar.gz.asc + node_id: RA_kwDOApspmc4FBEfm + size: 833 + state: uploaded + updated_at: "2022-11-10T17:12:18Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/84166630 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.10.2/helm-v3.10.2-darwin-arm64.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2022-11-10T17:12:18Z" + download_count: 1 + id: 84166632 + label: null + name: helm-v3.10.2-darwin-arm64.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4FBEfo + size: 833 + state: uploaded + updated_at: "2022-11-10T17:12:18Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/84166632 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.10.2/helm-v3.10.2-darwin-arm64.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2022-11-10T17:12:18Z" + download_count: 1 + id: 84166633 + label: null + name: helm-v3.10.2-darwin-arm64.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4FBEfp + size: 833 + state: uploaded + updated_at: "2022-11-10T17:12:19Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/84166633 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.10.2/helm-v3.10.2-linux-386.tar.gz.asc + content_type: application/octet-stream + created_at: "2022-11-10T17:12:19Z" + download_count: 1 + id: 84166635 + label: null + name: helm-v3.10.2-linux-386.tar.gz.asc + node_id: RA_kwDOApspmc4FBEfr + size: 833 + state: uploaded + updated_at: "2022-11-10T17:12:19Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/84166635 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.10.2/helm-v3.10.2-linux-386.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2022-11-10T17:12:19Z" + download_count: 1 + id: 84166636 + label: null + name: helm-v3.10.2-linux-386.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4FBEfs + size: 833 + state: uploaded + updated_at: "2022-11-10T17:12:20Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/84166636 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.10.2/helm-v3.10.2-linux-386.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2022-11-10T17:12:20Z" + download_count: 1 + id: 84166637 + label: null + name: helm-v3.10.2-linux-386.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4FBEft + size: 833 + state: uploaded + updated_at: "2022-11-10T17:12:20Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/84166637 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.10.2/helm-v3.10.2-linux-amd64.tar.gz.asc + content_type: application/octet-stream + created_at: "2022-11-10T17:12:20Z" + download_count: 26 + id: 84166639 + label: null + name: helm-v3.10.2-linux-amd64.tar.gz.asc + node_id: RA_kwDOApspmc4FBEfv + size: 833 + state: uploaded + updated_at: "2022-11-10T17:12:21Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/84166639 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.10.2/helm-v3.10.2-linux-amd64.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2022-11-10T17:12:21Z" + download_count: 22 + id: 84166640 + label: null + name: helm-v3.10.2-linux-amd64.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4FBEfw + size: 833 + state: uploaded + updated_at: "2022-11-10T17:12:21Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/84166640 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.10.2/helm-v3.10.2-linux-amd64.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2022-11-10T17:12:21Z" + download_count: 1 + id: 84166641 + label: null + name: helm-v3.10.2-linux-amd64.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4FBEfx + size: 833 + state: uploaded + updated_at: "2022-11-10T17:12:22Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/84166641 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.10.2/helm-v3.10.2-linux-arm.tar.gz.asc + content_type: application/octet-stream + created_at: "2022-11-10T17:12:22Z" + download_count: 1 + id: 84166644 + label: null + name: helm-v3.10.2-linux-arm.tar.gz.asc + node_id: RA_kwDOApspmc4FBEf0 + size: 833 + state: uploaded + updated_at: "2022-11-10T17:12:22Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/84166644 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.10.2/helm-v3.10.2-linux-arm.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2022-11-10T17:12:22Z" + download_count: 1 + id: 84166645 + label: null + name: helm-v3.10.2-linux-arm.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4FBEf1 + size: 833 + state: uploaded + updated_at: "2022-11-10T17:12:22Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/84166645 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.10.2/helm-v3.10.2-linux-arm.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2022-11-10T17:12:22Z" + download_count: 1 + id: 84166646 + label: null + name: helm-v3.10.2-linux-arm.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4FBEf2 + size: 833 + state: uploaded + updated_at: "2022-11-10T17:12:23Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/84166646 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.10.2/helm-v3.10.2-linux-arm64.tar.gz.asc + content_type: application/octet-stream + created_at: "2022-11-10T17:12:23Z" + download_count: 13 + id: 84166648 + label: null + name: helm-v3.10.2-linux-arm64.tar.gz.asc + node_id: RA_kwDOApspmc4FBEf4 + size: 833 + state: uploaded + updated_at: "2022-11-10T17:12:23Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/84166648 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.10.2/helm-v3.10.2-linux-arm64.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2022-11-10T17:12:23Z" + download_count: 13 + id: 84166649 + label: null + name: helm-v3.10.2-linux-arm64.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4FBEf5 + size: 833 + state: uploaded + updated_at: "2022-11-10T17:12:24Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/84166649 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.10.2/helm-v3.10.2-linux-arm64.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2022-11-10T17:12:24Z" + download_count: 1 + id: 84166651 + label: null + name: helm-v3.10.2-linux-arm64.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4FBEf7 + size: 833 + state: uploaded + updated_at: "2022-11-10T17:12:24Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/84166651 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.10.2/helm-v3.10.2-linux-ppc64le.tar.gz.asc + content_type: application/octet-stream + created_at: "2022-11-10T17:12:24Z" + download_count: 1 + id: 84166654 + label: null + name: helm-v3.10.2-linux-ppc64le.tar.gz.asc + node_id: RA_kwDOApspmc4FBEf- + size: 833 + state: uploaded + updated_at: "2022-11-10T17:12:25Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/84166654 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.10.2/helm-v3.10.2-linux-ppc64le.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2022-11-10T17:12:25Z" + download_count: 1 + id: 84166656 + label: null + name: helm-v3.10.2-linux-ppc64le.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4FBEgA + size: 833 + state: uploaded + updated_at: "2022-11-10T17:12:25Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/84166656 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.10.2/helm-v3.10.2-linux-ppc64le.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2022-11-10T17:12:25Z" + download_count: 1 + id: 84166658 + label: null + name: helm-v3.10.2-linux-ppc64le.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4FBEgC + size: 833 + state: uploaded + updated_at: "2022-11-10T17:12:26Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/84166658 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.10.2/helm-v3.10.2-linux-s390x.tar.gz.asc + content_type: application/octet-stream + created_at: "2022-11-10T17:12:26Z" + download_count: 1 + id: 84166659 + label: null + name: helm-v3.10.2-linux-s390x.tar.gz.asc + node_id: RA_kwDOApspmc4FBEgD + size: 833 + state: uploaded + updated_at: "2022-11-10T17:12:26Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/84166659 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.10.2/helm-v3.10.2-linux-s390x.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2022-11-10T17:12:26Z" + download_count: 1 + id: 84166662 + label: null + name: helm-v3.10.2-linux-s390x.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4FBEgG + size: 833 + state: uploaded + updated_at: "2022-11-10T17:12:26Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/84166662 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.10.2/helm-v3.10.2-linux-s390x.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2022-11-10T17:12:26Z" + download_count: 1 + id: 84166663 + label: null + name: helm-v3.10.2-linux-s390x.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4FBEgH + size: 833 + state: uploaded + updated_at: "2022-11-10T17:12:27Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/84166663 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.10.2/helm-v3.10.2-windows-amd64.zip.asc + content_type: application/octet-stream + created_at: "2022-11-10T17:12:27Z" + download_count: 2 + id: 84166666 + label: null + name: helm-v3.10.2-windows-amd64.zip.asc + node_id: RA_kwDOApspmc4FBEgK + size: 833 + state: uploaded + updated_at: "2022-11-10T17:12:27Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/84166666 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.10.2/helm-v3.10.2-windows-amd64.zip.sha256.asc + content_type: application/octet-stream + created_at: "2022-11-10T17:12:27Z" + download_count: 1 + id: 84166668 + label: null + name: helm-v3.10.2-windows-amd64.zip.sha256.asc + node_id: RA_kwDOApspmc4FBEgM + size: 833 + state: uploaded + updated_at: "2022-11-10T17:12:28Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/84166668 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.10.2/helm-v3.10.2-windows-amd64.zip.sha256sum.asc + content_type: application/octet-stream + created_at: "2022-11-10T17:12:28Z" + download_count: 1 + id: 84166670 + label: null + name: helm-v3.10.2-windows-amd64.zip.sha256sum.asc + node_id: RA_kwDOApspmc4FBEgO + size: 833 + state: uploaded + updated_at: "2022-11-10T17:12:28Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/84166670 + assets_url: https://api.github.com/repos/helm/helm/releases/82711070/assets + author: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + body: "Helm v3.10.2 is a patch release. Users are encouraged to upgrade + for the best experience. Users are encouraged to upgrade for the best + experience.\r\n\r\nThe community keeps growing, and we'd love to see you + there!\r\n\r\n- Join the discussion in [Kubernetes Slack](https://kubernetes.slack.com):\r\n + \ - for questions and just to hang out\r\n - for discussing PRs, code, + and bugs\r\n- Hang out at the Public Developer Call: Thursday, 9:30 Pacific + via [Zoom](https://zoom.us/j/696660622)\r\n- Test, debug, and contribute + charts: [ArtifactHub/packages](https://artifacthub.io/packages/search?kind=0)\r\n\r\n## + Installation and Upgrading\r\n\r\nDownload Helm v3.10.2. The common platform + binaries are here:\r\n\r\n- [MacOS amd64](https://get.helm.sh/helm-v3.10.2-darwin-amd64.tar.gz) + ([checksum](https://get.helm.sh/helm-v3.10.2-darwin-amd64.tar.gz.sha256sum) + / e889960e4c1d7e2dfdb91b102becfaf22700cb86dc3e3553d9bebd7bab5a3803)\r\n- + [MacOS arm64](https://get.helm.sh/helm-v3.10.2-darwin-arm64.tar.gz) ([checksum](https://get.helm.sh/helm-v3.10.2-darwin-arm64.tar.gz.sha256sum) + / 460441eea1764ca438e29fa0e38aa0d2607402f753cb656a4ab0da9223eda494)\r\n- + [Linux amd64](https://get.helm.sh/helm-v3.10.2-linux-amd64.tar.gz) ([checksum](https://get.helm.sh/helm-v3.10.2-linux-amd64.tar.gz.sha256sum) + / 2315941a13291c277dac9f65e75ead56386440d3907e0540bf157ae70f188347)\r\n- + [Linux arm](https://get.helm.sh/helm-v3.10.2-linux-arm.tar.gz) ([checksum](https://get.helm.sh/helm-v3.10.2-linux-arm.tar.gz.sha256sum) + / 25af344f46348958baa1c758cdf3b204ede3ddc483be1171ed3738d47efd0aae)\r\n- + [Linux arm64](https://get.helm.sh/helm-v3.10.2-linux-arm64.tar.gz) ([checksum](https://get.helm.sh/helm-v3.10.2-linux-arm64.tar.gz.sha256sum) + / 57fa17b6bb040a3788116557a72579f2180ea9620b4ee8a9b7244e5901df02e4)\r\n- + [Linux i386](https://get.helm.sh/helm-v3.10.2-linux-386.tar.gz) ([checksum](https://get.helm.sh/helm-v3.10.2-linux-386.tar.gz.sha256sum) + / ac9cbef2ec1237e2723ee8d3a92d1c4525a2da7cecc11336ba67de9bb6b473f0)\r\n- + [Linux ppc64le](https://get.helm.sh/helm-v3.10.2-linux-ppc64le.tar.gz) + ([checksum](https://get.helm.sh/helm-v3.10.2-linux-ppc64le.tar.gz.sha256sum) + / 53a578b84155d31c3e62dd93a88586b75e876dae82c7912c895ee5a574fa6209)\r\n- + [Linux s390x](https://get.helm.sh/helm-v3.10.2-linux-s390x.tar.gz) ([checksum](https://get.helm.sh/helm-v3.10.2-linux-s390x.tar.gz.sha256sum) + / 33cb4a3382bea6bcd7eb7f385dd08941bdc84d0020345951eb467fbc8f5ccb60)\r\n- + [Windows amd64](https://get.helm.sh/helm-v3.10.2-windows-amd64.zip) ([checksum](https://get.helm.sh/helm-v3.10.2-windows-amd64.zip.sha256sum) + / f1a3190adecc26270bbef4f3ab2d1a56509f9d8df95413cdd6e3151f6f367862)\r\n\r\nThis + release was signed with `672C 657B E06B 4B30 969C 4A57 4614 49C2 5E36 + B98E ` and can be found at @mattfarina [keybase account](https://keybase.io/mattfarina). + Please use the attached signatures for verifying this release using `gpg`.\r\n\r\nThe + [Quickstart Guide](https://helm.sh/docs/intro/quickstart/) will get you + going from there. For **upgrade instructions** or detailed installation + notes, check the [install guide](https://helm.sh/docs/intro/install/). + You can also use a [script to install](https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3) + on any system with `bash`.\r\n\r\n## What's Next\r\n\r\n- 3.10.3 will + contain only bug fixes and be released on December 14, 2022\r\n- 3.11.0 + is the next feature releaseand be released on January 18, 2023\r\n\r\n## + Changelog\r\n\r\n- fix a few function names on comments 50f003e5ee8704ec937a756c646870227d7c8b58 + (cui fliter)\r\n- redirect registry client output to stderr c3a62f7880be8bdc904f2d54c4b0c16a86ec204c + (Cyril Jouve)\r\n- Readiness & liveness probes correct port 727bdf1813df73073d5a8eba4581201ef6518f93 + (Peter Leong)" + created_at: "2022-11-10T14:53:00Z" + draft: false + html_url: https://github.com/helm/helm/releases/tag/v3.10.2 + id: 82711070 + mentions_count: 1 + name: Helm v3.10.2 + node_id: RE_kwDOApspmc4E7hIe + prerelease: false + published_at: "2022-11-10T17:13:10Z" + tag_name: v3.10.2 + tarball_url: https://api.github.com/repos/helm/helm/tarball/v3.10.2 + target_commitish: release-3.10 + upload_url: https://uploads.github.com/repos/helm/helm/releases/82711070/assets{?name,label} + url: https://api.github.com/repos/helm/helm/releases/82711070 + zipball_url: https://api.github.com/repos/helm/helm/zipball/v3.10.2 + 3.10.3: + githubRelease: + assets: + - browser_download_url: https://github.com/helm/helm/releases/download/v3.10.3/helm-v3.10.3-darwin-amd64.tar.gz.asc + content_type: text/plain + created_at: "2022-12-14T17:34:48Z" + download_count: 3 + id: 88206626 + label: null + name: helm-v3.10.3-darwin-amd64.tar.gz.asc + node_id: RA_kwDOApspmc4FQe0i + size: 833 + state: uploaded + updated_at: "2022-12-14T17:34:49Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/14892004?v=4 + events_url: https://api.github.com/users/hickeyma/events{/privacy} + followers_url: https://api.github.com/users/hickeyma/followers + following_url: https://api.github.com/users/hickeyma/following{/other_user} + gists_url: https://api.github.com/users/hickeyma/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/hickeyma + id: 14892004 + login: hickeyma + node_id: MDQ6VXNlcjE0ODkyMDA0 + organizations_url: https://api.github.com/users/hickeyma/orgs + received_events_url: https://api.github.com/users/hickeyma/received_events + repos_url: https://api.github.com/users/hickeyma/repos + site_admin: false + starred_url: https://api.github.com/users/hickeyma/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/hickeyma/subscriptions + type: User + url: https://api.github.com/users/hickeyma + url: https://api.github.com/repos/helm/helm/releases/assets/88206626 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.10.3/helm-v3.10.3-darwin-amd64.tar.gz.sha256.asc + content_type: text/plain + created_at: "2022-12-14T17:34:48Z" + download_count: 3 + id: 88206624 + label: null + name: helm-v3.10.3-darwin-amd64.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4FQe0g + size: 833 + state: uploaded + updated_at: "2022-12-14T17:34:48Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/14892004?v=4 + events_url: https://api.github.com/users/hickeyma/events{/privacy} + followers_url: https://api.github.com/users/hickeyma/followers + following_url: https://api.github.com/users/hickeyma/following{/other_user} + gists_url: https://api.github.com/users/hickeyma/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/hickeyma + id: 14892004 + login: hickeyma + node_id: MDQ6VXNlcjE0ODkyMDA0 + organizations_url: https://api.github.com/users/hickeyma/orgs + received_events_url: https://api.github.com/users/hickeyma/received_events + repos_url: https://api.github.com/users/hickeyma/repos + site_admin: false + starred_url: https://api.github.com/users/hickeyma/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/hickeyma/subscriptions + type: User + url: https://api.github.com/users/hickeyma + url: https://api.github.com/repos/helm/helm/releases/assets/88206624 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.10.3/helm-v3.10.3-darwin-amd64.tar.gz.sha256sum.asc + content_type: text/plain + created_at: "2022-12-14T17:34:47Z" + download_count: 3 + id: 88206622 + label: null + name: helm-v3.10.3-darwin-amd64.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4FQe0e + size: 833 + state: uploaded + updated_at: "2022-12-14T17:34:48Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/14892004?v=4 + events_url: https://api.github.com/users/hickeyma/events{/privacy} + followers_url: https://api.github.com/users/hickeyma/followers + following_url: https://api.github.com/users/hickeyma/following{/other_user} + gists_url: https://api.github.com/users/hickeyma/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/hickeyma + id: 14892004 + login: hickeyma + node_id: MDQ6VXNlcjE0ODkyMDA0 + organizations_url: https://api.github.com/users/hickeyma/orgs + received_events_url: https://api.github.com/users/hickeyma/received_events + repos_url: https://api.github.com/users/hickeyma/repos + site_admin: false + starred_url: https://api.github.com/users/hickeyma/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/hickeyma/subscriptions + type: User + url: https://api.github.com/users/hickeyma + url: https://api.github.com/repos/helm/helm/releases/assets/88206622 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.10.3/helm-v3.10.3-darwin-arm64.tar.gz.asc + content_type: text/plain + created_at: "2022-12-14T17:34:46Z" + download_count: 3 + id: 88206620 + label: null + name: helm-v3.10.3-darwin-arm64.tar.gz.asc + node_id: RA_kwDOApspmc4FQe0c + size: 833 + state: uploaded + updated_at: "2022-12-14T17:34:47Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/14892004?v=4 + events_url: https://api.github.com/users/hickeyma/events{/privacy} + followers_url: https://api.github.com/users/hickeyma/followers + following_url: https://api.github.com/users/hickeyma/following{/other_user} + gists_url: https://api.github.com/users/hickeyma/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/hickeyma + id: 14892004 + login: hickeyma + node_id: MDQ6VXNlcjE0ODkyMDA0 + organizations_url: https://api.github.com/users/hickeyma/orgs + received_events_url: https://api.github.com/users/hickeyma/received_events + repos_url: https://api.github.com/users/hickeyma/repos + site_admin: false + starred_url: https://api.github.com/users/hickeyma/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/hickeyma/subscriptions + type: User + url: https://api.github.com/users/hickeyma + url: https://api.github.com/repos/helm/helm/releases/assets/88206620 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.10.3/helm-v3.10.3-darwin-arm64.tar.gz.sha256.asc + content_type: text/plain + created_at: "2022-12-14T17:34:46Z" + download_count: 3 + id: 88206619 + label: null + name: helm-v3.10.3-darwin-arm64.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4FQe0b + size: 833 + state: uploaded + updated_at: "2022-12-14T17:34:46Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/14892004?v=4 + events_url: https://api.github.com/users/hickeyma/events{/privacy} + followers_url: https://api.github.com/users/hickeyma/followers + following_url: https://api.github.com/users/hickeyma/following{/other_user} + gists_url: https://api.github.com/users/hickeyma/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/hickeyma + id: 14892004 + login: hickeyma + node_id: MDQ6VXNlcjE0ODkyMDA0 + organizations_url: https://api.github.com/users/hickeyma/orgs + received_events_url: https://api.github.com/users/hickeyma/received_events + repos_url: https://api.github.com/users/hickeyma/repos + site_admin: false + starred_url: https://api.github.com/users/hickeyma/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/hickeyma/subscriptions + type: User + url: https://api.github.com/users/hickeyma + url: https://api.github.com/repos/helm/helm/releases/assets/88206619 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.10.3/helm-v3.10.3-darwin-arm64.tar.gz.sha256sum.asc + content_type: text/plain + created_at: "2022-12-14T17:34:45Z" + download_count: 3 + id: 88206618 + label: null + name: helm-v3.10.3-darwin-arm64.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4FQe0a + size: 833 + state: uploaded + updated_at: "2022-12-14T17:34:46Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/14892004?v=4 + events_url: https://api.github.com/users/hickeyma/events{/privacy} + followers_url: https://api.github.com/users/hickeyma/followers + following_url: https://api.github.com/users/hickeyma/following{/other_user} + gists_url: https://api.github.com/users/hickeyma/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/hickeyma + id: 14892004 + login: hickeyma + node_id: MDQ6VXNlcjE0ODkyMDA0 + organizations_url: https://api.github.com/users/hickeyma/orgs + received_events_url: https://api.github.com/users/hickeyma/received_events + repos_url: https://api.github.com/users/hickeyma/repos + site_admin: false + starred_url: https://api.github.com/users/hickeyma/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/hickeyma/subscriptions + type: User + url: https://api.github.com/users/hickeyma + url: https://api.github.com/repos/helm/helm/releases/assets/88206618 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.10.3/helm-v3.10.3-linux-386.tar.gz.asc + content_type: text/plain + created_at: "2022-12-14T17:34:45Z" + download_count: 3 + id: 88206617 + label: null + name: helm-v3.10.3-linux-386.tar.gz.asc + node_id: RA_kwDOApspmc4FQe0Z + size: 833 + state: uploaded + updated_at: "2022-12-14T17:34:45Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/14892004?v=4 + events_url: https://api.github.com/users/hickeyma/events{/privacy} + followers_url: https://api.github.com/users/hickeyma/followers + following_url: https://api.github.com/users/hickeyma/following{/other_user} + gists_url: https://api.github.com/users/hickeyma/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/hickeyma + id: 14892004 + login: hickeyma + node_id: MDQ6VXNlcjE0ODkyMDA0 + organizations_url: https://api.github.com/users/hickeyma/orgs + received_events_url: https://api.github.com/users/hickeyma/received_events + repos_url: https://api.github.com/users/hickeyma/repos + site_admin: false + starred_url: https://api.github.com/users/hickeyma/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/hickeyma/subscriptions + type: User + url: https://api.github.com/users/hickeyma + url: https://api.github.com/repos/helm/helm/releases/assets/88206617 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.10.3/helm-v3.10.3-linux-386.tar.gz.sha256.asc + content_type: text/plain + created_at: "2022-12-14T17:34:44Z" + download_count: 3 + id: 88206616 + label: null + name: helm-v3.10.3-linux-386.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4FQe0Y + size: 833 + state: uploaded + updated_at: "2022-12-14T17:34:45Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/14892004?v=4 + events_url: https://api.github.com/users/hickeyma/events{/privacy} + followers_url: https://api.github.com/users/hickeyma/followers + following_url: https://api.github.com/users/hickeyma/following{/other_user} + gists_url: https://api.github.com/users/hickeyma/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/hickeyma + id: 14892004 + login: hickeyma + node_id: MDQ6VXNlcjE0ODkyMDA0 + organizations_url: https://api.github.com/users/hickeyma/orgs + received_events_url: https://api.github.com/users/hickeyma/received_events + repos_url: https://api.github.com/users/hickeyma/repos + site_admin: false + starred_url: https://api.github.com/users/hickeyma/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/hickeyma/subscriptions + type: User + url: https://api.github.com/users/hickeyma + url: https://api.github.com/repos/helm/helm/releases/assets/88206616 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.10.3/helm-v3.10.3-linux-386.tar.gz.sha256sum.asc + content_type: text/plain + created_at: "2022-12-14T17:34:44Z" + download_count: 3 + id: 88206615 + label: null + name: helm-v3.10.3-linux-386.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4FQe0X + size: 833 + state: uploaded + updated_at: "2022-12-14T17:34:44Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/14892004?v=4 + events_url: https://api.github.com/users/hickeyma/events{/privacy} + followers_url: https://api.github.com/users/hickeyma/followers + following_url: https://api.github.com/users/hickeyma/following{/other_user} + gists_url: https://api.github.com/users/hickeyma/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/hickeyma + id: 14892004 + login: hickeyma + node_id: MDQ6VXNlcjE0ODkyMDA0 + organizations_url: https://api.github.com/users/hickeyma/orgs + received_events_url: https://api.github.com/users/hickeyma/received_events + repos_url: https://api.github.com/users/hickeyma/repos + site_admin: false + starred_url: https://api.github.com/users/hickeyma/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/hickeyma/subscriptions + type: User + url: https://api.github.com/users/hickeyma + url: https://api.github.com/repos/helm/helm/releases/assets/88206615 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.10.3/helm-v3.10.3-linux-amd64.tar.gz.asc + content_type: text/plain + created_at: "2022-12-14T17:34:43Z" + download_count: 22 + id: 88206614 + label: null + name: helm-v3.10.3-linux-amd64.tar.gz.asc + node_id: RA_kwDOApspmc4FQe0W + size: 833 + state: uploaded + updated_at: "2022-12-14T17:34:44Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/14892004?v=4 + events_url: https://api.github.com/users/hickeyma/events{/privacy} + followers_url: https://api.github.com/users/hickeyma/followers + following_url: https://api.github.com/users/hickeyma/following{/other_user} + gists_url: https://api.github.com/users/hickeyma/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/hickeyma + id: 14892004 + login: hickeyma + node_id: MDQ6VXNlcjE0ODkyMDA0 + organizations_url: https://api.github.com/users/hickeyma/orgs + received_events_url: https://api.github.com/users/hickeyma/received_events + repos_url: https://api.github.com/users/hickeyma/repos + site_admin: false + starred_url: https://api.github.com/users/hickeyma/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/hickeyma/subscriptions + type: User + url: https://api.github.com/users/hickeyma + url: https://api.github.com/repos/helm/helm/releases/assets/88206614 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.10.3/helm-v3.10.3-linux-amd64.tar.gz.sha256.asc + content_type: text/plain + created_at: "2022-12-14T17:34:43Z" + download_count: 17 + id: 88206612 + label: null + name: helm-v3.10.3-linux-amd64.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4FQe0U + size: 833 + state: uploaded + updated_at: "2022-12-14T17:34:43Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/14892004?v=4 + events_url: https://api.github.com/users/hickeyma/events{/privacy} + followers_url: https://api.github.com/users/hickeyma/followers + following_url: https://api.github.com/users/hickeyma/following{/other_user} + gists_url: https://api.github.com/users/hickeyma/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/hickeyma + id: 14892004 + login: hickeyma + node_id: MDQ6VXNlcjE0ODkyMDA0 + organizations_url: https://api.github.com/users/hickeyma/orgs + received_events_url: https://api.github.com/users/hickeyma/received_events + repos_url: https://api.github.com/users/hickeyma/repos + site_admin: false + starred_url: https://api.github.com/users/hickeyma/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/hickeyma/subscriptions + type: User + url: https://api.github.com/users/hickeyma + url: https://api.github.com/repos/helm/helm/releases/assets/88206612 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.10.3/helm-v3.10.3-linux-amd64.tar.gz.sha256sum.asc + content_type: text/plain + created_at: "2022-12-14T17:34:42Z" + download_count: 3 + id: 88206611 + label: null + name: helm-v3.10.3-linux-amd64.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4FQe0T + size: 833 + state: uploaded + updated_at: "2022-12-14T17:34:43Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/14892004?v=4 + events_url: https://api.github.com/users/hickeyma/events{/privacy} + followers_url: https://api.github.com/users/hickeyma/followers + following_url: https://api.github.com/users/hickeyma/following{/other_user} + gists_url: https://api.github.com/users/hickeyma/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/hickeyma + id: 14892004 + login: hickeyma + node_id: MDQ6VXNlcjE0ODkyMDA0 + organizations_url: https://api.github.com/users/hickeyma/orgs + received_events_url: https://api.github.com/users/hickeyma/received_events + repos_url: https://api.github.com/users/hickeyma/repos + site_admin: false + starred_url: https://api.github.com/users/hickeyma/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/hickeyma/subscriptions + type: User + url: https://api.github.com/users/hickeyma + url: https://api.github.com/repos/helm/helm/releases/assets/88206611 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.10.3/helm-v3.10.3-linux-arm.tar.gz.asc + content_type: text/plain + created_at: "2022-12-14T17:34:42Z" + download_count: 3 + id: 88206610 + label: null + name: helm-v3.10.3-linux-arm.tar.gz.asc + node_id: RA_kwDOApspmc4FQe0S + size: 833 + state: uploaded + updated_at: "2022-12-14T17:34:42Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/14892004?v=4 + events_url: https://api.github.com/users/hickeyma/events{/privacy} + followers_url: https://api.github.com/users/hickeyma/followers + following_url: https://api.github.com/users/hickeyma/following{/other_user} + gists_url: https://api.github.com/users/hickeyma/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/hickeyma + id: 14892004 + login: hickeyma + node_id: MDQ6VXNlcjE0ODkyMDA0 + organizations_url: https://api.github.com/users/hickeyma/orgs + received_events_url: https://api.github.com/users/hickeyma/received_events + repos_url: https://api.github.com/users/hickeyma/repos + site_admin: false + starred_url: https://api.github.com/users/hickeyma/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/hickeyma/subscriptions + type: User + url: https://api.github.com/users/hickeyma + url: https://api.github.com/repos/helm/helm/releases/assets/88206610 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.10.3/helm-v3.10.3-linux-arm.tar.gz.sha256.asc + content_type: text/plain + created_at: "2022-12-14T17:34:41Z" + download_count: 3 + id: 88206609 + label: null + name: helm-v3.10.3-linux-arm.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4FQe0R + size: 833 + state: uploaded + updated_at: "2022-12-14T17:34:42Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/14892004?v=4 + events_url: https://api.github.com/users/hickeyma/events{/privacy} + followers_url: https://api.github.com/users/hickeyma/followers + following_url: https://api.github.com/users/hickeyma/following{/other_user} + gists_url: https://api.github.com/users/hickeyma/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/hickeyma + id: 14892004 + login: hickeyma + node_id: MDQ6VXNlcjE0ODkyMDA0 + organizations_url: https://api.github.com/users/hickeyma/orgs + received_events_url: https://api.github.com/users/hickeyma/received_events + repos_url: https://api.github.com/users/hickeyma/repos + site_admin: false + starred_url: https://api.github.com/users/hickeyma/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/hickeyma/subscriptions + type: User + url: https://api.github.com/users/hickeyma + url: https://api.github.com/repos/helm/helm/releases/assets/88206609 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.10.3/helm-v3.10.3-linux-arm.tar.gz.sha256sum.asc + content_type: text/plain + created_at: "2022-12-14T17:34:40Z" + download_count: 3 + id: 88206606 + label: null + name: helm-v3.10.3-linux-arm.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4FQe0O + size: 833 + state: uploaded + updated_at: "2022-12-14T17:34:41Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/14892004?v=4 + events_url: https://api.github.com/users/hickeyma/events{/privacy} + followers_url: https://api.github.com/users/hickeyma/followers + following_url: https://api.github.com/users/hickeyma/following{/other_user} + gists_url: https://api.github.com/users/hickeyma/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/hickeyma + id: 14892004 + login: hickeyma + node_id: MDQ6VXNlcjE0ODkyMDA0 + organizations_url: https://api.github.com/users/hickeyma/orgs + received_events_url: https://api.github.com/users/hickeyma/received_events + repos_url: https://api.github.com/users/hickeyma/repos + site_admin: false + starred_url: https://api.github.com/users/hickeyma/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/hickeyma/subscriptions + type: User + url: https://api.github.com/users/hickeyma + url: https://api.github.com/repos/helm/helm/releases/assets/88206606 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.10.3/helm-v3.10.3-linux-arm64.tar.gz.asc + content_type: text/plain + created_at: "2022-12-14T17:34:40Z" + download_count: 6 + id: 88206604 + label: null + name: helm-v3.10.3-linux-arm64.tar.gz.asc + node_id: RA_kwDOApspmc4FQe0M + size: 833 + state: uploaded + updated_at: "2022-12-14T17:34:40Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/14892004?v=4 + events_url: https://api.github.com/users/hickeyma/events{/privacy} + followers_url: https://api.github.com/users/hickeyma/followers + following_url: https://api.github.com/users/hickeyma/following{/other_user} + gists_url: https://api.github.com/users/hickeyma/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/hickeyma + id: 14892004 + login: hickeyma + node_id: MDQ6VXNlcjE0ODkyMDA0 + organizations_url: https://api.github.com/users/hickeyma/orgs + received_events_url: https://api.github.com/users/hickeyma/received_events + repos_url: https://api.github.com/users/hickeyma/repos + site_admin: false + starred_url: https://api.github.com/users/hickeyma/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/hickeyma/subscriptions + type: User + url: https://api.github.com/users/hickeyma + url: https://api.github.com/repos/helm/helm/releases/assets/88206604 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.10.3/helm-v3.10.3-linux-arm64.tar.gz.sha256.asc + content_type: text/plain + created_at: "2022-12-14T17:34:39Z" + download_count: 6 + id: 88206603 + label: null + name: helm-v3.10.3-linux-arm64.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4FQe0L + size: 833 + state: uploaded + updated_at: "2022-12-14T17:34:40Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/14892004?v=4 + events_url: https://api.github.com/users/hickeyma/events{/privacy} + followers_url: https://api.github.com/users/hickeyma/followers + following_url: https://api.github.com/users/hickeyma/following{/other_user} + gists_url: https://api.github.com/users/hickeyma/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/hickeyma + id: 14892004 + login: hickeyma + node_id: MDQ6VXNlcjE0ODkyMDA0 + organizations_url: https://api.github.com/users/hickeyma/orgs + received_events_url: https://api.github.com/users/hickeyma/received_events + repos_url: https://api.github.com/users/hickeyma/repos + site_admin: false + starred_url: https://api.github.com/users/hickeyma/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/hickeyma/subscriptions + type: User + url: https://api.github.com/users/hickeyma + url: https://api.github.com/repos/helm/helm/releases/assets/88206603 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.10.3/helm-v3.10.3-linux-arm64.tar.gz.sha256sum.asc + content_type: text/plain + created_at: "2022-12-14T17:34:39Z" + download_count: 3 + id: 88206601 + label: null + name: helm-v3.10.3-linux-arm64.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4FQe0J + size: 833 + state: uploaded + updated_at: "2022-12-14T17:34:39Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/14892004?v=4 + events_url: https://api.github.com/users/hickeyma/events{/privacy} + followers_url: https://api.github.com/users/hickeyma/followers + following_url: https://api.github.com/users/hickeyma/following{/other_user} + gists_url: https://api.github.com/users/hickeyma/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/hickeyma + id: 14892004 + login: hickeyma + node_id: MDQ6VXNlcjE0ODkyMDA0 + organizations_url: https://api.github.com/users/hickeyma/orgs + received_events_url: https://api.github.com/users/hickeyma/received_events + repos_url: https://api.github.com/users/hickeyma/repos + site_admin: false + starred_url: https://api.github.com/users/hickeyma/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/hickeyma/subscriptions + type: User + url: https://api.github.com/users/hickeyma + url: https://api.github.com/repos/helm/helm/releases/assets/88206601 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.10.3/helm-v3.10.3-linux-ppc64le.tar.gz.asc + content_type: text/plain + created_at: "2022-12-14T17:34:38Z" + download_count: 2 + id: 88206600 + label: null + name: helm-v3.10.3-linux-ppc64le.tar.gz.asc + node_id: RA_kwDOApspmc4FQe0I + size: 833 + state: uploaded + updated_at: "2022-12-14T17:34:39Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/14892004?v=4 + events_url: https://api.github.com/users/hickeyma/events{/privacy} + followers_url: https://api.github.com/users/hickeyma/followers + following_url: https://api.github.com/users/hickeyma/following{/other_user} + gists_url: https://api.github.com/users/hickeyma/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/hickeyma + id: 14892004 + login: hickeyma + node_id: MDQ6VXNlcjE0ODkyMDA0 + organizations_url: https://api.github.com/users/hickeyma/orgs + received_events_url: https://api.github.com/users/hickeyma/received_events + repos_url: https://api.github.com/users/hickeyma/repos + site_admin: false + starred_url: https://api.github.com/users/hickeyma/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/hickeyma/subscriptions + type: User + url: https://api.github.com/users/hickeyma + url: https://api.github.com/repos/helm/helm/releases/assets/88206600 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.10.3/helm-v3.10.3-linux-ppc64le.tar.gz.sha256.asc + content_type: text/plain + created_at: "2022-12-14T17:34:38Z" + download_count: 2 + id: 88206599 + label: null + name: helm-v3.10.3-linux-ppc64le.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4FQe0H + size: 833 + state: uploaded + updated_at: "2022-12-14T17:34:38Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/14892004?v=4 + events_url: https://api.github.com/users/hickeyma/events{/privacy} + followers_url: https://api.github.com/users/hickeyma/followers + following_url: https://api.github.com/users/hickeyma/following{/other_user} + gists_url: https://api.github.com/users/hickeyma/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/hickeyma + id: 14892004 + login: hickeyma + node_id: MDQ6VXNlcjE0ODkyMDA0 + organizations_url: https://api.github.com/users/hickeyma/orgs + received_events_url: https://api.github.com/users/hickeyma/received_events + repos_url: https://api.github.com/users/hickeyma/repos + site_admin: false + starred_url: https://api.github.com/users/hickeyma/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/hickeyma/subscriptions + type: User + url: https://api.github.com/users/hickeyma + url: https://api.github.com/repos/helm/helm/releases/assets/88206599 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.10.3/helm-v3.10.3-linux-ppc64le.tar.gz.sha256sum.asc + content_type: text/plain + created_at: "2022-12-14T17:34:37Z" + download_count: 2 + id: 88206598 + label: null + name: helm-v3.10.3-linux-ppc64le.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4FQe0G + size: 833 + state: uploaded + updated_at: "2022-12-14T17:34:38Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/14892004?v=4 + events_url: https://api.github.com/users/hickeyma/events{/privacy} + followers_url: https://api.github.com/users/hickeyma/followers + following_url: https://api.github.com/users/hickeyma/following{/other_user} + gists_url: https://api.github.com/users/hickeyma/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/hickeyma + id: 14892004 + login: hickeyma + node_id: MDQ6VXNlcjE0ODkyMDA0 + organizations_url: https://api.github.com/users/hickeyma/orgs + received_events_url: https://api.github.com/users/hickeyma/received_events + repos_url: https://api.github.com/users/hickeyma/repos + site_admin: false + starred_url: https://api.github.com/users/hickeyma/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/hickeyma/subscriptions + type: User + url: https://api.github.com/users/hickeyma + url: https://api.github.com/repos/helm/helm/releases/assets/88206598 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.10.3/helm-v3.10.3-linux-s390x.tar.gz.asc + content_type: text/plain + created_at: "2022-12-14T17:34:37Z" + download_count: 2 + id: 88206597 + label: null + name: helm-v3.10.3-linux-s390x.tar.gz.asc + node_id: RA_kwDOApspmc4FQe0F + size: 833 + state: uploaded + updated_at: "2022-12-14T17:34:37Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/14892004?v=4 + events_url: https://api.github.com/users/hickeyma/events{/privacy} + followers_url: https://api.github.com/users/hickeyma/followers + following_url: https://api.github.com/users/hickeyma/following{/other_user} + gists_url: https://api.github.com/users/hickeyma/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/hickeyma + id: 14892004 + login: hickeyma + node_id: MDQ6VXNlcjE0ODkyMDA0 + organizations_url: https://api.github.com/users/hickeyma/orgs + received_events_url: https://api.github.com/users/hickeyma/received_events + repos_url: https://api.github.com/users/hickeyma/repos + site_admin: false + starred_url: https://api.github.com/users/hickeyma/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/hickeyma/subscriptions + type: User + url: https://api.github.com/users/hickeyma + url: https://api.github.com/repos/helm/helm/releases/assets/88206597 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.10.3/helm-v3.10.3-linux-s390x.tar.gz.sha256.asc + content_type: text/plain + created_at: "2022-12-14T17:34:36Z" + download_count: 2 + id: 88206596 + label: null + name: helm-v3.10.3-linux-s390x.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4FQe0E + size: 833 + state: uploaded + updated_at: "2022-12-14T17:34:37Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/14892004?v=4 + events_url: https://api.github.com/users/hickeyma/events{/privacy} + followers_url: https://api.github.com/users/hickeyma/followers + following_url: https://api.github.com/users/hickeyma/following{/other_user} + gists_url: https://api.github.com/users/hickeyma/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/hickeyma + id: 14892004 + login: hickeyma + node_id: MDQ6VXNlcjE0ODkyMDA0 + organizations_url: https://api.github.com/users/hickeyma/orgs + received_events_url: https://api.github.com/users/hickeyma/received_events + repos_url: https://api.github.com/users/hickeyma/repos + site_admin: false + starred_url: https://api.github.com/users/hickeyma/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/hickeyma/subscriptions + type: User + url: https://api.github.com/users/hickeyma + url: https://api.github.com/repos/helm/helm/releases/assets/88206596 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.10.3/helm-v3.10.3-linux-s390x.tar.gz.sha256sum.asc + content_type: text/plain + created_at: "2022-12-14T17:34:35Z" + download_count: 2 + id: 88206595 + label: null + name: helm-v3.10.3-linux-s390x.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4FQe0D + size: 833 + state: uploaded + updated_at: "2022-12-14T17:34:36Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/14892004?v=4 + events_url: https://api.github.com/users/hickeyma/events{/privacy} + followers_url: https://api.github.com/users/hickeyma/followers + following_url: https://api.github.com/users/hickeyma/following{/other_user} + gists_url: https://api.github.com/users/hickeyma/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/hickeyma + id: 14892004 + login: hickeyma + node_id: MDQ6VXNlcjE0ODkyMDA0 + organizations_url: https://api.github.com/users/hickeyma/orgs + received_events_url: https://api.github.com/users/hickeyma/received_events + repos_url: https://api.github.com/users/hickeyma/repos + site_admin: false + starred_url: https://api.github.com/users/hickeyma/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/hickeyma/subscriptions + type: User + url: https://api.github.com/users/hickeyma + url: https://api.github.com/repos/helm/helm/releases/assets/88206595 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.10.3/helm-v3.10.3-windows-amd64.zip.asc + content_type: text/plain + created_at: "2022-12-14T17:34:35Z" + download_count: 4 + id: 88206593 + label: null + name: helm-v3.10.3-windows-amd64.zip.asc + node_id: RA_kwDOApspmc4FQe0B + size: 833 + state: uploaded + updated_at: "2022-12-14T17:34:35Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/14892004?v=4 + events_url: https://api.github.com/users/hickeyma/events{/privacy} + followers_url: https://api.github.com/users/hickeyma/followers + following_url: https://api.github.com/users/hickeyma/following{/other_user} + gists_url: https://api.github.com/users/hickeyma/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/hickeyma + id: 14892004 + login: hickeyma + node_id: MDQ6VXNlcjE0ODkyMDA0 + organizations_url: https://api.github.com/users/hickeyma/orgs + received_events_url: https://api.github.com/users/hickeyma/received_events + repos_url: https://api.github.com/users/hickeyma/repos + site_admin: false + starred_url: https://api.github.com/users/hickeyma/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/hickeyma/subscriptions + type: User + url: https://api.github.com/users/hickeyma + url: https://api.github.com/repos/helm/helm/releases/assets/88206593 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.10.3/helm-v3.10.3-windows-amd64.zip.sha256.asc + content_type: text/plain + created_at: "2022-12-14T17:34:34Z" + download_count: 3 + id: 88206592 + label: null + name: helm-v3.10.3-windows-amd64.zip.sha256.asc + node_id: RA_kwDOApspmc4FQe0A + size: 833 + state: uploaded + updated_at: "2022-12-14T17:34:35Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/14892004?v=4 + events_url: https://api.github.com/users/hickeyma/events{/privacy} + followers_url: https://api.github.com/users/hickeyma/followers + following_url: https://api.github.com/users/hickeyma/following{/other_user} + gists_url: https://api.github.com/users/hickeyma/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/hickeyma + id: 14892004 + login: hickeyma + node_id: MDQ6VXNlcjE0ODkyMDA0 + organizations_url: https://api.github.com/users/hickeyma/orgs + received_events_url: https://api.github.com/users/hickeyma/received_events + repos_url: https://api.github.com/users/hickeyma/repos + site_admin: false + starred_url: https://api.github.com/users/hickeyma/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/hickeyma/subscriptions + type: User + url: https://api.github.com/users/hickeyma + url: https://api.github.com/repos/helm/helm/releases/assets/88206592 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.10.3/helm-v3.10.3-windows-amd64.zip.sha256sum.asc + content_type: text/plain + created_at: "2022-12-14T17:34:33Z" + download_count: 3 + id: 88206590 + label: null + name: helm-v3.10.3-windows-amd64.zip.sha256sum.asc + node_id: RA_kwDOApspmc4FQez- + size: 833 + state: uploaded + updated_at: "2022-12-14T17:34:34Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/14892004?v=4 + events_url: https://api.github.com/users/hickeyma/events{/privacy} + followers_url: https://api.github.com/users/hickeyma/followers + following_url: https://api.github.com/users/hickeyma/following{/other_user} + gists_url: https://api.github.com/users/hickeyma/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/hickeyma + id: 14892004 + login: hickeyma + node_id: MDQ6VXNlcjE0ODkyMDA0 + organizations_url: https://api.github.com/users/hickeyma/orgs + received_events_url: https://api.github.com/users/hickeyma/received_events + repos_url: https://api.github.com/users/hickeyma/repos + site_admin: false + starred_url: https://api.github.com/users/hickeyma/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/hickeyma/subscriptions + type: User + url: https://api.github.com/users/hickeyma + url: https://api.github.com/repos/helm/helm/releases/assets/88206590 + assets_url: https://api.github.com/repos/helm/helm/releases/86060398/assets + author: + avatar_url: https://avatars.githubusercontent.com/u/14892004?v=4 + events_url: https://api.github.com/users/hickeyma/events{/privacy} + followers_url: https://api.github.com/users/hickeyma/followers + following_url: https://api.github.com/users/hickeyma/following{/other_user} + gists_url: https://api.github.com/users/hickeyma/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/hickeyma + id: 14892004 + login: hickeyma + node_id: MDQ6VXNlcjE0ODkyMDA0 + organizations_url: https://api.github.com/users/hickeyma/orgs + received_events_url: https://api.github.com/users/hickeyma/received_events + repos_url: https://api.github.com/users/hickeyma/repos + site_admin: false + starred_url: https://api.github.com/users/hickeyma/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/hickeyma/subscriptions + type: User + url: https://api.github.com/users/hickeyma + body: "## v3.10.3\r\n\r\nHelm v3.10.3 is a security (patch) release. Users + are strongly recommended to update to this release.\r\n\r\nWhile fuzz + testing Helm, provided by the CNCF:\r\n\r\n- a possible stack overflow + was discovered with the _strvals_ package. Stack overflow cannot be recovered + from in Go. This can potentially be used to produce a denial of service + (DOS) for SDK users. More details are available in [the advisory](https://github.com/helm/helm/security/advisories/GHSA-6rx9-889q-vv2r).\r\n- + a possible segmentation violation was discovered with the _repo_ package. + Some segmentation violations cannot be recovered from in Go. This can + potentially be used to produce a denial of service (DOS) for SDK users. + More details are available in [the advisory](https://github.com/helm/helm/security/advisories/GHSA-53c4-hhmh-vw5q).\r\n- + a possible segmentation violation was discovered with the _chartutil_ + package. This can potentially be used to produce a denial of service (DOS) + \ for SDK users. More details are available in [the advisory](https://github.com/helm/helm/security/advisories/GHSA-67fx-wx78-jx33)\r\n\r\nThe + community keeps growing, and we'd love to see you there!\r\n\r\n- Join + the discussion in [Kubernetes Slack](https://kubernetes.slack.com):\r\n + \ - for questions and just to hang out\r\n - for discussing PRs, code, + and bugs\r\n- Hang out at the Public Developer Call: Thursday, 9:30 Pacific + via [Zoom](https://zoom.us/j/696660622)\r\n- Test, debug, and contribute + charts: [ArtifactHub/packages](https://artifacthub.io/packages/search?kind=0)\r\n\r\n## + Installation and Upgrading\r\n\r\nDownload Helm v3.10.3. The common platform + binaries are here:\r\n\r\n- [MacOS amd64](https://get.helm.sh/helm-v3.10.3-darwin-amd64.tar.gz) + ([checksum](https://get.helm.sh/helm-v3.10.3-darwin-amd64.tar.gz.sha256sum) + / 77a94ebd37eab4d14aceaf30a372348917830358430fcd7e09761eed69f08be5)\r\n- + [MacOS arm64](https://get.helm.sh/helm-v3.10.3-darwin-arm64.tar.gz) ([checksum](https://get.helm.sh/helm-v3.10.3-darwin-arm64.tar.gz.sha256sum) + / 4f3490654349d6fee8d4055862efdaaf9422eca1ffd2a15393394fd948ae3377)\r\n- + [Linux amd64](https://get.helm.sh/helm-v3.10.3-linux-amd64.tar.gz) ([checksum](https://get.helm.sh/helm-v3.10.3-linux-amd64.tar.gz.sha256sum) + / 950439759ece902157cf915b209b8d694e6f675eaab5099fb7894f30eeaee9a2)\r\n- + [Linux arm](https://get.helm.sh/helm-v3.10.3-linux-arm.tar.gz) ([checksum](https://get.helm.sh/helm-v3.10.3-linux-arm.tar.gz.sha256sum) + / dca718eb68c72c51fc7157c4c2ebc8ce7ac79b95fc9355c5427ded99e913ec4c)\r\n- + [Linux arm64](https://get.helm.sh/helm-v3.10.3-linux-arm64.tar.gz) ([checksum](https://get.helm.sh/helm-v3.10.3-linux-arm64.tar.gz.sha256sum) + / 260cda5ff2ed5d01dd0fd6e7e09bc80126e00d8bdc55f3269d05129e32f6f99d)\r\n- + [Linux i386](https://get.helm.sh/helm-v3.10.3-linux-386.tar.gz) ([checksum](https://get.helm.sh/helm-v3.10.3-linux-386.tar.gz.sha256sum) + / 592e98a492cb782aa7cd67e9afad76e51cd68f5160367600fe542c2d96aa0ad4)\r\n- + [Linux ppc64le](https://get.helm.sh/helm-v3.10.3-linux-ppc64le.tar.gz) + ([checksum](https://get.helm.sh/helm-v3.10.3-linux-ppc64le.tar.gz.sha256sum) + / 93cdf398abc68e388d1b46d49d8e1197544930ecd3e81cc58d0a87a4579d60ed)\r\n- + [Linux s390x](https://get.helm.sh/helm-v3.10.3-linux-s390x.tar.gz) ([checksum](https://get.helm.sh/helm-v3.10.3-linux-s390x.tar.gz.sha256sum) + / 6cfa0b9078221f980ef400dc40c95eb71be81d14fdf247ca55efedb068e1d4fa)\r\n- + [Windows amd64](https://get.helm.sh/helm-v3.10.3-windows-amd64.zip) ([checksum](https://get.helm.sh/helm-v3.10.3-windows-amd64.zip.sha256sum) + / 5d97aa26830c1cd6c520815255882f148040587fd7cdddb61ef66e4c081566e0)\r\n\r\nThis + release was signed with `F126 1BDE 9290 12C8 FF2E 501D 6EA5 D759 8529 + A53E ` and can be found at @hickeyma [keybase account](https://keybase.io/hickeyma). + Please use the attached signatures for verifying this release using `gpg`.\r\n\r\nThe + [Quickstart Guide](https://helm.sh/docs/intro/quickstart/) will get you + going from there. For **upgrade instructions** or detailed installation + notes, check the [install guide](https://helm.sh/docs/intro/install/). + You can also use a [script to install](https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3) + on any system with `bash`.\r\n\r\n## What's Next\r\n\r\n- 3.11.0 is the + next feature release and will be on January 18, 2023.\r\n\r\n## Changelog\r\n\r\n- + Fix backwards compatibility 835b7334cfe2e5e27870ab3ed4135f136eecc704 (Martin + Hickey)\r\n- Update string handling 3caf8b586b47e838e492f9ec05396bf8c5851b92 + (Martin Hickey)\r\n- Update repo handling 7c0e203529d4b9d51c5fe57c9e0bd9df1bd95ab4 + (Martin Hickey)\r\n- Update schema validation handling f4b93226c6066e009a5162d0b08debbf3d82a67f + (Martin Hickey)" + created_at: "2022-12-14T15:17:33Z" + draft: false + html_url: https://github.com/helm/helm/releases/tag/v3.10.3 + id: 86060398 + mentions_count: 1 + name: Helm v3.10.3 + node_id: RE_kwDOApspmc4FIS1u + prerelease: false + published_at: "2022-12-14T17:54:36Z" + reactions: + "+1": 0 + "-1": 0 + confused: 0 + eyes: 0 + heart: 0 + hooray: 0 + laugh: 0 + rocket: 1 + total_count: 1 + url: https://api.github.com/repos/helm/helm/releases/86060398/reactions + tag_name: v3.10.3 + tarball_url: https://api.github.com/repos/helm/helm/tarball/v3.10.3 + target_commitish: main + upload_url: https://uploads.github.com/repos/helm/helm/releases/86060398/assets{?name,label} + url: https://api.github.com/repos/helm/helm/releases/86060398 + zipball_url: https://api.github.com/repos/helm/helm/zipball/v3.10.3 + 3.11.0: + githubRelease: + assets: + - browser_download_url: https://github.com/helm/helm/releases/download/v3.11.0/helm-v3.11.0-darwin-amd64.tar.gz.asc + content_type: text/plain + created_at: "2023-01-18T17:30:13Z" + download_count: 2 + id: 92176080 + label: null + name: helm-v3.11.0-darwin-amd64.tar.gz.asc + node_id: RA_kwDOApspmc4Ffn7Q + size: 833 + state: uploaded + updated_at: "2023-01-18T17:30:14Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/92176080 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.11.0/helm-v3.11.0-darwin-amd64.tar.gz.sha256.asc + content_type: text/plain + created_at: "2023-01-18T17:30:13Z" + download_count: 2 + id: 92176078 + label: null + name: helm-v3.11.0-darwin-amd64.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4Ffn7O + size: 833 + state: uploaded + updated_at: "2023-01-18T17:30:13Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/92176078 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.11.0/helm-v3.11.0-darwin-amd64.tar.gz.sha256sum.asc + content_type: text/plain + created_at: "2023-01-18T17:30:13Z" + download_count: 2 + id: 92176077 + label: null + name: helm-v3.11.0-darwin-amd64.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4Ffn7N + size: 833 + state: uploaded + updated_at: "2023-01-18T17:30:13Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/92176077 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.11.0/helm-v3.11.0-darwin-arm64.tar.gz.asc + content_type: text/plain + created_at: "2023-01-18T17:30:13Z" + download_count: 2 + id: 92176074 + label: null + name: helm-v3.11.0-darwin-arm64.tar.gz.asc + node_id: RA_kwDOApspmc4Ffn7K + size: 833 + state: uploaded + updated_at: "2023-01-18T17:30:13Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/92176074 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.11.0/helm-v3.11.0-darwin-arm64.tar.gz.sha256.asc + content_type: text/plain + created_at: "2023-01-18T17:30:12Z" + download_count: 2 + id: 92176073 + label: null + name: helm-v3.11.0-darwin-arm64.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4Ffn7J + size: 833 + state: uploaded + updated_at: "2023-01-18T17:30:13Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/92176073 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.11.0/helm-v3.11.0-darwin-arm64.tar.gz.sha256sum.asc + content_type: text/plain + created_at: "2023-01-18T17:30:12Z" + download_count: 2 + id: 92176072 + label: null + name: helm-v3.11.0-darwin-arm64.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4Ffn7I + size: 833 + state: uploaded + updated_at: "2023-01-18T17:30:12Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/92176072 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.11.0/helm-v3.11.0-linux-386.tar.gz.asc + content_type: text/plain + created_at: "2023-01-18T17:30:12Z" + download_count: 2 + id: 92176070 + label: null + name: helm-v3.11.0-linux-386.tar.gz.asc + node_id: RA_kwDOApspmc4Ffn7G + size: 833 + state: uploaded + updated_at: "2023-01-18T17:30:12Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/92176070 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.11.0/helm-v3.11.0-linux-386.tar.gz.sha256.asc + content_type: text/plain + created_at: "2023-01-18T17:30:12Z" + download_count: 2 + id: 92176068 + label: null + name: helm-v3.11.0-linux-386.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4Ffn7E + size: 833 + state: uploaded + updated_at: "2023-01-18T17:30:12Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/92176068 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.11.0/helm-v3.11.0-linux-386.tar.gz.sha256sum.asc + content_type: text/plain + created_at: "2023-01-18T17:30:11Z" + download_count: 2 + id: 92176066 + label: null + name: helm-v3.11.0-linux-386.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4Ffn7C + size: 833 + state: uploaded + updated_at: "2023-01-18T17:30:11Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/92176066 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.11.0/helm-v3.11.0-linux-amd64.tar.gz.asc + content_type: text/plain + created_at: "2023-01-18T17:30:11Z" + download_count: 25 + id: 92176065 + label: null + name: helm-v3.11.0-linux-amd64.tar.gz.asc + node_id: RA_kwDOApspmc4Ffn7B + size: 833 + state: uploaded + updated_at: "2023-01-18T17:30:11Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/92176065 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.11.0/helm-v3.11.0-linux-amd64.tar.gz.sha256.asc + content_type: text/plain + created_at: "2023-01-18T17:30:11Z" + download_count: 18 + id: 92176064 + label: null + name: helm-v3.11.0-linux-amd64.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4Ffn7A + size: 833 + state: uploaded + updated_at: "2023-01-18T17:30:11Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/92176064 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.11.0/helm-v3.11.0-linux-amd64.tar.gz.sha256sum.asc + content_type: text/plain + created_at: "2023-01-18T17:30:10Z" + download_count: 3 + id: 92176062 + label: null + name: helm-v3.11.0-linux-amd64.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4Ffn6- + size: 833 + state: uploaded + updated_at: "2023-01-18T17:30:11Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/92176062 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.11.0/helm-v3.11.0-linux-arm.tar.gz.asc + content_type: text/plain + created_at: "2023-01-18T17:30:09Z" + download_count: 2 + id: 92176056 + label: null + name: helm-v3.11.0-linux-arm.tar.gz.asc + node_id: RA_kwDOApspmc4Ffn64 + size: 833 + state: uploaded + updated_at: "2023-01-18T17:30:09Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/92176056 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.11.0/helm-v3.11.0-linux-arm.tar.gz.sha256.asc + content_type: text/plain + created_at: "2023-01-18T17:30:09Z" + download_count: 2 + id: 92176055 + label: null + name: helm-v3.11.0-linux-arm.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4Ffn63 + size: 833 + state: uploaded + updated_at: "2023-01-18T17:30:09Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/92176055 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.11.0/helm-v3.11.0-linux-arm.tar.gz.sha256sum.asc + content_type: text/plain + created_at: "2023-01-18T17:30:09Z" + download_count: 2 + id: 92176054 + label: null + name: helm-v3.11.0-linux-arm.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4Ffn62 + size: 833 + state: uploaded + updated_at: "2023-01-18T17:30:09Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/92176054 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.11.0/helm-v3.11.0-linux-arm64.tar.gz.asc + content_type: text/plain + created_at: "2023-01-18T17:30:10Z" + download_count: 12 + id: 92176061 + label: null + name: helm-v3.11.0-linux-arm64.tar.gz.asc + node_id: RA_kwDOApspmc4Ffn69 + size: 833 + state: uploaded + updated_at: "2023-01-18T17:30:10Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/92176061 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.11.0/helm-v3.11.0-linux-arm64.tar.gz.sha256.asc + content_type: text/plain + created_at: "2023-01-18T17:30:10Z" + download_count: 10 + id: 92176059 + label: null + name: helm-v3.11.0-linux-arm64.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4Ffn67 + size: 833 + state: uploaded + updated_at: "2023-01-18T17:30:10Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/92176059 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.11.0/helm-v3.11.0-linux-arm64.tar.gz.sha256sum.asc + content_type: text/plain + created_at: "2023-01-18T17:30:10Z" + download_count: 2 + id: 92176057 + label: null + name: helm-v3.11.0-linux-arm64.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4Ffn65 + size: 833 + state: uploaded + updated_at: "2023-01-18T17:30:10Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/92176057 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.11.0/helm-v3.11.0-linux-ppc64le.tar.gz.asc + content_type: text/plain + created_at: "2023-01-18T17:30:08Z" + download_count: 2 + id: 92176052 + label: null + name: helm-v3.11.0-linux-ppc64le.tar.gz.asc + node_id: RA_kwDOApspmc4Ffn60 + size: 833 + state: uploaded + updated_at: "2023-01-18T17:30:09Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/92176052 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.11.0/helm-v3.11.0-linux-ppc64le.tar.gz.sha256.asc + content_type: text/plain + created_at: "2023-01-18T17:30:08Z" + download_count: 1 + id: 92176050 + label: null + name: helm-v3.11.0-linux-ppc64le.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4Ffn6y + size: 833 + state: uploaded + updated_at: "2023-01-18T17:30:08Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/92176050 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.11.0/helm-v3.11.0-linux-ppc64le.tar.gz.sha256sum.asc + content_type: text/plain + created_at: "2023-01-18T17:30:08Z" + download_count: 1 + id: 92176047 + label: null + name: helm-v3.11.0-linux-ppc64le.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4Ffn6v + size: 833 + state: uploaded + updated_at: "2023-01-18T17:30:08Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/92176047 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.11.0/helm-v3.11.0-linux-s390x.tar.gz.asc + content_type: text/plain + created_at: "2023-01-18T17:30:07Z" + download_count: 2 + id: 92176045 + label: null + name: helm-v3.11.0-linux-s390x.tar.gz.asc + node_id: RA_kwDOApspmc4Ffn6t + size: 833 + state: uploaded + updated_at: "2023-01-18T17:30:08Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/92176045 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.11.0/helm-v3.11.0-linux-s390x.tar.gz.sha256.asc + content_type: text/plain + created_at: "2023-01-18T17:30:07Z" + download_count: 1 + id: 92176044 + label: null + name: helm-v3.11.0-linux-s390x.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4Ffn6s + size: 833 + state: uploaded + updated_at: "2023-01-18T17:30:07Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/92176044 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.11.0/helm-v3.11.0-linux-s390x.tar.gz.sha256sum.asc + content_type: text/plain + created_at: "2023-01-18T17:30:07Z" + download_count: 1 + id: 92176042 + label: null + name: helm-v3.11.0-linux-s390x.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4Ffn6q + size: 833 + state: uploaded + updated_at: "2023-01-18T17:30:07Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/92176042 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.11.0/helm-v3.11.0-windows-amd64.zip.asc + content_type: text/plain + created_at: "2023-01-18T17:30:07Z" + download_count: 2 + id: 92176041 + label: null + name: helm-v3.11.0-windows-amd64.zip.asc + node_id: RA_kwDOApspmc4Ffn6p + size: 833 + state: uploaded + updated_at: "2023-01-18T17:30:07Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/92176041 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.11.0/helm-v3.11.0-windows-amd64.zip.sha256.asc + content_type: text/plain + created_at: "2023-01-18T17:30:06Z" + download_count: 2 + id: 92176039 + label: null + name: helm-v3.11.0-windows-amd64.zip.sha256.asc + node_id: RA_kwDOApspmc4Ffn6n + size: 833 + state: uploaded + updated_at: "2023-01-18T17:30:07Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/92176039 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.11.0/helm-v3.11.0-windows-amd64.zip.sha256sum.asc + content_type: text/plain + created_at: "2023-01-18T17:30:06Z" + download_count: 2 + id: 92176038 + label: null + name: helm-v3.11.0-windows-amd64.zip.sha256sum.asc + node_id: RA_kwDOApspmc4Ffn6m + size: 833 + state: uploaded + updated_at: "2023-01-18T17:30:06Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/92176038 + assets_url: https://api.github.com/repos/helm/helm/releases/89431827/assets + author: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + body: "Helm v3.11.0 is a feature release. Users are encouraged to upgrade + for the best experience.\r\n\r\nThe community keeps growing, and we'd + love to see you there!\r\n\r\n- Join the discussion in [Kubernetes Slack](https://kubernetes.slack.com):\r\n + \ - for questions and just to hang out\r\n - for discussing PRs, code, + and bugs\r\n- Hang out at the Public Developer Call: Thursday, 9:30 Pacific + via [Zoom](https://zoom.us/j/696660622)\r\n- Test, debug, and contribute + charts: [ArtifactHub/packages](https://artifacthub.io/packages/search?kind=0)\r\n\r\n## + Notable Changes\r\n\r\n- The Helm status command and the SDK can now show + the status of core resources deployed in a chart (e.g., deployments). + To use with `helm status` you need to use the `--show-resources` flag.\r\n- + Add support for comma separated values in template --api-versions\r\n- + Allow CGO_ENABLED to be overridden when building Helm from source\r\n\r\n## + Installation and Upgrading\r\n\r\nDownload Helm v3.11.0. The common platform + binaries are here:\r\n\r\n- [MacOS amd64](https://get.helm.sh/helm-v3.11.0-darwin-amd64.tar.gz) + ([checksum](https://get.helm.sh/helm-v3.11.0-darwin-amd64.tar.gz.sha256sum) + / 5a3d13545a302eb2623236353ccd3eaa01150c869f4d7f7a635073847fd7d932)\r\n- + [MacOS arm64](https://get.helm.sh/helm-v3.11.0-darwin-arm64.tar.gz) ([checksum](https://get.helm.sh/helm-v3.11.0-darwin-arm64.tar.gz.sha256sum) + / f4717f8d1dab79bace3ff5d9d48bebef62310421fd479205ef54a56204f97415)\r\n- + [Linux amd64](https://get.helm.sh/helm-v3.11.0-linux-amd64.tar.gz) ([checksum](https://get.helm.sh/helm-v3.11.0-linux-amd64.tar.gz.sha256sum) + / 6c3440d829a56071a4386dd3ce6254eab113bc9b1fe924a6ee99f7ff869b9e0b)\r\n- + [Linux arm](https://get.helm.sh/helm-v3.11.0-linux-arm.tar.gz) ([checksum](https://get.helm.sh/helm-v3.11.0-linux-arm.tar.gz.sha256sum) + / cddbef72886c82a123038883f32b04e739cc4bd7b9e5f869740d51e50a38be01)\r\n- + [Linux arm64](https://get.helm.sh/helm-v3.11.0-linux-arm64.tar.gz) ([checksum](https://get.helm.sh/helm-v3.11.0-linux-arm64.tar.gz.sha256sum) + / 57d36ff801ce8c0201ce9917c5a2d3b4da33e5d4ea154320962c7d6fb13e1f2c)\r\n- + [Linux i386](https://get.helm.sh/helm-v3.11.0-linux-386.tar.gz) ([checksum](https://get.helm.sh/helm-v3.11.0-linux-386.tar.gz.sha256sum) + / fad897763f3b965bc4d75c8f95748ebc0330a5859d9ea170a4885571facacdb1)\r\n- + [Linux ppc64le](https://get.helm.sh/helm-v3.11.0-linux-ppc64le.tar.gz) + ([checksum](https://get.helm.sh/helm-v3.11.0-linux-ppc64le.tar.gz.sha256sum) + / 6481a51095f408773212ab53edc2ead8a70e39eba67c2491e11c4229a251f9b5)\r\n- + [Linux s390x](https://get.helm.sh/helm-v3.11.0-linux-s390x.tar.gz) ([checksum](https://get.helm.sh/helm-v3.11.0-linux-s390x.tar.gz.sha256sum) + / 3c420f13d12ca9e7302715d40a00466a145a2dff7f14714e11a5aeadb1d67919)\r\n- + [Windows amd64](https://get.helm.sh/helm-v3.11.0-windows-amd64.zip) ([checksum](https://get.helm.sh/helm-v3.11.0-windows-amd64.zip.sha256sum) + / 55477fa4295fb3043835397a19e99a138bb4859fbe7cd2d099de28df9d8786f1)\r\n\r\nThis + release was signed with `F126 1BDE 9290 12C8 FF2E 501D 6EA5 D759 8529 + A53E ` and can be found at @hickeyma [keybase account](https://keybase.io/hickeyma). + Please use the attached signatures for verifying this release using `gpg`.\r\n\r\nThe + [Quickstart Guide](https://helm.sh/docs/intro/quickstart/) will get you + going from there. For **upgrade instructions** or detailed installation + notes, check the [install guide](https://helm.sh/docs/intro/install/). + You can also use a [script to install](https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3) + on any system with `bash`.\r\n\r\n## What's Next\r\n\r\n- 3.11.1 is the + next patch/bug fix release and will be on February 08, 2023.\r\n- 3.12.0 + is the next feature release and be on May 10, 2023.\r\n\r\n## Changelog\r\n\r\n- + Fix improper use of Table request/response to k8s API 472c5736ab01133de504a826bd9ee12cbe4e7904 + (Matt Farina)\r\n- Check status code before retrying request ee1ec6e432fe3b1943a291e59990becb5fe046ae + (Cenk Alti)\r\n- bump version to v3.11.0 9d8fee155bd7e7d3c1390f4076d9271a1147dce5 + (Matt Farina)\r\n- Bump containerd to 1.6.15, oras-go to 1.2.2 and image-spec + to v1.1.0-rc2 017785a2f1104eb4299f8d31feb550c213350f13 (Luca Comellini)\r\n- + change linting error messages for null values in arrays 6a5f240e9a22cf5ef3a889764079873a9cd537a4 + (Daniel Strobusch)\r\n- Fix after CR 3d81ea22ac74e667b98a26eb80a5d427d75f7009 + (Jakub Warczarek)\r\n- Trigger CI f46ff131c2ca169d25f9b8f8d550f6c320b48048 + (Jakub Warczarek)\r\n- Add test for User-Agent header setting and refactor + 553f1e34f54ce4c75ee10b53c441063d6303db3c (Jakub Warczarek)\r\n- Fix User-Agent + header in requests made by Helm 2fa7b3d1b7a289690ccc2c820b3329c6b07a1458 + (Jakub Warczarek)\r\n- Bump k8s.io deps to v0.26.0 1fc2a6a39ccedd9d11c9839853a95d28ca35294f + (Luca Comellini)\r\n- fix adopted resource not replaced 3181c7ddadd2271d67a457522abc13410929b64c + (Vaibhav Sharma)\r\n- chore(deps): bump github.com/BurntSushi/toml from + 1.2.0 to 1.2.1 8774890e7edadbab88f35e6536393cf791b183f0 (dependabot[bot])\r\n- + Resolve conflicts for go.mod and go.sum 6c76abb3df72df415dd54b9a09ce26fcee8fad95 + (Soujanya Mangipudi)\r\n- Fix backwards compatibility b6fef6c4665130644acf7742040ebd46f9cc957c + (Martin Hickey)\r\n- docs: add docs for cli/values.Options 0fdfe0584437112e11fdfa6775625451442f6c91 + (Zuhair AlSader)\r\n- Update chartrepo.go c8890e971e50a305dc8a83029fa882ee255007b2 + (caixisheng)\r\n- chore(deps): bump golang.org/x/text from 0.4.0 to 0.5.0 + b307d0fbeb42fe890450d8d3de2291817ad9b4cb (dependabot[bot])\r\n- bump sprig + version 3.2.3 fda1a0b10a87845b3cbe58434089f0def4220f53 (yxxhero)\r\n- + Update string handling a59e58468430bf9b454426ff22f5f367185b7d77 (Martin + Hickey)\r\n- Update repo handling 256e976331db4b7335ef721e411e7b59c5317ccb + (Martin Hickey)\r\n- improve error message on plugin install 965f8591e7eab685186626bf7e64b4c24b384c39 + (Philipp Stehle)\r\n- harmonize URL reference resolving dfb25e13deba70eafe607748cd83bdda5409d245 + (Philipp Stehle)\r\n- Update logic of non-git situation just to print + warning logs 0ebd6202d8fb1fb334a7670896d6a97cc736688c (Wonyeong Choi)\r\n- + Add a flag var to check git is installed or not c0270140197f459979ff21a618729afb844a854a + (Wonyeong Choi)\r\n- Add support for CSVs in template --api-versions arg + 5aa316e1eec883878262a01f36a7fcf6ffd7f641 (Ryan Drew)\r\n- update .golangci + for go1.18 61374f655467485673dd87a8c0cbe871d4f28175 (yanggang)\r\n- redirect + registry client output to stderr 1535ad56716d21a8b5fc93354a9ac91ba9d696ab + (Cyril Jouve)\r\n- chore(deps): bump github.com/spf13/cobra from 1.5.0 + to 1.6.1 b3afe432784baf5300b876b9d03456d256f93574 (dependabot[bot])\r\n- + Readiness & liveness probes correct port 9d027eaac894e1793c663448cfd494bcc21c759f + (Peter Leong)\r\n- Update schema validation handling 775af2a0ceadef1bc8f627cdb70fadb3c69b8d86 + (Martin Hickey)\r\n- fix a few function names on comments 09d3f31358882970d02018bd84bcbcd28b47f986 + (cui fliter)\r\n- use intstr.GetScaledValueFromIntOrPercent instead of + the deprecated 9d59d92abb462d6f59b77ee1099b18067e561932 (Qifan Shen)\r\n- + Updating the deb location for azure cli 70a3df49d702e23ad29367783a5655350be90265 + (Matt Farina)\r\n- retry http request on temporary errors b5378b3a5dd435e5c364ac0cfa717112ad686bd0 + (Cenk Alti)\r\n- Revert \"Tolerate temporary errors from etcdserver\" + d32c623699de24ac49653a6ec561485ce122d530 (Cenk Alti)\r\n- Updating the + repo the azure cli is installed from 9fbf1b34d5aa34c5774b56247ddd9ae96145f767 + (Matt Farina)\r\n- Updating to kubernetes 1.25.2 packages 221b0f54c912ce5d9dbb5eb5b10b62f411e2589b + (Matt Farina)\r\n- Allow CGO_ENABLED to be overridden for build 6f6c0d831d69a133c4100a79838c57bcb4d551d4 + (Joe Julian)\r\n- chore(deps): bump github.com/sirupsen/logrus from 1.8.1 + to 1.9.0 98077dd340ebcbf8c2271b5fd8f8c831dea82a88 (dependabot[bot])\r\n- + chore(deps): bump github.com/lib/pq from 1.10.6 to 1.10.7 bfd189000e95ff67e226dc434bdcecc2a5a3351d + (dependabot[bot])\r\n- chore(deps): bump github.com/BurntSushi/toml from + 1.1.0 to 1.2.0 1478a098f1619fd5d3372252f2e1caf3a260a50d (dependabot[bot])\r\n- + chore(deps): bump github.com/rubenv/sql-migrate from 1.1.2 to 1.2.0 4376d2fa85a6be10d12dc2b6e6d5377b6e675b78 + (dependabot[bot])\r\n- Tolerate temporary errors from etcdserver ebc79fa807f29b984e090f0071b640f7347937cf + (Davanum Srinivas)\r\n- update: Optimize the error message 4fcec24d15c616011fb2d7c22c3dd0024bb9e41b + (wujunwei)\r\n- add nil judge for dependency , maintainers validate and + some testcase. a7a11173271e5721078994647caf856489dfd929 (wujunwei)\r\n- + Fix code style ae828ce0ee0f0ad48482cc9fd773c28b137dd23d (Martin Hickey)\r\n- + bump version to v3.10.0 cd809f9b1953a180de6f532c0ad19c625afa7ced (Matt + Farina)\r\n- Addressing review comments - move printing code out of client.go + ffa19a4b5d836283a91a4c16f8b81e734a973afc (Soujanya Mangipudi)\r\n- Addressing + review comments: Extend Interface with new InterfaceResources to avoid + breaking changes Move change to staus command behind --show-resources + flag 20e35775439c699bdd5c8fdc228ebe57a4b9c002 (Soujanya Mangipudi)\r\n- + feat(helm): Supporting helm3 to show up resource names that were deployed + as part of release in helm status command 9d5be803bc0d408944f6b30c98a05c4026abc6e2 + (Soujanya Mangipudi)\r\n- During deletion, explicitly log already deleted + resource name. b7c35d2a0f2ba8920cbae41dab5b054ac6e61c53 (Marcin Owsiany)\r\n- + fix: add cases.NoLower option for we can get same effect to strings.Title + f0037e5ef6bb118dbcd6e26497014b97436888d6 (wujunwei)\r\n- one defer 3b19ddeb56fae17a1d176130702ae5b779b20460 + (CI)\r\n- don't change r.CachePath 781ddba690afa20c80f443a121c3134f668dc43a + (CI)\r\n- avoid adding new public function cd76fcd80557490d2f2ee1204b1bdbf78c738ec9 + (CI)\r\n- fix tests 32a41fcfac9ca1b4f4997a6660bacba9a01a9d45 (CI)\r\n- + fix: clean up temp files in FindChartInAuthAndTLSAndPassRepoURL (#11171) + 24fa3d910d774b9d7f40f1fc8002bc1fb55565ca (CI)\r\n- Fix URL with encoded + path support for ChartDownloader d9e5bbc09d4d44660fe20df41ce3b567f0336f85 + (Mathieu Parent)" + created_at: "2023-01-18T16:40:51Z" + draft: false + html_url: https://github.com/helm/helm/releases/tag/v3.11.0 + id: 89431827 + mentions_count: 1 + name: Helm v3.11.0 + node_id: RE_kwDOApspmc4FVJ8T + prerelease: false + published_at: "2023-01-18T17:33:47Z" + reactions: + "+1": 1 + "-1": 0 + confused: 0 + eyes: 0 + heart: 1 + hooray: 0 + laugh: 0 + rocket: 0 + total_count: 2 + url: https://api.github.com/repos/helm/helm/releases/89431827/reactions + tag_name: v3.11.0 + tarball_url: https://api.github.com/repos/helm/helm/tarball/v3.11.0 + target_commitish: release-3.11 + upload_url: https://uploads.github.com/repos/helm/helm/releases/89431827/assets{?name,label} + url: https://api.github.com/repos/helm/helm/releases/89431827 + zipball_url: https://api.github.com/repos/helm/helm/zipball/v3.11.0 + 3.11.1: + githubRelease: + assets: + - browser_download_url: https://github.com/helm/helm/releases/download/v3.11.1/helm-v3.11.1-darwin-amd64.tar.gz.asc + content_type: application/octet-stream + created_at: "2023-02-08T17:57:56Z" + download_count: 5 + id: 94833078 + label: null + name: helm-v3.11.1-darwin-amd64.tar.gz.asc + node_id: RA_kwDOApspmc4Fpwm2 + size: 833 + state: uploaded + updated_at: "2023-02-08T17:57:57Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/94833078 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.11.1/helm-v3.11.1-darwin-amd64.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2023-02-08T17:57:57Z" + download_count: 4 + id: 94833079 + label: null + name: helm-v3.11.1-darwin-amd64.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4Fpwm3 + size: 833 + state: uploaded + updated_at: "2023-02-08T17:57:57Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/94833079 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.11.1/helm-v3.11.1-darwin-amd64.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2023-02-08T17:57:57Z" + download_count: 4 + id: 94833081 + label: null + name: helm-v3.11.1-darwin-amd64.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4Fpwm5 + size: 833 + state: uploaded + updated_at: "2023-02-08T17:57:58Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/94833081 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.11.1/helm-v3.11.1-darwin-arm64.tar.gz.asc + content_type: application/octet-stream + created_at: "2023-02-08T17:57:58Z" + download_count: 4 + id: 94833082 + label: null + name: helm-v3.11.1-darwin-arm64.tar.gz.asc + node_id: RA_kwDOApspmc4Fpwm6 + size: 833 + state: uploaded + updated_at: "2023-02-08T17:57:58Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/94833082 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.11.1/helm-v3.11.1-darwin-arm64.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2023-02-08T17:57:58Z" + download_count: 4 + id: 94833084 + label: null + name: helm-v3.11.1-darwin-arm64.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4Fpwm8 + size: 833 + state: uploaded + updated_at: "2023-02-08T17:57:59Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/94833084 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.11.1/helm-v3.11.1-darwin-arm64.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2023-02-08T17:57:59Z" + download_count: 4 + id: 94833085 + label: null + name: helm-v3.11.1-darwin-arm64.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4Fpwm9 + size: 833 + state: uploaded + updated_at: "2023-02-08T17:58:00Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/94833085 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.11.1/helm-v3.11.1-linux-386.tar.gz.asc + content_type: application/octet-stream + created_at: "2023-02-08T17:58:00Z" + download_count: 4 + id: 94833087 + label: null + name: helm-v3.11.1-linux-386.tar.gz.asc + node_id: RA_kwDOApspmc4Fpwm_ + size: 833 + state: uploaded + updated_at: "2023-02-08T17:58:00Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/94833087 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.11.1/helm-v3.11.1-linux-386.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2023-02-08T17:58:00Z" + download_count: 4 + id: 94833088 + label: null + name: helm-v3.11.1-linux-386.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4FpwnA + size: 833 + state: uploaded + updated_at: "2023-02-08T17:58:01Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/94833088 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.11.1/helm-v3.11.1-linux-386.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2023-02-08T17:58:01Z" + download_count: 4 + id: 94833093 + label: null + name: helm-v3.11.1-linux-386.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4FpwnF + size: 833 + state: uploaded + updated_at: "2023-02-08T17:58:01Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/94833093 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.11.1/helm-v3.11.1-linux-amd64.tar.gz.asc + content_type: application/octet-stream + created_at: "2023-02-08T17:58:01Z" + download_count: 71 + id: 94833096 + label: null + name: helm-v3.11.1-linux-amd64.tar.gz.asc + node_id: RA_kwDOApspmc4FpwnI + size: 833 + state: uploaded + updated_at: "2023-02-08T17:58:01Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/94833096 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.11.1/helm-v3.11.1-linux-amd64.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2023-02-08T17:58:01Z" + download_count: 65 + id: 94833098 + label: null + name: helm-v3.11.1-linux-amd64.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4FpwnK + size: 833 + state: uploaded + updated_at: "2023-02-08T17:58:02Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/94833098 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.11.1/helm-v3.11.1-linux-amd64.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2023-02-08T17:58:02Z" + download_count: 5 + id: 94833099 + label: null + name: helm-v3.11.1-linux-amd64.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4FpwnL + size: 833 + state: uploaded + updated_at: "2023-02-08T17:58:02Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/94833099 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.11.1/helm-v3.11.1-linux-arm.tar.gz.asc + content_type: application/octet-stream + created_at: "2023-02-08T17:58:02Z" + download_count: 4 + id: 94833100 + label: null + name: helm-v3.11.1-linux-arm.tar.gz.asc + node_id: RA_kwDOApspmc4FpwnM + size: 833 + state: uploaded + updated_at: "2023-02-08T17:58:03Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/94833100 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.11.1/helm-v3.11.1-linux-arm.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2023-02-08T17:58:03Z" + download_count: 4 + id: 94833101 + label: null + name: helm-v3.11.1-linux-arm.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4FpwnN + size: 833 + state: uploaded + updated_at: "2023-02-08T17:58:03Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/94833101 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.11.1/helm-v3.11.1-linux-arm.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2023-02-08T17:58:03Z" + download_count: 4 + id: 94833102 + label: null + name: helm-v3.11.1-linux-arm.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4FpwnO + size: 833 + state: uploaded + updated_at: "2023-02-08T17:58:04Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/94833102 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.11.1/helm-v3.11.1-linux-arm64.tar.gz.asc + content_type: application/octet-stream + created_at: "2023-02-08T17:58:04Z" + download_count: 14 + id: 94833103 + label: null + name: helm-v3.11.1-linux-arm64.tar.gz.asc + node_id: RA_kwDOApspmc4FpwnP + size: 833 + state: uploaded + updated_at: "2023-02-08T17:58:04Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/94833103 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.11.1/helm-v3.11.1-linux-arm64.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2023-02-08T17:58:04Z" + download_count: 14 + id: 94833104 + label: null + name: helm-v3.11.1-linux-arm64.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4FpwnQ + size: 833 + state: uploaded + updated_at: "2023-02-08T17:58:05Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/94833104 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.11.1/helm-v3.11.1-linux-arm64.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2023-02-08T17:58:05Z" + download_count: 4 + id: 94833105 + label: null + name: helm-v3.11.1-linux-arm64.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4FpwnR + size: 833 + state: uploaded + updated_at: "2023-02-08T17:58:05Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/94833105 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.11.1/helm-v3.11.1-linux-ppc64le.tar.gz.asc + content_type: application/octet-stream + created_at: "2023-02-08T17:58:05Z" + download_count: 3 + id: 94833110 + label: null + name: helm-v3.11.1-linux-ppc64le.tar.gz.asc + node_id: RA_kwDOApspmc4FpwnW + size: 833 + state: uploaded + updated_at: "2023-02-08T17:58:06Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/94833110 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.11.1/helm-v3.11.1-linux-ppc64le.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2023-02-08T17:58:06Z" + download_count: 3 + id: 94833111 + label: null + name: helm-v3.11.1-linux-ppc64le.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4FpwnX + size: 833 + state: uploaded + updated_at: "2023-02-08T17:58:06Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/94833111 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.11.1/helm-v3.11.1-linux-ppc64le.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2023-02-08T17:58:06Z" + download_count: 3 + id: 94833112 + label: null + name: helm-v3.11.1-linux-ppc64le.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4FpwnY + size: 833 + state: uploaded + updated_at: "2023-02-08T17:58:06Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/94833112 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.11.1/helm-v3.11.1-linux-s390x.tar.gz.asc + content_type: application/octet-stream + created_at: "2023-02-08T17:58:06Z" + download_count: 3 + id: 94833114 + label: null + name: helm-v3.11.1-linux-s390x.tar.gz.asc + node_id: RA_kwDOApspmc4Fpwna + size: 833 + state: uploaded + updated_at: "2023-02-08T17:58:07Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/94833114 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.11.1/helm-v3.11.1-linux-s390x.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2023-02-08T17:58:07Z" + download_count: 3 + id: 94833115 + label: null + name: helm-v3.11.1-linux-s390x.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4Fpwnb + size: 833 + state: uploaded + updated_at: "2023-02-08T17:58:07Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/94833115 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.11.1/helm-v3.11.1-linux-s390x.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2023-02-08T17:58:07Z" + download_count: 3 + id: 94833117 + label: null + name: helm-v3.11.1-linux-s390x.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4Fpwnd + size: 833 + state: uploaded + updated_at: "2023-02-08T17:58:08Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/94833117 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.11.1/helm-v3.11.1-windows-amd64.zip.asc + content_type: application/octet-stream + created_at: "2023-02-08T17:58:08Z" + download_count: 6 + id: 94833118 + label: null + name: helm-v3.11.1-windows-amd64.zip.asc + node_id: RA_kwDOApspmc4Fpwne + size: 833 + state: uploaded + updated_at: "2023-02-08T17:58:08Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/94833118 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.11.1/helm-v3.11.1-windows-amd64.zip.sha256.asc + content_type: application/octet-stream + created_at: "2023-02-08T17:58:08Z" + download_count: 4 + id: 94833120 + label: null + name: helm-v3.11.1-windows-amd64.zip.sha256.asc + node_id: RA_kwDOApspmc4Fpwng + size: 833 + state: uploaded + updated_at: "2023-02-08T17:58:08Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/94833120 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.11.1/helm-v3.11.1-windows-amd64.zip.sha256sum.asc + content_type: application/octet-stream + created_at: "2023-02-08T17:58:08Z" + download_count: 4 + id: 94833121 + label: null + name: helm-v3.11.1-windows-amd64.zip.sha256sum.asc + node_id: RA_kwDOApspmc4Fpwnh + size: 833 + state: uploaded + updated_at: "2023-02-08T17:58:09Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/94833121 + assets_url: https://api.github.com/repos/helm/helm/releases/91781936/assets + author: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + body: "Helm v3.11.1 is a security (patch) release. Users are strongly recommended + to update to this release.\r\n\r\nThe template function `getHostByName` + can be used to disclose information. More details are available in the + [CVE](https://github.com/helm/helm/security/advisories/GHSA-pwcw-6f5g-gxf8).\r\n\r\nThis + release introduces a breaking changes to Helm:\r\n\r\n* When using the + `helm` client for the `template`, `install`, and `upgrade` commands there + is a new flag. `--enable-dns` needs to be set for the `getHostByName` + template function to attempt to lookup an IP address for a given hostname. + If the flag is not set the template function will return an empty string + and skip looping up an IP address for the host.\r\n* The Helm SDK has + added the `EnableDNS` property to the install action, the upgrade action, + and the `Engine`. This property must be set to true for the in order for + the `getHostByName` template function to attempt to lookup an IP address.\r\n\r\nThe + default for both of these cases is false.\r\n\r\n[Philipp Stehle](https://github.com/phil9909) + at SAP disclosed the vulnerability to the Helm project.\r\n\r\n## Installation + and Upgrading\r\n\r\nDownload Helm v3.11.1. The common platform binaries + are here:\r\n\r\n- [MacOS amd64](https://get.helm.sh/helm-v3.11.1-darwin-amd64.tar.gz) + ([checksum](https://get.helm.sh/helm-v3.11.1-darwin-amd64.tar.gz.sha256sum) + / 2548a90e5cc957ccc5016b47060665a9d2cd4d5b4d61dcc32f5de3144d103826)\r\n- + [MacOS arm64](https://get.helm.sh/helm-v3.11.1-darwin-arm64.tar.gz) ([checksum](https://get.helm.sh/helm-v3.11.1-darwin-arm64.tar.gz.sha256sum) + / 43d0198a7a2ea2639caafa81bb0596c97bee2d4e40df50b36202343eb4d5c46b)\r\n- + [Linux amd64](https://get.helm.sh/helm-v3.11.1-linux-amd64.tar.gz) ([checksum](https://get.helm.sh/helm-v3.11.1-linux-amd64.tar.gz.sha256sum) + / 0b1be96b66fab4770526f136f5f1a385a47c41923d33aab0dcb500e0f6c1bf7c)\r\n- + [Linux arm](https://get.helm.sh/helm-v3.11.1-linux-arm.tar.gz) ([checksum](https://get.helm.sh/helm-v3.11.1-linux-arm.tar.gz.sha256sum) + / 77b797134ea9a121f2ede9d159a43a8b3895a9ff92cc24b71b77fb726d9eba6d)\r\n- + [Linux arm64](https://get.helm.sh/helm-v3.11.1-linux-arm64.tar.gz) ([checksum](https://get.helm.sh/helm-v3.11.1-linux-arm64.tar.gz.sha256sum) + / 919173e8fb7a3b54d76af9feb92e49e86d5a80c5185020bae8c393fa0f0de1e8)\r\n- + [Linux i386](https://get.helm.sh/helm-v3.11.1-linux-386.tar.gz) ([checksum](https://get.helm.sh/helm-v3.11.1-linux-386.tar.gz.sha256sum) + / 1581a4ce9d0014c49a3b2c6421f048d5c600e8cceced636eb4559073c335af0b)\r\n- + [Linux ppc64le](https://get.helm.sh/helm-v3.11.1-linux-ppc64le.tar.gz) + ([checksum](https://get.helm.sh/helm-v3.11.1-linux-ppc64le.tar.gz.sha256sum) + / 6ab8f2e253c115b17eda1e10e96d1637047efd315e9807bcb1d0d0bcad278ab7)\r\n- + [Linux s390x](https://get.helm.sh/helm-v3.11.1-linux-s390x.tar.gz) ([checksum](https://get.helm.sh/helm-v3.11.1-linux-s390x.tar.gz.sha256sum) + / ab133e6b709c8107dc4f8f62838947350adb8e23d76b8c2c592ff4c09bc956ef)\r\n- + [Windows amd64](https://get.helm.sh/helm-v3.11.1-windows-amd64.zip) ([checksum](https://get.helm.sh/helm-v3.11.1-windows-amd64.zip.sha256sum) + / bc37d5d283e57c5dfa94f92ff704c8e273599ff8df3f8132cef5ca73f6a23d0a)\r\n\r\nThis + release was signed with `672C 657B E06B 4B30 969C 4A57 4614 49C2 5E36 + B98E ` and can be found at @mattfarina [keybase account](https://keybase.io/mattfarina). + Please use the attached signatures for verifying this release using `gpg`.\r\n\r\nThe + [Quickstart Guide](https://helm.sh/docs/intro/quickstart/) will get you + going from there. For **upgrade instructions** or detailed installation + notes, check the [install guide](https://helm.sh/docs/intro/install/). + You can also use a [script to install](https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3) + on any system with `bash`.\r\n\r\n## What's Next\r\n\r\n- 3.11.1 is the + next patch/bug fix release and will be on March 08, 2023.\r\n- 3.12.0 + is the next feature release and be on May 10, 2023." + created_at: "2023-02-08T17:04:18Z" + draft: false + html_url: https://github.com/helm/helm/releases/tag/v3.11.1 + id: 91781936 + mentions_count: 1 + name: Helm v3.11.1 + node_id: RE_kwDOApspmc4FeHsw + prerelease: false + published_at: "2023-02-08T18:02:00Z" + reactions: + "+1": 1 + "-1": 0 + confused: 0 + eyes: 0 + heart: 0 + hooray: 1 + laugh: 0 + rocket: 0 + total_count: 2 + url: https://api.github.com/repos/helm/helm/releases/91781936/reactions + tag_name: v3.11.1 + tarball_url: https://api.github.com/repos/helm/helm/tarball/v3.11.1 + target_commitish: release-3.11 + upload_url: https://uploads.github.com/repos/helm/helm/releases/91781936/assets{?name,label} + url: https://api.github.com/repos/helm/helm/releases/91781936 + zipball_url: https://api.github.com/repos/helm/helm/zipball/v3.11.1 + 3.11.2: + githubRelease: + assets: + - browser_download_url: https://github.com/helm/helm/releases/download/v3.11.2/helm-v3.11.2-darwin-amd64.tar.gz.asc + content_type: text/plain + created_at: "2023-03-08T21:43:11Z" + download_count: 5 + id: 98595808 + label: null + name: helm-v3.11.2-darwin-amd64.tar.gz.asc + node_id: RA_kwDOApspmc4F4HPg + size: 833 + state: uploaded + updated_at: "2023-03-08T21:43:11Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/98595808 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.11.2/helm-v3.11.2-darwin-amd64.tar.gz.sha256.asc + content_type: text/plain + created_at: "2023-03-08T21:43:11Z" + download_count: 6 + id: 98595810 + label: null + name: helm-v3.11.2-darwin-amd64.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4F4HPi + size: 833 + state: uploaded + updated_at: "2023-03-08T21:43:12Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/98595810 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.11.2/helm-v3.11.2-darwin-amd64.tar.gz.sha256sum.asc + content_type: text/plain + created_at: "2023-03-08T21:43:12Z" + download_count: 6 + id: 98595811 + label: null + name: helm-v3.11.2-darwin-amd64.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4F4HPj + size: 833 + state: uploaded + updated_at: "2023-03-08T21:43:12Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/98595811 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.11.2/helm-v3.11.2-darwin-arm64.tar.gz.asc + content_type: text/plain + created_at: "2023-03-08T21:43:12Z" + download_count: 5 + id: 98595812 + label: null + name: helm-v3.11.2-darwin-arm64.tar.gz.asc + node_id: RA_kwDOApspmc4F4HPk + size: 833 + state: uploaded + updated_at: "2023-03-08T21:43:12Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/98595812 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.11.2/helm-v3.11.2-darwin-arm64.tar.gz.sha256.asc + content_type: text/plain + created_at: "2023-03-08T21:43:12Z" + download_count: 4 + id: 98595813 + label: null + name: helm-v3.11.2-darwin-arm64.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4F4HPl + size: 833 + state: uploaded + updated_at: "2023-03-08T21:43:13Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/98595813 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.11.2/helm-v3.11.2-darwin-arm64.tar.gz.sha256sum.asc + content_type: text/plain + created_at: "2023-03-08T21:43:13Z" + download_count: 4 + id: 98595815 + label: null + name: helm-v3.11.2-darwin-arm64.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4F4HPn + size: 833 + state: uploaded + updated_at: "2023-03-08T21:43:13Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/98595815 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.11.2/helm-v3.11.2-linux-386.tar.gz.asc + content_type: text/plain + created_at: "2023-03-08T21:43:13Z" + download_count: 4 + id: 98595816 + label: null + name: helm-v3.11.2-linux-386.tar.gz.asc + node_id: RA_kwDOApspmc4F4HPo + size: 833 + state: uploaded + updated_at: "2023-03-08T21:43:13Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/98595816 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.11.2/helm-v3.11.2-linux-386.tar.gz.sha256.asc + content_type: text/plain + created_at: "2023-03-08T21:43:13Z" + download_count: 5 + id: 98595819 + label: null + name: helm-v3.11.2-linux-386.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4F4HPr + size: 833 + state: uploaded + updated_at: "2023-03-08T21:43:13Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/98595819 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.11.2/helm-v3.11.2-linux-386.tar.gz.sha256sum.asc + content_type: text/plain + created_at: "2023-03-08T21:43:13Z" + download_count: 4 + id: 98595820 + label: null + name: helm-v3.11.2-linux-386.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4F4HPs + size: 833 + state: uploaded + updated_at: "2023-03-08T21:43:14Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/98595820 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.11.2/helm-v3.11.2-linux-amd64.tar.gz.asc + content_type: text/plain + created_at: "2023-03-08T21:43:14Z" + download_count: 33 + id: 98595822 + label: null + name: helm-v3.11.2-linux-amd64.tar.gz.asc + node_id: RA_kwDOApspmc4F4HPu + size: 833 + state: uploaded + updated_at: "2023-03-08T21:43:14Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/98595822 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.11.2/helm-v3.11.2-linux-amd64.tar.gz.sha256.asc + content_type: text/plain + created_at: "2023-03-08T21:43:14Z" + download_count: 29 + id: 98595824 + label: null + name: helm-v3.11.2-linux-amd64.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4F4HPw + size: 833 + state: uploaded + updated_at: "2023-03-08T21:43:14Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/98595824 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.11.2/helm-v3.11.2-linux-amd64.tar.gz.sha256sum.asc + content_type: text/plain + created_at: "2023-03-08T21:43:14Z" + download_count: 6 + id: 98595826 + label: null + name: helm-v3.11.2-linux-amd64.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4F4HPy + size: 833 + state: uploaded + updated_at: "2023-03-08T21:43:14Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/98595826 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.11.2/helm-v3.11.2-linux-arm.tar.gz.asc + content_type: text/plain + created_at: "2023-03-08T21:43:14Z" + download_count: 5 + id: 98595827 + label: null + name: helm-v3.11.2-linux-arm.tar.gz.asc + node_id: RA_kwDOApspmc4F4HPz + size: 833 + state: uploaded + updated_at: "2023-03-08T21:43:15Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/98595827 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.11.2/helm-v3.11.2-linux-arm.tar.gz.sha256.asc + content_type: text/plain + created_at: "2023-03-08T21:43:15Z" + download_count: 5 + id: 98595829 + label: null + name: helm-v3.11.2-linux-arm.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4F4HP1 + size: 833 + state: uploaded + updated_at: "2023-03-08T21:43:15Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/98595829 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.11.2/helm-v3.11.2-linux-arm.tar.gz.sha256sum.asc + content_type: text/plain + created_at: "2023-03-08T21:43:15Z" + download_count: 5 + id: 98595831 + label: null + name: helm-v3.11.2-linux-arm.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4F4HP3 + size: 833 + state: uploaded + updated_at: "2023-03-08T21:43:15Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/98595831 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.11.2/helm-v3.11.2-linux-arm64.tar.gz.asc + content_type: text/plain + created_at: "2023-03-08T21:43:15Z" + download_count: 7 + id: 98595833 + label: null + name: helm-v3.11.2-linux-arm64.tar.gz.asc + node_id: RA_kwDOApspmc4F4HP5 + size: 833 + state: uploaded + updated_at: "2023-03-08T21:43:15Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/98595833 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.11.2/helm-v3.11.2-linux-arm64.tar.gz.sha256.asc + content_type: text/plain + created_at: "2023-03-08T21:43:15Z" + download_count: 8 + id: 98595835 + label: null + name: helm-v3.11.2-linux-arm64.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4F4HP7 + size: 833 + state: uploaded + updated_at: "2023-03-08T21:43:16Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/98595835 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.11.2/helm-v3.11.2-linux-arm64.tar.gz.sha256sum.asc + content_type: text/plain + created_at: "2023-03-08T21:43:16Z" + download_count: 4 + id: 98595836 + label: null + name: helm-v3.11.2-linux-arm64.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4F4HP8 + size: 833 + state: uploaded + updated_at: "2023-03-08T21:43:16Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/98595836 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.11.2/helm-v3.11.2-linux-ppc64le.tar.gz.asc + content_type: text/plain + created_at: "2023-03-08T21:43:16Z" + download_count: 2 + id: 98595837 + label: null + name: helm-v3.11.2-linux-ppc64le.tar.gz.asc + node_id: RA_kwDOApspmc4F4HP9 + size: 833 + state: uploaded + updated_at: "2023-03-08T21:43:16Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/98595837 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.11.2/helm-v3.11.2-linux-ppc64le.tar.gz.sha256.asc + content_type: text/plain + created_at: "2023-03-08T21:43:16Z" + download_count: 5 + id: 98595839 + label: null + name: helm-v3.11.2-linux-ppc64le.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4F4HP_ + size: 833 + state: uploaded + updated_at: "2023-03-08T21:43:17Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/98595839 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.11.2/helm-v3.11.2-linux-ppc64le.tar.gz.sha256sum.asc + content_type: text/plain + created_at: "2023-03-08T21:43:17Z" + download_count: 5 + id: 98595840 + label: null + name: helm-v3.11.2-linux-ppc64le.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4F4HQA + size: 833 + state: uploaded + updated_at: "2023-03-08T21:43:17Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/98595840 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.11.2/helm-v3.11.2-linux-s390x.tar.gz.asc + content_type: text/plain + created_at: "2023-03-08T21:43:17Z" + download_count: 4 + id: 98595841 + label: null + name: helm-v3.11.2-linux-s390x.tar.gz.asc + node_id: RA_kwDOApspmc4F4HQB + size: 833 + state: uploaded + updated_at: "2023-03-08T21:43:17Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/98595841 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.11.2/helm-v3.11.2-linux-s390x.tar.gz.sha256.asc + content_type: text/plain + created_at: "2023-03-08T21:43:17Z" + download_count: 5 + id: 98595845 + label: null + name: helm-v3.11.2-linux-s390x.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4F4HQF + size: 833 + state: uploaded + updated_at: "2023-03-08T21:43:17Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/98595845 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.11.2/helm-v3.11.2-linux-s390x.tar.gz.sha256sum.asc + content_type: text/plain + created_at: "2023-03-08T21:43:17Z" + download_count: 5 + id: 98595846 + label: null + name: helm-v3.11.2-linux-s390x.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4F4HQG + size: 833 + state: uploaded + updated_at: "2023-03-08T21:43:18Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/98595846 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.11.2/helm-v3.11.2-windows-amd64.zip.asc + content_type: text/plain + created_at: "2023-03-08T21:43:18Z" + download_count: 4 + id: 98595847 + label: null + name: helm-v3.11.2-windows-amd64.zip.asc + node_id: RA_kwDOApspmc4F4HQH + size: 833 + state: uploaded + updated_at: "2023-03-08T21:43:18Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/98595847 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.11.2/helm-v3.11.2-windows-amd64.zip.sha256.asc + content_type: text/plain + created_at: "2023-03-08T21:43:18Z" + download_count: 4 + id: 98595849 + label: null + name: helm-v3.11.2-windows-amd64.zip.sha256.asc + node_id: RA_kwDOApspmc4F4HQJ + size: 833 + state: uploaded + updated_at: "2023-03-08T21:43:18Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/98595849 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.11.2/helm-v3.11.2-windows-amd64.zip.sha256sum.asc + content_type: text/plain + created_at: "2023-03-08T21:43:18Z" + download_count: 4 + id: 98595851 + label: null + name: helm-v3.11.2-windows-amd64.zip.sha256sum.asc + node_id: RA_kwDOApspmc4F4HQL + size: 833 + state: uploaded + updated_at: "2023-03-08T21:43:18Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/98595851 + assets_url: https://api.github.com/repos/helm/helm/releases/94990665/assets + author: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + body: "Helm v3.11.2 is a patch release. Users are encouraged to upgrade + for the best experience. Users are encouraged to upgrade for the best + experience.\r\n\r\nThe community keeps growing, and we'd love to see you + there!\r\n\r\n- Join the discussion in [Kubernetes Slack](https://kubernetes.slack.com):\r\n + \ - for questions and just to hang out\r\n - for discussing PRs, code, + and bugs\r\n- Hang out at the Public Developer Call: Thursday, 9:30 Pacific + via [Zoom](https://zoom.us/j/696660622)\r\n- Test, debug, and contribute + charts: [ArtifactHub/packages](https://artifacthub.io/packages/search?kind=0)\r\n\r\n## + Installation and Upgrading\r\n\r\nDownload Helm v3.11.2. The common platform + binaries are here:\r\n\r\n- [MacOS amd64](https://get.helm.sh/helm-v3.11.2-darwin-amd64.tar.gz) + ([checksum](https://get.helm.sh/helm-v3.11.2-darwin-amd64.tar.gz.sha256sum) + / 404938fd2c6eff9e0dab830b0db943fca9e1572cd3d7ee40904705760faa390f)\r\n- + [MacOS arm64](https://get.helm.sh/helm-v3.11.2-darwin-arm64.tar.gz) ([checksum](https://get.helm.sh/helm-v3.11.2-darwin-arm64.tar.gz.sha256sum) + / f61a3aa55827de2d8c64a2063fd744b618b443ed063871b79f52069e90813151)\r\n- + [Linux amd64](https://get.helm.sh/helm-v3.11.2-linux-amd64.tar.gz) ([checksum](https://get.helm.sh/helm-v3.11.2-linux-amd64.tar.gz.sha256sum) + / 781d826daec584f9d50a01f0f7dadfd25a3312217a14aa2fbb85107b014ac8ca)\r\n- + [Linux arm](https://get.helm.sh/helm-v3.11.2-linux-arm.tar.gz) ([checksum](https://get.helm.sh/helm-v3.11.2-linux-arm.tar.gz.sha256sum) + / 444b65100e224beee0a3a3a54cb19dad37388fa9217ab2782ba63551c4a2e128)\r\n- + [Linux arm64](https://get.helm.sh/helm-v3.11.2-linux-arm64.tar.gz) ([checksum](https://get.helm.sh/helm-v3.11.2-linux-arm64.tar.gz.sha256sum) + / 0a60baac83c3106017666864e664f52a4e16fbd578ac009f9a85456a9241c5db)\r\n- + [Linux i386](https://get.helm.sh/helm-v3.11.2-linux-386.tar.gz) ([checksum](https://get.helm.sh/helm-v3.11.2-linux-386.tar.gz.sha256sum) + / dee028554da99415eb19b4b1fd423db390f8f4d49e4c4cbc3df5d6f658ec7f38)\r\n- + [Linux ppc64le](https://get.helm.sh/helm-v3.11.2-linux-ppc64le.tar.gz) + ([checksum](https://get.helm.sh/helm-v3.11.2-linux-ppc64le.tar.gz.sha256sum) + / 04cbb8d053f2d8023e5cc6b771e9fa384fdd341eb7193a0fb592b7e2a036bf3d)\r\n- + [Linux s390x](https://get.helm.sh/helm-v3.11.2-linux-s390x.tar.gz) ([checksum](https://get.helm.sh/helm-v3.11.2-linux-s390x.tar.gz.sha256sum) + / 9793b80711c2fd82dec6f9742415fffb762d41ca20033d4413364d372517f958)\r\n- + [Windows amd64](https://get.helm.sh/helm-v3.11.2-windows-amd64.zip) ([checksum](https://get.helm.sh/helm-v3.11.2-windows-amd64.zip.sha256sum) + / bca0c5b99a0e6621032f1767e61a1723b86c5f4ef565fa58be8be6d619a4276a)\r\n\r\nThis + release was signed with `672C 657B E06B 4B30 969C 4A57 4614 49C2 5E36 + B98E ` and can be found at @mattfarina [keybase account](https://keybase.io/mattfarina). + Please use the attached signatures for verifying this release using `gpg`.\r\n\r\nThe + [Quickstart Guide](https://helm.sh/docs/intro/quickstart/) will get you + going from there. For **upgrade instructions** or detailed installation + notes, check the [install guide](https://helm.sh/docs/intro/install/). + You can also use a [script to install](https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3) + on any system with `bash`.\r\n\r\n## What's Next\r\n\r\n- 3.11.3 is the + next patch/bug fix release and will be on April 12, 2023.\r\n- 3.12.0 + is the next feature release and be on May 10, 2023.\r\n\r\n## Changelog\r\n\r\n- + chore(deps): bump github.com/rubenv/sql-migrate from 1.2.0 to 1.3.1 912ebc1cd10d38d340f048efaf0abda047c3468e + (dependabot[bot])\r\n- the linter varcheck and deadcode are deprecated + (since v1.49.0) 321d3f32d8698e296a9a0e5cf2103d9bc5ba3189 (Fish-pro)\r\n- + fix template --output-dir issue d44881ddc096444f210e1f4c3e39f95f80723753 + (yxxhero)" + created_at: "2023-03-08T21:07:42Z" + draft: false + html_url: https://github.com/helm/helm/releases/tag/v3.11.2 + id: 94990665 + mentions_count: 1 + name: Helm v3.11.2 + node_id: RE_kwDOApspmc4FqXFJ + prerelease: false + published_at: "2023-03-08T21:43:50Z" + tag_name: v3.11.2 + tarball_url: https://api.github.com/repos/helm/helm/tarball/v3.11.2 + target_commitish: release-3.11 + upload_url: https://uploads.github.com/repos/helm/helm/releases/94990665/assets{?name,label} + url: https://api.github.com/repos/helm/helm/releases/94990665 + zipball_url: https://api.github.com/repos/helm/helm/zipball/v3.11.2 + 3.11.3: + githubRelease: + assets: + - browser_download_url: https://github.com/helm/helm/releases/download/v3.11.3/helm-v3.11.3-darwin-amd64.tar.gz.asc + content_type: text/plain + created_at: "2023-04-12T18:37:03Z" + download_count: 6 + id: 103391079 + label: null + name: helm-v3.11.3-darwin-amd64.tar.gz.asc + node_id: RA_kwDOApspmc4GKZ9n + size: 833 + state: uploaded + updated_at: "2023-04-12T18:37:03Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/103391079 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.11.3/helm-v3.11.3-darwin-amd64.tar.gz.sha256.asc + content_type: text/plain + created_at: "2023-04-12T18:37:03Z" + download_count: 5 + id: 103391082 + label: null + name: helm-v3.11.3-darwin-amd64.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4GKZ9q + size: 833 + state: uploaded + updated_at: "2023-04-12T18:37:03Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/103391082 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.11.3/helm-v3.11.3-darwin-amd64.tar.gz.sha256sum.asc + content_type: text/plain + created_at: "2023-04-12T18:37:04Z" + download_count: 5 + id: 103391083 + label: null + name: helm-v3.11.3-darwin-amd64.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4GKZ9r + size: 833 + state: uploaded + updated_at: "2023-04-12T18:37:04Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/103391083 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.11.3/helm-v3.11.3-darwin-arm64.tar.gz.asc + content_type: text/plain + created_at: "2023-04-12T18:37:04Z" + download_count: 5 + id: 103391084 + label: null + name: helm-v3.11.3-darwin-arm64.tar.gz.asc + node_id: RA_kwDOApspmc4GKZ9s + size: 833 + state: uploaded + updated_at: "2023-04-12T18:37:04Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/103391084 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.11.3/helm-v3.11.3-darwin-arm64.tar.gz.sha256.asc + content_type: text/plain + created_at: "2023-04-12T18:37:04Z" + download_count: 5 + id: 103391087 + label: null + name: helm-v3.11.3-darwin-arm64.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4GKZ9v + size: 833 + state: uploaded + updated_at: "2023-04-12T18:37:04Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/103391087 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.11.3/helm-v3.11.3-darwin-arm64.tar.gz.sha256sum.asc + content_type: text/plain + created_at: "2023-04-12T18:37:04Z" + download_count: 5 + id: 103391088 + label: null + name: helm-v3.11.3-darwin-arm64.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4GKZ9w + size: 833 + state: uploaded + updated_at: "2023-04-12T18:37:05Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/103391088 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.11.3/helm-v3.11.3-linux-386.tar.gz.asc + content_type: text/plain + created_at: "2023-04-12T18:37:05Z" + download_count: 5 + id: 103391089 + label: null + name: helm-v3.11.3-linux-386.tar.gz.asc + node_id: RA_kwDOApspmc4GKZ9x + size: 833 + state: uploaded + updated_at: "2023-04-12T18:37:05Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/103391089 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.11.3/helm-v3.11.3-linux-386.tar.gz.sha256.asc + content_type: text/plain + created_at: "2023-04-12T18:37:05Z" + download_count: 5 + id: 103391090 + label: null + name: helm-v3.11.3-linux-386.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4GKZ9y + size: 833 + state: uploaded + updated_at: "2023-04-12T18:37:05Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/103391090 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.11.3/helm-v3.11.3-linux-386.tar.gz.sha256sum.asc + content_type: text/plain + created_at: "2023-04-12T18:37:05Z" + download_count: 5 + id: 103391091 + label: null + name: helm-v3.11.3-linux-386.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4GKZ9z + size: 833 + state: uploaded + updated_at: "2023-04-12T18:37:05Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/103391091 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.11.3/helm-v3.11.3-linux-amd64.tar.gz.asc + content_type: text/plain + created_at: "2023-04-12T18:37:05Z" + download_count: 44 + id: 103391092 + label: null + name: helm-v3.11.3-linux-amd64.tar.gz.asc + node_id: RA_kwDOApspmc4GKZ90 + size: 833 + state: uploaded + updated_at: "2023-04-12T18:37:06Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/103391092 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.11.3/helm-v3.11.3-linux-amd64.tar.gz.sha256.asc + content_type: text/plain + created_at: "2023-04-12T18:37:06Z" + download_count: 36 + id: 103391093 + label: null + name: helm-v3.11.3-linux-amd64.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4GKZ91 + size: 833 + state: uploaded + updated_at: "2023-04-12T18:37:06Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/103391093 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.11.3/helm-v3.11.3-linux-amd64.tar.gz.sha256sum.asc + content_type: text/plain + created_at: "2023-04-12T18:37:06Z" + download_count: 5 + id: 103391094 + label: null + name: helm-v3.11.3-linux-amd64.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4GKZ92 + size: 833 + state: uploaded + updated_at: "2023-04-12T18:37:06Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/103391094 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.11.3/helm-v3.11.3-linux-arm.tar.gz.asc + content_type: text/plain + created_at: "2023-04-12T18:37:06Z" + download_count: 6 + id: 103391096 + label: null + name: helm-v3.11.3-linux-arm.tar.gz.asc + node_id: RA_kwDOApspmc4GKZ94 + size: 833 + state: uploaded + updated_at: "2023-04-12T18:37:06Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/103391096 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.11.3/helm-v3.11.3-linux-arm.tar.gz.sha256.asc + content_type: text/plain + created_at: "2023-04-12T18:37:06Z" + download_count: 5 + id: 103391098 + label: null + name: helm-v3.11.3-linux-arm.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4GKZ96 + size: 833 + state: uploaded + updated_at: "2023-04-12T18:37:07Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/103391098 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.11.3/helm-v3.11.3-linux-arm.tar.gz.sha256sum.asc + content_type: text/plain + created_at: "2023-04-12T18:37:07Z" + download_count: 5 + id: 103391102 + label: null + name: helm-v3.11.3-linux-arm.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4GKZ9- + size: 833 + state: uploaded + updated_at: "2023-04-12T18:37:07Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/103391102 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.11.3/helm-v3.11.3-linux-arm64.tar.gz.asc + content_type: text/plain + created_at: "2023-04-12T18:37:07Z" + download_count: 16 + id: 103391103 + label: null + name: helm-v3.11.3-linux-arm64.tar.gz.asc + node_id: RA_kwDOApspmc4GKZ9_ + size: 833 + state: uploaded + updated_at: "2023-04-12T18:37:07Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/103391103 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.11.3/helm-v3.11.3-linux-arm64.tar.gz.sha256.asc + content_type: text/plain + created_at: "2023-04-12T18:37:07Z" + download_count: 16 + id: 103391104 + label: null + name: helm-v3.11.3-linux-arm64.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4GKZ-A + size: 833 + state: uploaded + updated_at: "2023-04-12T18:37:07Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/103391104 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.11.3/helm-v3.11.3-linux-arm64.tar.gz.sha256sum.asc + content_type: text/plain + created_at: "2023-04-12T18:37:07Z" + download_count: 5 + id: 103391105 + label: null + name: helm-v3.11.3-linux-arm64.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4GKZ-B + size: 833 + state: uploaded + updated_at: "2023-04-12T18:37:08Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/103391105 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.11.3/helm-v3.11.3-linux-ppc64le.tar.gz.asc + content_type: text/plain + created_at: "2023-04-12T18:37:08Z" + download_count: 4 + id: 103391106 + label: null + name: helm-v3.11.3-linux-ppc64le.tar.gz.asc + node_id: RA_kwDOApspmc4GKZ-C + size: 833 + state: uploaded + updated_at: "2023-04-12T18:37:08Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/103391106 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.11.3/helm-v3.11.3-linux-ppc64le.tar.gz.sha256.asc + content_type: text/plain + created_at: "2023-04-12T18:37:08Z" + download_count: 4 + id: 103391107 + label: null + name: helm-v3.11.3-linux-ppc64le.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4GKZ-D + size: 833 + state: uploaded + updated_at: "2023-04-12T18:37:08Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/103391107 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.11.3/helm-v3.11.3-linux-ppc64le.tar.gz.sha256sum.asc + content_type: text/plain + created_at: "2023-04-12T18:37:08Z" + download_count: 4 + id: 103391108 + label: null + name: helm-v3.11.3-linux-ppc64le.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4GKZ-E + size: 833 + state: uploaded + updated_at: "2023-04-12T18:37:08Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/103391108 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.11.3/helm-v3.11.3-linux-s390x.tar.gz.asc + content_type: text/plain + created_at: "2023-04-12T18:37:08Z" + download_count: 4 + id: 103391109 + label: null + name: helm-v3.11.3-linux-s390x.tar.gz.asc + node_id: RA_kwDOApspmc4GKZ-F + size: 833 + state: uploaded + updated_at: "2023-04-12T18:37:09Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/103391109 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.11.3/helm-v3.11.3-linux-s390x.tar.gz.sha256.asc + content_type: text/plain + created_at: "2023-04-12T18:37:09Z" + download_count: 4 + id: 103391111 + label: null + name: helm-v3.11.3-linux-s390x.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4GKZ-H + size: 833 + state: uploaded + updated_at: "2023-04-12T18:37:09Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/103391111 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.11.3/helm-v3.11.3-linux-s390x.tar.gz.sha256sum.asc + content_type: text/plain + created_at: "2023-04-12T18:37:09Z" + download_count: 4 + id: 103391112 + label: null + name: helm-v3.11.3-linux-s390x.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4GKZ-I + size: 833 + state: uploaded + updated_at: "2023-04-12T18:37:09Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/103391112 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.11.3/helm-v3.11.3-windows-amd64.zip.asc + content_type: text/plain + created_at: "2023-04-12T18:37:09Z" + download_count: 7 + id: 103391113 + label: null + name: helm-v3.11.3-windows-amd64.zip.asc + node_id: RA_kwDOApspmc4GKZ-J + size: 833 + state: uploaded + updated_at: "2023-04-12T18:37:09Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/103391113 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.11.3/helm-v3.11.3-windows-amd64.zip.sha256.asc + content_type: text/plain + created_at: "2023-04-12T18:37:09Z" + download_count: 5 + id: 103391114 + label: null + name: helm-v3.11.3-windows-amd64.zip.sha256.asc + node_id: RA_kwDOApspmc4GKZ-K + size: 833 + state: uploaded + updated_at: "2023-04-12T18:37:10Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/103391114 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.11.3/helm-v3.11.3-windows-amd64.zip.sha256sum.asc + content_type: text/plain + created_at: "2023-04-12T18:37:10Z" + download_count: 6 + id: 103391116 + label: null + name: helm-v3.11.3-windows-amd64.zip.sha256sum.asc + node_id: RA_kwDOApspmc4GKZ-M + size: 833 + state: uploaded + updated_at: "2023-04-12T18:37:10Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/103391116 + assets_url: https://api.github.com/repos/helm/helm/releases/99187794/assets + author: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + body: "Helm v3.11.2 is a patch release. Users are encouraged to upgrade + for the best experience. Users are encouraged to upgrade for the best + experience.\r\n\r\nThe community keeps growing, and we'd love to see you + there!\r\n\r\n- Join the discussion in [Kubernetes Slack](https://kubernetes.slack.com):\r\n + \ - for questions and just to hang out\r\n - for discussing PRs, code, + and bugs\r\n- Hang out at the Public Developer Call: Thursday, 9:30 Pacific + via [Zoom](https://zoom.us/j/696660622)\r\n- Test, debug, and contribute + charts: [ArtifactHub/packages](https://artifacthub.io/packages/search?kind=0)\r\n\r\n## + Installation and Upgrading\r\n\r\nDownload Helm v3.11.3. The common platform + binaries are here:\r\n\r\n- [MacOS amd64](https://get.helm.sh/helm-v3.11.3-darwin-amd64.tar.gz) + ([checksum](https://get.helm.sh/helm-v3.11.3-darwin-amd64.tar.gz.sha256sum) + / 9d029df37664b50e427442a600e4e065fa75fd74dac996c831ac68359654b2c4)\r\n- + [MacOS arm64](https://get.helm.sh/helm-v3.11.3-darwin-arm64.tar.gz) ([checksum](https://get.helm.sh/helm-v3.11.3-darwin-arm64.tar.gz.sha256sum) + / 267e4d50b68e8854b9cc44517da9ab2f47dec39787fed9f7eba42080d61ac7f8)\r\n- + [Linux amd64](https://get.helm.sh/helm-v3.11.3-linux-amd64.tar.gz) ([checksum](https://get.helm.sh/helm-v3.11.3-linux-amd64.tar.gz.sha256sum) + / ca2d5d40d4cdfb9a3a6205dd803b5bc8def00bd2f13e5526c127e9b667974a89)\r\n- + [Linux arm](https://get.helm.sh/helm-v3.11.3-linux-arm.tar.gz) ([checksum](https://get.helm.sh/helm-v3.11.3-linux-arm.tar.gz.sha256sum) + / 0816db0efd033c78c3cc1c37506967947b01965b9c0739fe13ec2b1eea08f601)\r\n- + [Linux arm64](https://get.helm.sh/helm-v3.11.3-linux-arm64.tar.gz) ([checksum](https://get.helm.sh/helm-v3.11.3-linux-arm64.tar.gz.sha256sum) + / 9f58e707dcbe9a3b7885c4e24ef57edfb9794490d72705b33a93fa1f3572cce4)\r\n- + [Linux i386](https://get.helm.sh/helm-v3.11.3-linux-386.tar.gz) ([checksum](https://get.helm.sh/helm-v3.11.3-linux-386.tar.gz.sha256sum) + / 09c111400d953eda371aaa6e5f0f65acc7af6c6b31a9f327414bb6f0756ea215)\r\n- + [Linux ppc64le](https://get.helm.sh/helm-v3.11.3-linux-ppc64le.tar.gz) + ([checksum](https://get.helm.sh/helm-v3.11.3-linux-ppc64le.tar.gz.sha256sum) + / 9f0a8299152ec714cee7bdf61066ba83d34d614c63e97843d30815b55c942612)\r\n- + [Linux s390x](https://get.helm.sh/helm-v3.11.3-linux-s390x.tar.gz) ([checksum](https://get.helm.sh/helm-v3.11.3-linux-s390x.tar.gz.sha256sum) + / e8b0682166628a9c16bf185d60c3d766a8ff814bff362de88280ef202148fbec)\r\n- + [Windows amd64](https://get.helm.sh/helm-v3.11.3-windows-amd64.zip) ([checksum](https://get.helm.sh/helm-v3.11.3-windows-amd64.zip.sha256sum) + / ae146d2a90600c6958bc801213daef467237cf475e26ab3f476dfb8e0d9549b7)\r\n\r\nThis + release was signed with `672C 657B E06B 4B30 969C 4A57 4614 49C2 5E36 + B98E ` and can be found at @mattfarina [keybase account](https://keybase.io/mattfarina). + Please use the attached signatures for verifying this release using `gpg`.\r\n\r\nThe + [Quickstart Guide](https://helm.sh/docs/intro/quickstart/) will get you + going from there. For **upgrade instructions** or detailed installation + notes, check the [install guide](https://helm.sh/docs/intro/install/). + You can also use a [script to install](https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3) + on any system with `bash`.\r\n\r\n## What's Next\r\n\r\n- 3.12.0 is the + next feature release and be on May 10, 2023.\r\n\r\n## Changelog\r\n\r\n- + chore(deps): bump golang.org/x/text from 0.7.0 to 0.9.0 66a969e7cc08af2377d055f4e6283c33ee84be33 + (dependabot[bot])\r\n- Fix goroutine leak in perform 548366cb6c91301e595c9093ffd0ec119ca9dad0 + (willzgli)\r\n- Fix goroutine leak in action install 4a3a2683536b4d46639dc7460846e44f426e5e01 + (Matt Farina)\r\n- Fix 32bit-x86 typo in testsuite 272f6b9d80e35d68efb4e45942aa4d746e2df0f3 + (Dirk Müller)\r\n- chore(deps): bump github.com/docker/docker 88b2db4a07f4ea9a11751e8c3de615d6e080301a + (dependabot[bot])\r\n- chore(deps): bump github.com/containerd/containerd + from 1.6.15 to 1.7.0 b6a8417daca5fe1458d8a9394164494afe410a23 (dependabot[bot])\r\n- + Fixes Readiness Check for statefulsets using partitioned rolling update. + (#11774) 7994bb4d357a3846263dfb22b97da867159253fe (Aman Nijhawan)" + created_at: "2023-04-12T17:27:35Z" + draft: false + html_url: https://github.com/helm/helm/releases/tag/v3.11.3 + id: 99187794 + mentions_count: 1 + name: Helm v3.11.3 + node_id: RE_kwDOApspmc4F6XxS + prerelease: false + published_at: "2023-04-12T18:38:13Z" + reactions: + "+1": 2 + "-1": 0 + confused: 0 + eyes: 0 + heart: 0 + hooray: 0 + laugh: 0 + rocket: 0 + total_count: 2 + url: https://api.github.com/repos/helm/helm/releases/99187794/reactions + tag_name: v3.11.3 + tarball_url: https://api.github.com/repos/helm/helm/tarball/v3.11.3 + target_commitish: release-3.11 + upload_url: https://uploads.github.com/repos/helm/helm/releases/99187794/assets{?name,label} + url: https://api.github.com/repos/helm/helm/releases/99187794 + zipball_url: https://api.github.com/repos/helm/helm/zipball/v3.11.3 + 3.12.0: + githubRelease: + assets: + - browser_download_url: https://github.com/helm/helm/releases/download/v3.12.0/helm-v3.12.0-darwin-amd64.tar.gz.asc + content_type: text/plain + created_at: "2023-05-10T18:09:38Z" + download_count: 4 + id: 107580551 + label: null + name: helm-v3.12.0-darwin-amd64.tar.gz.asc + node_id: RA_kwDOApspmc4GaYyH + size: 833 + state: uploaded + updated_at: "2023-05-10T18:09:38Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/107580551 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.12.0/helm-v3.12.0-darwin-amd64.tar.gz.sha256.asc + content_type: text/plain + created_at: "2023-05-10T18:09:38Z" + download_count: 4 + id: 107580550 + label: null + name: helm-v3.12.0-darwin-amd64.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4GaYyG + size: 833 + state: uploaded + updated_at: "2023-05-10T18:09:38Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/107580550 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.12.0/helm-v3.12.0-darwin-amd64.tar.gz.sha256sum.asc + content_type: text/plain + created_at: "2023-05-10T18:09:37Z" + download_count: 4 + id: 107580549 + label: null + name: helm-v3.12.0-darwin-amd64.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4GaYyF + size: 833 + state: uploaded + updated_at: "2023-05-10T18:09:38Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/107580549 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.12.0/helm-v3.12.0-darwin-arm64.tar.gz.asc + content_type: text/plain + created_at: "2023-05-10T18:09:37Z" + download_count: 4 + id: 107580548 + label: null + name: helm-v3.12.0-darwin-arm64.tar.gz.asc + node_id: RA_kwDOApspmc4GaYyE + size: 833 + state: uploaded + updated_at: "2023-05-10T18:09:37Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/107580548 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.12.0/helm-v3.12.0-darwin-arm64.tar.gz.sha256.asc + content_type: text/plain + created_at: "2023-05-10T18:09:37Z" + download_count: 4 + id: 107580547 + label: null + name: helm-v3.12.0-darwin-arm64.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4GaYyD + size: 833 + state: uploaded + updated_at: "2023-05-10T18:09:37Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/107580547 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.12.0/helm-v3.12.0-darwin-arm64.tar.gz.sha256sum.asc + content_type: text/plain + created_at: "2023-05-10T18:09:37Z" + download_count: 4 + id: 107580546 + label: null + name: helm-v3.12.0-darwin-arm64.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4GaYyC + size: 833 + state: uploaded + updated_at: "2023-05-10T18:09:37Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/107580546 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.12.0/helm-v3.12.0-linux-386.tar.gz.asc + content_type: text/plain + created_at: "2023-05-10T18:09:36Z" + download_count: 5 + id: 107580545 + label: null + name: helm-v3.12.0-linux-386.tar.gz.asc + node_id: RA_kwDOApspmc4GaYyB + size: 833 + state: uploaded + updated_at: "2023-05-10T18:09:37Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/107580545 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.12.0/helm-v3.12.0-linux-386.tar.gz.sha256.asc + content_type: text/plain + created_at: "2023-05-10T18:09:36Z" + download_count: 4 + id: 107580544 + label: null + name: helm-v3.12.0-linux-386.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4GaYyA + size: 833 + state: uploaded + updated_at: "2023-05-10T18:09:36Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/107580544 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.12.0/helm-v3.12.0-linux-386.tar.gz.sha256sum.asc + content_type: text/plain + created_at: "2023-05-10T18:09:36Z" + download_count: 4 + id: 107580543 + label: null + name: helm-v3.12.0-linux-386.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4GaYx_ + size: 833 + state: uploaded + updated_at: "2023-05-10T18:09:36Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/107580543 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.12.0/helm-v3.12.0-linux-amd64.tar.gz.asc + content_type: text/plain + created_at: "2023-05-10T18:09:36Z" + download_count: 40 + id: 107580542 + label: null + name: helm-v3.12.0-linux-amd64.tar.gz.asc + node_id: RA_kwDOApspmc4GaYx- + size: 833 + state: uploaded + updated_at: "2023-05-10T18:09:36Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/107580542 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.12.0/helm-v3.12.0-linux-amd64.tar.gz.sha256.asc + content_type: text/plain + created_at: "2023-05-10T18:09:35Z" + download_count: 36 + id: 107580541 + label: null + name: helm-v3.12.0-linux-amd64.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4GaYx9 + size: 833 + state: uploaded + updated_at: "2023-05-10T18:09:36Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/107580541 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.12.0/helm-v3.12.0-linux-amd64.tar.gz.sha256sum.asc + content_type: text/plain + created_at: "2023-05-10T18:09:35Z" + download_count: 5 + id: 107580540 + label: null + name: helm-v3.12.0-linux-amd64.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4GaYx8 + size: 833 + state: uploaded + updated_at: "2023-05-10T18:09:35Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/107580540 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.12.0/helm-v3.12.0-linux-arm.tar.gz.asc + content_type: text/plain + created_at: "2023-05-10T18:09:34Z" + download_count: 7 + id: 107580535 + label: null + name: helm-v3.12.0-linux-arm.tar.gz.asc + node_id: RA_kwDOApspmc4GaYx3 + size: 833 + state: uploaded + updated_at: "2023-05-10T18:09:34Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/107580535 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.12.0/helm-v3.12.0-linux-arm.tar.gz.sha256.asc + content_type: text/plain + created_at: "2023-05-10T18:09:34Z" + download_count: 4 + id: 107580534 + label: null + name: helm-v3.12.0-linux-arm.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4GaYx2 + size: 833 + state: uploaded + updated_at: "2023-05-10T18:09:34Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/107580534 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.12.0/helm-v3.12.0-linux-arm.tar.gz.sha256sum.asc + content_type: text/plain + created_at: "2023-05-10T18:09:33Z" + download_count: 4 + id: 107580533 + label: null + name: helm-v3.12.0-linux-arm.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4GaYx1 + size: 833 + state: uploaded + updated_at: "2023-05-10T18:09:34Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/107580533 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.12.0/helm-v3.12.0-linux-arm64.tar.gz.asc + content_type: text/plain + created_at: "2023-05-10T18:09:35Z" + download_count: 9 + id: 107580539 + label: null + name: helm-v3.12.0-linux-arm64.tar.gz.asc + node_id: RA_kwDOApspmc4GaYx7 + size: 833 + state: uploaded + updated_at: "2023-05-10T18:09:35Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/107580539 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.12.0/helm-v3.12.0-linux-arm64.tar.gz.sha256.asc + content_type: text/plain + created_at: "2023-05-10T18:09:35Z" + download_count: 10 + id: 107580538 + label: null + name: helm-v3.12.0-linux-arm64.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4GaYx6 + size: 833 + state: uploaded + updated_at: "2023-05-10T18:09:35Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/107580538 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.12.0/helm-v3.12.0-linux-arm64.tar.gz.sha256sum.asc + content_type: text/plain + created_at: "2023-05-10T18:09:34Z" + download_count: 4 + id: 107580536 + label: null + name: helm-v3.12.0-linux-arm64.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4GaYx4 + size: 833 + state: uploaded + updated_at: "2023-05-10T18:09:35Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/107580536 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.12.0/helm-v3.12.0-linux-ppc64le.tar.gz.asc + content_type: text/plain + created_at: "2023-05-10T18:09:33Z" + download_count: 3 + id: 107580532 + label: null + name: helm-v3.12.0-linux-ppc64le.tar.gz.asc + node_id: RA_kwDOApspmc4GaYx0 + size: 833 + state: uploaded + updated_at: "2023-05-10T18:09:33Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/107580532 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.12.0/helm-v3.12.0-linux-ppc64le.tar.gz.sha256.asc + content_type: text/plain + created_at: "2023-05-10T18:09:33Z" + download_count: 3 + id: 107580531 + label: null + name: helm-v3.12.0-linux-ppc64le.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4GaYxz + size: 833 + state: uploaded + updated_at: "2023-05-10T18:09:33Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/107580531 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.12.0/helm-v3.12.0-linux-ppc64le.tar.gz.sha256sum.asc + content_type: text/plain + created_at: "2023-05-10T18:09:33Z" + download_count: 3 + id: 107580530 + label: null + name: helm-v3.12.0-linux-ppc64le.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4GaYxy + size: 833 + state: uploaded + updated_at: "2023-05-10T18:09:33Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/107580530 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.12.0/helm-v3.12.0-linux-s390x.tar.gz.asc + content_type: text/plain + created_at: "2023-05-10T18:09:32Z" + download_count: 3 + id: 107580529 + label: null + name: helm-v3.12.0-linux-s390x.tar.gz.asc + node_id: RA_kwDOApspmc4GaYxx + size: 833 + state: uploaded + updated_at: "2023-05-10T18:09:33Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/107580529 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.12.0/helm-v3.12.0-linux-s390x.tar.gz.sha256.asc + content_type: text/plain + created_at: "2023-05-10T18:09:32Z" + download_count: 3 + id: 107580528 + label: null + name: helm-v3.12.0-linux-s390x.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4GaYxw + size: 833 + state: uploaded + updated_at: "2023-05-10T18:09:32Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/107580528 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.12.0/helm-v3.12.0-linux-s390x.tar.gz.sha256sum.asc + content_type: text/plain + created_at: "2023-05-10T18:09:32Z" + download_count: 3 + id: 107580527 + label: null + name: helm-v3.12.0-linux-s390x.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4GaYxv + size: 833 + state: uploaded + updated_at: "2023-05-10T18:09:32Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/107580527 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.12.0/helm-v3.12.0-windows-amd64.zip.asc + content_type: text/plain + created_at: "2023-05-10T18:09:32Z" + download_count: 4 + id: 107580526 + label: null + name: helm-v3.12.0-windows-amd64.zip.asc + node_id: RA_kwDOApspmc4GaYxu + size: 833 + state: uploaded + updated_at: "2023-05-10T18:09:32Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/107580526 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.12.0/helm-v3.12.0-windows-amd64.zip.sha256.asc + content_type: text/plain + created_at: "2023-05-10T18:09:31Z" + download_count: 4 + id: 107580525 + label: null + name: helm-v3.12.0-windows-amd64.zip.sha256.asc + node_id: RA_kwDOApspmc4GaYxt + size: 833 + state: uploaded + updated_at: "2023-05-10T18:09:32Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/107580525 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.12.0/helm-v3.12.0-windows-amd64.zip.sha256sum.asc + content_type: text/plain + created_at: "2023-05-10T18:09:29Z" + download_count: 4 + id: 107580524 + label: null + name: helm-v3.12.0-windows-amd64.zip.sha256sum.asc + node_id: RA_kwDOApspmc4GaYxs + size: 833 + state: uploaded + updated_at: "2023-05-10T18:09:31Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/107580524 + assets_url: https://api.github.com/repos/helm/helm/releases/102526756/assets + author: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + body: "Helm v3.12.0 is a feature release. Users are encouraged to upgrade + for the best experience.\r\n\r\nThe community keeps growing, and we'd + love to see you there!\r\n\r\n- Join the discussion in [Kubernetes Slack](https://kubernetes.slack.com):\r\n + \ - for questions and just to hang out\r\n - for discussing PRs, code, + and bugs\r\n- Hang out at the Public Developer Call: Thursday, 9:30 Pacific + via [Zoom](https://zoom.us/j/696660622)\r\n- Test, debug, and contribute + charts: [ArtifactHub/packages](https://artifacthub.io/packages/search?kind=0)\r\n\r\n## + Notable Changes\r\n\r\n- When charts are pushed to OCI registries, annotations + are attached using standard names that other tools can introspect (e.g. + version)\r\n- `--set-literal` command line flag to set a specific string + with no escaping\r\n- `--cascade` flag to specify deletion policy on uninstall\r\n\r\n## + Installation and Upgrading\r\n\r\nDownload Helm v3.12.0. The common platform + binaries are here:\r\n\r\n- [MacOS amd64](https://get.helm.sh/helm-v3.12.0-darwin-amd64.tar.gz) + ([checksum](https://get.helm.sh/helm-v3.12.0-darwin-amd64.tar.gz.sha256sum) + / 8223beb796ff19b59e615387d29be8c2025c5d3aea08485a262583de7ba7d708)\r\n- + [MacOS arm64](https://get.helm.sh/helm-v3.12.0-darwin-arm64.tar.gz) ([checksum](https://get.helm.sh/helm-v3.12.0-darwin-arm64.tar.gz.sha256sum) + / 879f61d2ad245cb3f5018ab8b66a87619f195904a4df3b077c98ec0780e36c37)\r\n- + [Linux amd64](https://get.helm.sh/helm-v3.12.0-linux-amd64.tar.gz) ([checksum](https://get.helm.sh/helm-v3.12.0-linux-amd64.tar.gz.sha256sum) + / da36e117d6dbc57c8ec5bab2283222fbd108db86c83389eebe045ad1ef3e2c3b)\r\n- + [Linux arm](https://get.helm.sh/helm-v3.12.0-linux-arm.tar.gz) ([checksum](https://get.helm.sh/helm-v3.12.0-linux-arm.tar.gz.sha256sum) + / 1d1d3b0b6397825c3f91ec5f5e66eb415a4199ccfaf063ca399d64854897f3f0)\r\n- + [Linux arm64](https://get.helm.sh/helm-v3.12.0-linux-arm64.tar.gz) ([checksum](https://get.helm.sh/helm-v3.12.0-linux-arm64.tar.gz.sha256sum) + / 658839fed8f9be2169f5df68e55cb2f0aa731a50df454caf183186766800bbd0)\r\n- + [Linux i386](https://get.helm.sh/helm-v3.12.0-linux-386.tar.gz) ([checksum](https://get.helm.sh/helm-v3.12.0-linux-386.tar.gz.sha256sum) + / 3815f4caa054be027ae1d6c17a302ee1fd7ff805d631f7ff75c9d093c41ab389)\r\n- + [Linux ppc64le](https://get.helm.sh/helm-v3.12.0-linux-ppc64le.tar.gz) + ([checksum](https://get.helm.sh/helm-v3.12.0-linux-ppc64le.tar.gz.sha256sum) + / 252d952b0e1b4ed2013710ddedf687ed5545d9f95a4fd72de0ff9617ff69155c)\r\n- + [Linux s390x](https://get.helm.sh/helm-v3.12.0-linux-s390x.tar.gz) ([checksum](https://get.helm.sh/helm-v3.12.0-linux-s390x.tar.gz.sha256sum) + / 727474fb1684aa2349a77c54340c11ff09b19862d972c2403185fb163fec13ae)\r\n- + [Windows amd64](https://get.helm.sh/helm-v3.12.0-windows-amd64.zip) ([checksum](https://get.helm.sh/helm-v3.12.0-windows-amd64.zip.sha256sum) + / 52138ba8caec50c358c7aee41aac28d6a8a037878ada3cf5ce6c1049fc772547)\r\n\r\nThis + release was signed with `672C 657B E06B 4B30 969C 4A57 4614 49C2 5E36 + B98E ` and can be found at @mattfarina [keybase account](https://keybase.io/mattfarina). + Please use the attached signatures for verifying this release using `gpg`.\r\n\r\nThe + [Quickstart Guide](https://helm.sh/docs/intro/quickstart/) will get you + going from there. For **upgrade instructions** or detailed installation + notes, check the [install guide](https://helm.sh/docs/intro/install/). + You can also use a [script to install](https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3) + on any system with `bash`.\r\n\r\n## What's Next\r\n\r\n- 3.12.1 is the + next patch/bug fix release and will be on June 14, 2023.\r\n- 3.13.0 is + the next feature release and be on September 13, 2023.\r\n\r\n## Changelog\r\n\r\n- + bump version to v3.12.0 c9f554d75773799f72ceef38c51210f1842a1dea (Matt + Farina)\r\n- Attach annotations to OCI artifacts f900e9f1b10011372ac2cf8c96813fa38b393332 + (Andrew Block)\r\n- chore: bump k8s.io dependencies to v0.27.1 bdd56569eaa7ddf4ebc97354d08d86432a4271a6 + (Yann Soubeyrand)\r\n- Bump k8s.io deps from v0.26.0 to v0.27.0 b9361407a36e0f85ba7833b6b2804a21c1a409cc + (Tom Wieczorek)\r\n- Only run tests once 323249351482b3bbfc9f5004f65d400aa70f9ae7 + (Matt Farina)\r\n- chore(deps): bump golang.org/x/text from 0.7.0 to 0.9.0 + be14682da5790fcd4eac444ffbc7427904bd0ede (dependabot[bot])\r\n- Fix goroutine + leak in action install 7c9d636f40e751c775cd1baea5ef2fd4f7139f6e (Matt + Farina)\r\n- fix quiet lint does not fail on non-linting errors 853c18002f51cbdc62011bf14b361362dd6a82d0 + (Joe Julian)\r\n- create failing test for quietly linting a chart that + doesn't exist f13fa07793bc89d6c557755d1cf3165e472fec59 (Joe Julian)\r\n- + chore(deps): bump github.com/docker/docker aba9bd68331fa8e8b61212ff685dfd3f1c16b3f6 + (dependabot[bot])\r\n- Fixes Readiness Check for statefulsets using partitioned + rolling update. (#11774) eea2f27babb0fddd9fb1907f4d8531c8f5c73c66 (Aman + Nijhawan)\r\n- fix: failed testcase on windows 878e962b23ece82d2fd42fc66f01dcabaa6e8b45 + (wujunwei)\r\n- Fix 32bit-x86 typo in testsuite 1fc836935684cd7505b481f2e9f3182ac23814a3 + (Dirk Müller)\r\n- chore(deps): bump github.com/containerd/containerd + from 1.6.15 to 1.7.0 3994329aaed3ec3f43e31ab55ddbedbf3207e184 (dependabot[bot])\r\n- + Handle failed DNS case for Go 1.20+ 046646c944234c94d292d29e74fa11abdfd01c76 + (Matt Farina)\r\n- Updating the Go version in go.mod 4e7e939f19719e056c0f6e47b02068bdca6f420c + (Matt Farina)\r\n- Bump the Go version 50c22ed7f953fadb32755e5881ba95a92da852b2 + (Matt Farina)\r\n- Fix goroutine leak in perform 11150cdcc6bb69b62ec88faa523d9ff6727e8be7 + (willzgli)\r\n- Properly invalidate client after CRD install 68f7b1f1942669126e3290ff809a4dccc6bd0439 + (Hidde Beydals)\r\n- Provide a helper to set the registryClient in cmd + 11738dde51447c7bfd1ef0c97cd2bd8fb5e3bfa1 (Soule BA)\r\n- Reimplemented + change in httpgetter for insecure TLS option c94306f75d73a84a4e81b93ecfbe70ef4ca79998 + (Andrew Block)\r\n- Removed conditional ec5e29e8012ec062db8a022bb1e8f85c95e38815 + (Andrew Block)\r\n- Added insecure option to login subcommand 154f37efec5b66cf26b88e018805deb7df2f2029 + (Andrew Block)\r\n- Added support for insecure OCI registries 08593c8dd6e4b05b1855296f6d7c6247de1d9e6a + (Andrew Block)\r\n- Enable custom certificates option for OCI b0ecb210563ccf0441020e8658c7f7e492c6fb0a + (Soule BA)\r\n- Add testing to default and release branches 1f263857a0d3c7dd74360bbbefd3f9cff0c6078f + (Matt Farina)\r\n- Added back CircleCI config.yaml e6f7b5afa0d54ffcc924864d9ae32008ac7455d5 + (Andrew Block)\r\n- Updates based on feedback 2f1dffa3e77fcae2933f5f4f5f6d829b70d47ba1 + (Andrew Block)\r\n- Removed remaining CircleCI artifacts 07821c8037123b0a874371349db79597569325a8 + (Andrew Block)\r\n- Remove job dependency. Should have done when I moved + job to new file b69646482a7ee1e269d80f61d8f0bb781a902965 (Scott Rigby)\r\n- + Remove check to run only in helm org c8efe2086dd4126ccaf6bd6ec9b01dbbd7f65756 + (Scott Rigby)\r\n- Add why comments c5dda0995bcce17e422886a140cdf9e2163a7706 + (Scott Rigby)\r\n- Convert remaining CircleCI config to GitHub Actions + 131f6f39bb2f7e4227ec07c56cad22994aabf25f (Scott Rigby)\r\n- Changed how + the setup-go action sets go version 35e77cc8ecab7e1ff97b01e00aab91cfa1aac5fb + (Andrew Block)\r\n- CircleCI Migration 6ba17f1762531a61fe0bf3e7eaf190402a3ce660 + (Andrew Block)\r\n- chore:Use http constants as http.request parameters + 8a310c5a9812147a3436405bed0be1c5c074464a (xin.li)\r\n- update k8s registry + domain 006bc0f39dd9a22cb4b87831b2e9d270796f8757 (cpanato)\r\n- don't mark + issues as stale where a PR is in progress 209d44c12ff04b3d6694e78c14ddd478243ceb81 + (Joe Julian)\r\n- chore(deps): bump github.com/rubenv/sql-migrate from + 1.2.0 to 1.3.1 a07137820952fde8dd289b82db624416a75f4b4e (dependabot[bot])\r\n- + Update to func handling 863bc74e5ad090b97f69dcb643be8d969b07e7cf (Matt + Farina)\r\n- Add option to support cascade deletion options 830d4a9ee9d1655308b1a1556fd5513bedbb1731 + (MichaelMorris)\r\n- the linter varcheck and deadcode are deprecated (since + v1.49.0) c1108177a9e42e88a6fbcf7eab0ce64fb413dbdc (Fish-pro)\r\n- Check + status code before retrying request 442d59457070b8d51f58f8b65fb874687cf8db0a + (Cenk Alti)\r\n- Fix improper use of Table request/response to k8s API + 36e18fa6e16049b5e5ec8ca4f9fefd76e6abd212 (Matt Farina)\r\n- bump version + to v3.11.0 6facbada26a10321e60b29190dbb4635544ac153 (Matt Farina)\r\n- + fix template --output-dir issue 1c25a1fadd1f5f11fae9ea85f981ba0947ac97cb + (yxxhero)\r\n- Add protection for stack-overflows for nested keys c1a65d589afd09c652759766d95bf7bc7354aaab + (Patrick Scheid)\r\n- Fixing indentation 50ec3d4fe444dd7be47d5292044f002fccef2838 + (Matt Farina)\r\n- feature(helm): add --set-literal flag for literal string + interpretation 451603910e29ce732e81c2ef5c2f45d252c07a26 (Patrick Scheid)" + created_at: "2023-05-10T16:23:36Z" + draft: false + html_url: https://github.com/helm/helm/releases/tag/v3.12.0 + id: 102526756 + mentions_count: 1 + name: Helm v3.12.0 + node_id: RE_kwDOApspmc4GHG8k + prerelease: false + published_at: "2023-05-10T18:22:32Z" + reactions: + "+1": 3 + "-1": 0 + confused: 0 + eyes: 0 + heart: 0 + hooray: 2 + laugh: 0 + rocket: 0 + total_count: 5 + url: https://api.github.com/repos/helm/helm/releases/102526756/reactions + tag_name: v3.12.0 + tarball_url: https://api.github.com/repos/helm/helm/tarball/v3.12.0 + target_commitish: release-3.12 + upload_url: https://uploads.github.com/repos/helm/helm/releases/102526756/assets{?name,label} + url: https://api.github.com/repos/helm/helm/releases/102526756 + zipball_url: https://api.github.com/repos/helm/helm/zipball/v3.12.0 + 3.12.1: + githubRelease: + assets: + - browser_download_url: https://github.com/helm/helm/releases/download/v3.12.1/helm-v3.12.1-darwin-amd64.tar.gz.asc + content_type: text/plain + created_at: "2023-06-14T20:52:37Z" + download_count: 1 + id: 112781354 + label: null + name: helm-v3.12.1-darwin-amd64.tar.gz.asc + node_id: RA_kwDOApspmc4GuOgq + size: 833 + state: uploaded + updated_at: "2023-06-14T20:52:37Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/112781354 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.12.1/helm-v3.12.1-darwin-amd64.tar.gz.sha256.asc + content_type: text/plain + created_at: "2023-06-14T20:52:37Z" + download_count: 1 + id: 112781353 + label: null + name: helm-v3.12.1-darwin-amd64.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4GuOgp + size: 833 + state: uploaded + updated_at: "2023-06-14T20:52:37Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/112781353 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.12.1/helm-v3.12.1-darwin-amd64.tar.gz.sha256sum.asc + content_type: text/plain + created_at: "2023-06-14T20:52:37Z" + download_count: 1 + id: 112781352 + label: null + name: helm-v3.12.1-darwin-amd64.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4GuOgo + size: 833 + state: uploaded + updated_at: "2023-06-14T20:52:37Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/112781352 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.12.1/helm-v3.12.1-darwin-arm64.tar.gz.asc + content_type: text/plain + created_at: "2023-06-14T20:52:36Z" + download_count: 2 + id: 112781350 + label: null + name: helm-v3.12.1-darwin-arm64.tar.gz.asc + node_id: RA_kwDOApspmc4GuOgm + size: 833 + state: uploaded + updated_at: "2023-06-14T20:52:37Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/112781350 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.12.1/helm-v3.12.1-darwin-arm64.tar.gz.sha256.asc + content_type: text/plain + created_at: "2023-06-14T20:52:36Z" + download_count: 1 + id: 112781349 + label: null + name: helm-v3.12.1-darwin-arm64.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4GuOgl + size: 833 + state: uploaded + updated_at: "2023-06-14T20:52:36Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/112781349 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.12.1/helm-v3.12.1-darwin-arm64.tar.gz.sha256sum.asc + content_type: text/plain + created_at: "2023-06-14T20:52:36Z" + download_count: 1 + id: 112781348 + label: null + name: helm-v3.12.1-darwin-arm64.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4GuOgk + size: 833 + state: uploaded + updated_at: "2023-06-14T20:52:36Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/112781348 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.12.1/helm-v3.12.1-linux-386.tar.gz.asc + content_type: text/plain + created_at: "2023-06-14T20:52:36Z" + download_count: 2 + id: 112781347 + label: null + name: helm-v3.12.1-linux-386.tar.gz.asc + node_id: RA_kwDOApspmc4GuOgj + size: 833 + state: uploaded + updated_at: "2023-06-14T20:52:36Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/112781347 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.12.1/helm-v3.12.1-linux-386.tar.gz.sha256.asc + content_type: text/plain + created_at: "2023-06-14T20:52:35Z" + download_count: 1 + id: 112781339 + label: null + name: helm-v3.12.1-linux-386.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4GuOgb + size: 833 + state: uploaded + updated_at: "2023-06-14T20:52:36Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/112781339 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.12.1/helm-v3.12.1-linux-386.tar.gz.sha256sum.asc + content_type: text/plain + created_at: "2023-06-14T20:52:35Z" + download_count: 1 + id: 112781336 + label: null + name: helm-v3.12.1-linux-386.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4GuOgY + size: 833 + state: uploaded + updated_at: "2023-06-14T20:52:35Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/112781336 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.12.1/helm-v3.12.1-linux-amd64.tar.gz.asc + content_type: text/plain + created_at: "2023-06-14T20:52:35Z" + download_count: 9 + id: 112781335 + label: null + name: helm-v3.12.1-linux-amd64.tar.gz.asc + node_id: RA_kwDOApspmc4GuOgX + size: 833 + state: uploaded + updated_at: "2023-06-14T20:52:35Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/112781335 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.12.1/helm-v3.12.1-linux-amd64.tar.gz.sha256.asc + content_type: text/plain + created_at: "2023-06-14T20:52:35Z" + download_count: 10 + id: 112781334 + label: null + name: helm-v3.12.1-linux-amd64.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4GuOgW + size: 833 + state: uploaded + updated_at: "2023-06-14T20:52:35Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/112781334 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.12.1/helm-v3.12.1-linux-amd64.tar.gz.sha256sum.asc + content_type: text/plain + created_at: "2023-06-14T20:52:34Z" + download_count: 2 + id: 112781333 + label: null + name: helm-v3.12.1-linux-amd64.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4GuOgV + size: 833 + state: uploaded + updated_at: "2023-06-14T20:52:35Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/112781333 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.12.1/helm-v3.12.1-linux-arm.tar.gz.asc + content_type: text/plain + created_at: "2023-06-14T20:52:33Z" + download_count: 1 + id: 112781328 + label: null + name: helm-v3.12.1-linux-arm.tar.gz.asc + node_id: RA_kwDOApspmc4GuOgQ + size: 833 + state: uploaded + updated_at: "2023-06-14T20:52:34Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/112781328 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.12.1/helm-v3.12.1-linux-arm.tar.gz.sha256.asc + content_type: text/plain + created_at: "2023-06-14T20:52:33Z" + download_count: 1 + id: 112781326 + label: null + name: helm-v3.12.1-linux-arm.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4GuOgO + size: 833 + state: uploaded + updated_at: "2023-06-14T20:52:33Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/112781326 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.12.1/helm-v3.12.1-linux-arm.tar.gz.sha256sum.asc + content_type: text/plain + created_at: "2023-06-14T20:52:33Z" + download_count: 1 + id: 112781325 + label: null + name: helm-v3.12.1-linux-arm.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4GuOgN + size: 833 + state: uploaded + updated_at: "2023-06-14T20:52:33Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/112781325 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.12.1/helm-v3.12.1-linux-arm64.tar.gz.asc + content_type: text/plain + created_at: "2023-06-14T20:52:34Z" + download_count: 1 + id: 112781331 + label: null + name: helm-v3.12.1-linux-arm64.tar.gz.asc + node_id: RA_kwDOApspmc4GuOgT + size: 833 + state: uploaded + updated_at: "2023-06-14T20:52:34Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/112781331 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.12.1/helm-v3.12.1-linux-arm64.tar.gz.sha256.asc + content_type: text/plain + created_at: "2023-06-14T20:52:34Z" + download_count: 1 + id: 112781330 + label: null + name: helm-v3.12.1-linux-arm64.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4GuOgS + size: 833 + state: uploaded + updated_at: "2023-06-14T20:52:34Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/112781330 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.12.1/helm-v3.12.1-linux-arm64.tar.gz.sha256sum.asc + content_type: text/plain + created_at: "2023-06-14T20:52:34Z" + download_count: 1 + id: 112781329 + label: null + name: helm-v3.12.1-linux-arm64.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4GuOgR + size: 833 + state: uploaded + updated_at: "2023-06-14T20:52:34Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/112781329 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.12.1/helm-v3.12.1-linux-ppc64le.tar.gz.asc + content_type: text/plain + created_at: "2023-06-14T20:52:33Z" + download_count: 1 + id: 112781324 + label: null + name: helm-v3.12.1-linux-ppc64le.tar.gz.asc + node_id: RA_kwDOApspmc4GuOgM + size: 833 + state: uploaded + updated_at: "2023-06-14T20:52:33Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/112781324 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.12.1/helm-v3.12.1-linux-ppc64le.tar.gz.sha256.asc + content_type: text/plain + created_at: "2023-06-14T20:52:33Z" + download_count: 1 + id: 112781323 + label: null + name: helm-v3.12.1-linux-ppc64le.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4GuOgL + size: 833 + state: uploaded + updated_at: "2023-06-14T20:52:33Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/112781323 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.12.1/helm-v3.12.1-linux-ppc64le.tar.gz.sha256sum.asc + content_type: text/plain + created_at: "2023-06-14T20:52:32Z" + download_count: 1 + id: 112781321 + label: null + name: helm-v3.12.1-linux-ppc64le.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4GuOgJ + size: 833 + state: uploaded + updated_at: "2023-06-14T20:52:33Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/112781321 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.12.1/helm-v3.12.1-linux-s390x.tar.gz.asc + content_type: text/plain + created_at: "2023-06-14T20:52:32Z" + download_count: 1 + id: 112781320 + label: null + name: helm-v3.12.1-linux-s390x.tar.gz.asc + node_id: RA_kwDOApspmc4GuOgI + size: 833 + state: uploaded + updated_at: "2023-06-14T20:52:32Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/112781320 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.12.1/helm-v3.12.1-linux-s390x.tar.gz.sha256.asc + content_type: text/plain + created_at: "2023-06-14T20:52:32Z" + download_count: 1 + id: 112781319 + label: null + name: helm-v3.12.1-linux-s390x.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4GuOgH + size: 833 + state: uploaded + updated_at: "2023-06-14T20:52:32Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/112781319 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.12.1/helm-v3.12.1-linux-s390x.tar.gz.sha256sum.asc + content_type: text/plain + created_at: "2023-06-14T20:52:32Z" + download_count: 1 + id: 112781317 + label: null + name: helm-v3.12.1-linux-s390x.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4GuOgF + size: 833 + state: uploaded + updated_at: "2023-06-14T20:52:32Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/112781317 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.12.1/helm-v3.12.1-windows-amd64.zip.asc + content_type: text/plain + created_at: "2023-06-14T20:52:31Z" + download_count: 1 + id: 112781316 + label: null + name: helm-v3.12.1-windows-amd64.zip.asc + node_id: RA_kwDOApspmc4GuOgE + size: 833 + state: uploaded + updated_at: "2023-06-14T20:52:32Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/112781316 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.12.1/helm-v3.12.1-windows-amd64.zip.sha256.asc + content_type: text/plain + created_at: "2023-06-14T20:52:31Z" + download_count: 1 + id: 112781315 + label: null + name: helm-v3.12.1-windows-amd64.zip.sha256.asc + node_id: RA_kwDOApspmc4GuOgD + size: 833 + state: uploaded + updated_at: "2023-06-14T20:52:31Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/112781315 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.12.1/helm-v3.12.1-windows-amd64.zip.sha256sum.asc + content_type: text/plain + created_at: "2023-06-14T20:52:29Z" + download_count: 1 + id: 112781312 + label: null + name: helm-v3.12.1-windows-amd64.zip.sha256sum.asc + node_id: RA_kwDOApspmc4GuOgA + size: 833 + state: uploaded + updated_at: "2023-06-14T20:52:31Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/112781312 + assets_url: https://api.github.com/repos/helm/helm/releases/108640124/assets + author: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + body: "Helm v3.12.1 is a patch release. Users are encouraged to upgrade + for the best experience. Users are encouraged to upgrade for the best + experience.\r\n\r\nThe community keeps growing, and we'd love to see you + there!\r\n\r\n- Join the discussion in [Kubernetes Slack](https://kubernetes.slack.com):\r\n + \ - for questions and just to hang out\r\n - for discussing PRs, code, + and bugs\r\n- Hang out at the Public Developer Call: Thursday, 9:30 Pacific + via [Zoom](https://zoom.us/j/696660622)\r\n- Test, debug, and contribute + charts: [ArtifactHub/packages](https://artifacthub.io/packages/search?kind=0)\r\n\r\n## + Installation and Upgrading\r\n\r\nDownload Helm v3.12.1. The common platform + binaries are here:\r\n\r\n- [MacOS amd64](https://get.helm.sh/helm-v3.12.1-darwin-amd64.tar.gz) + ([checksum](https://get.helm.sh/helm-v3.12.1-darwin-amd64.tar.gz.sha256sum) + / f487b5d8132bd2091378258a3029e33ee10f71575b2167cdfeaf6d0144d20938)\r\n- + [MacOS arm64](https://get.helm.sh/helm-v3.12.1-darwin-arm64.tar.gz) ([checksum](https://get.helm.sh/helm-v3.12.1-darwin-arm64.tar.gz.sha256sum) + / e82e0433589b1b5170807d6fec75baedba40620458510bbd30cdb9d2246415fe)\r\n- + [Linux amd64](https://get.helm.sh/helm-v3.12.1-linux-amd64.tar.gz) ([checksum](https://get.helm.sh/helm-v3.12.1-linux-amd64.tar.gz.sha256sum) + / 1a7074f58ef7190f74ce6db5db0b70e355a655e2013c4d5db2317e63fa9e3dea)\r\n- + [Linux arm](https://get.helm.sh/helm-v3.12.1-linux-arm.tar.gz) ([checksum](https://get.helm.sh/helm-v3.12.1-linux-arm.tar.gz.sha256sum) + / 6ae6d1cb3b9f7faf68d5cd327eaa53c432f01e8fd67edba4e4c744dcbd8a0883)\r\n- + [Linux arm64](https://get.helm.sh/helm-v3.12.1-linux-arm64.tar.gz) ([checksum](https://get.helm.sh/helm-v3.12.1-linux-arm64.tar.gz.sha256sum) + / 50548d4fedef9d8d01d1ed5a2dd5c849271d1017127417dc4c7ef6777ae68f7e)\r\n- + [Linux i386](https://get.helm.sh/helm-v3.12.1-linux-386.tar.gz) ([checksum](https://get.helm.sh/helm-v3.12.1-linux-386.tar.gz.sha256sum) + / 983addced237a8eb921c2c8c953310d92031a6ce4599632edbe7cdb2c95a701e)\r\n- + [Linux ppc64le](https://get.helm.sh/helm-v3.12.1-linux-ppc64le.tar.gz) + ([checksum](https://get.helm.sh/helm-v3.12.1-linux-ppc64le.tar.gz.sha256sum) + / 32b25dba14549a4097bf3dd62221cf6df06279ded391f7479144e3a215982aaf)\r\n- + [Linux s390x](https://get.helm.sh/helm-v3.12.1-linux-s390x.tar.gz) ([checksum](https://get.helm.sh/helm-v3.12.1-linux-s390x.tar.gz.sha256sum) + / f243b564cf7e4081fffdfe5a39487f6442fc439586a1f50cc59dd801c3e636a5)\r\n- + [Windows amd64](https://get.helm.sh/helm-v3.12.1-windows-amd64.zip) ([checksum](https://get.helm.sh/helm-v3.12.1-windows-amd64.zip.sha256sum) + / 9040f8f37c90600a51db4934c04bc9c2adc058cb2161e20b5193b3ba46de10fa)\r\n\r\nThis + release was signed with `672C 657B E06B 4B30 969C 4A57 4614 49C2 5E36 + B98E ` and can be found at @mattfarina [keybase account](https://keybase.io/mattfarina). + Please use the attached signatures for verifying this release using `gpg`.\r\n\r\nThe + [Quickstart Guide](https://helm.sh/docs/intro/quickstart/) will get you + going from there. For **upgrade instructions** or detailed installation + notes, check the [install guide](https://helm.sh/docs/intro/install/). + You can also use a [script to install](https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3) + on any system with `bash`.\r\n\r\n## What's Next\r\n\r\n- 3.12.2 is the + next patch/bug fix release and will be on July 12, 2023.\r\n- 3.13.0 is + the next feature release and be on September 13, 2023.\r\n\r\n## Changelog\r\n\r\n- + add some test case f32a527a060157990e2aa86bf45010dfb3cc8b8d (wujunwei)\r\n- + fix comment grammar error. 91bb1e34e605a2bfc3fbc4de14921e071af84fd7 (wujunwei)\r\n- + bugfix:(#11391) helm lint infinite loop when malformed template object + 5217482c8eab1b44cc07dfcfd669c6ee47f3b9bc (wujunwei)\r\n- chore(deps): + bump github.com/opencontainers/runc from 1.1.4 to 1.1.5 524a0e745742ebda08fbf8965c2c45587a51ae54 + (dependabot[bot])\r\n- chore(deps): bump github.com/docker/distribution + c60cdf62ab447ba056e75b5e9d82dd2e2843315a (dependabot[bot])\r\n- update + autoscaling/v2beta1 to autoscaling/v2 in skeleton chart 321f71a161706c1184604602408b05fe0097f6eb + (Dmitry Kamenskikh)\r\n- test(search): add mixedCase test case aca1e44f64b46a0946e526eeb08e983bf575560d + (Hƶhl, Lukas)\r\n- chore(deps): bump github.com/lib/pq from 1.10.7 to + 1.10.9 c09e93f82fec544e28a2972b8c06c37441503013 (dependabot[bot])\r\n- + chore(deps): bump github.com/Masterminds/squirrel from 1.5.3 to 1.5.4 + 8eab82b0fabe0305d815d352180f0b551fc6c6da (dependabot[bot])\r\n- chore(deps): + bump github.com/Masterminds/semver/v3 from 3.2.0 to 3.2.1 aa6b8aa0298cab0f7664a00cd32454f1738239ed + (dependabot[bot])\r\n- fix(search): print repo search result in original + case 5b19d8eedb24691a035f1d1f1d42cb0cdde97813 (Hƶhl, Lukas)\r\n- strict + file permissions of repository.yaml dee1fde4e821e056a27bebc488cb36f22b322404 + (shankeerthan-kasilingam)\r\n- update kubernetes dependencies from v0.27.0 + to v0.27.1 4f32150a3f55b920971c0189febc8101f11be630 (Joe Julian)" + created_at: "2023-06-14T19:25:45Z" + draft: false + html_url: https://github.com/helm/helm/releases/tag/v3.12.1 + id: 108640124 + mentions_count: 1 + name: Helm v3.12.1 + node_id: RE_kwDOApspmc4Gebd8 + prerelease: false + published_at: "2023-06-14T20:52:55Z" + tag_name: v3.12.1 + tarball_url: https://api.github.com/repos/helm/helm/tarball/v3.12.1 + target_commitish: release-3.12 + upload_url: https://uploads.github.com/repos/helm/helm/releases/108640124/assets{?name,label} + url: https://api.github.com/repos/helm/helm/releases/108640124 + zipball_url: https://api.github.com/repos/helm/helm/zipball/v3.12.1 + 3.12.2: + githubRelease: + assets: + - browser_download_url: https://github.com/helm/helm/releases/download/v3.12.2/helm-v3.12.2-darwin-amd64.tar.gz.asc + content_type: text/plain + created_at: "2023-07-13T18:47:40Z" + download_count: 2 + id: 116880618 + label: null + name: helm-v3.12.2-darwin-amd64.tar.gz.asc + node_id: RA_kwDOApspmc4G93Tq + size: 833 + state: uploaded + updated_at: "2023-07-13T18:47:41Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/116880618 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.12.2/helm-v3.12.2-darwin-amd64.tar.gz.sha256.asc + content_type: text/plain + created_at: "2023-07-13T18:47:41Z" + download_count: 2 + id: 116880619 + label: null + name: helm-v3.12.2-darwin-amd64.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4G93Tr + size: 833 + state: uploaded + updated_at: "2023-07-13T18:47:41Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/116880619 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.12.2/helm-v3.12.2-darwin-amd64.tar.gz.sha256sum.asc + content_type: text/plain + created_at: "2023-07-13T18:47:41Z" + download_count: 2 + id: 116880621 + label: null + name: helm-v3.12.2-darwin-amd64.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4G93Tt + size: 833 + state: uploaded + updated_at: "2023-07-13T18:47:42Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/116880621 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.12.2/helm-v3.12.2-darwin-arm64.tar.gz.asc + content_type: text/plain + created_at: "2023-07-13T18:47:42Z" + download_count: 2 + id: 116880623 + label: null + name: helm-v3.12.2-darwin-arm64.tar.gz.asc + node_id: RA_kwDOApspmc4G93Tv + size: 833 + state: uploaded + updated_at: "2023-07-13T18:47:42Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/116880623 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.12.2/helm-v3.12.2-darwin-arm64.tar.gz.sha256.asc + content_type: text/plain + created_at: "2023-07-13T18:47:42Z" + download_count: 2 + id: 116880624 + label: null + name: helm-v3.12.2-darwin-arm64.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4G93Tw + size: 833 + state: uploaded + updated_at: "2023-07-13T18:47:42Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/116880624 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.12.2/helm-v3.12.2-darwin-arm64.tar.gz.sha256sum.asc + content_type: text/plain + created_at: "2023-07-13T18:47:42Z" + download_count: 2 + id: 116880626 + label: null + name: helm-v3.12.2-darwin-arm64.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4G93Ty + size: 833 + state: uploaded + updated_at: "2023-07-13T18:47:42Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/116880626 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.12.2/helm-v3.12.2-linux-386.tar.gz.asc + content_type: text/plain + created_at: "2023-07-13T18:47:42Z" + download_count: 3 + id: 116880629 + label: null + name: helm-v3.12.2-linux-386.tar.gz.asc + node_id: RA_kwDOApspmc4G93T1 + size: 833 + state: uploaded + updated_at: "2023-07-13T18:47:43Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/116880629 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.12.2/helm-v3.12.2-linux-386.tar.gz.sha256.asc + content_type: text/plain + created_at: "2023-07-13T18:47:43Z" + download_count: 2 + id: 116880630 + label: null + name: helm-v3.12.2-linux-386.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4G93T2 + size: 833 + state: uploaded + updated_at: "2023-07-13T18:47:43Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/116880630 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.12.2/helm-v3.12.2-linux-386.tar.gz.sha256sum.asc + content_type: text/plain + created_at: "2023-07-13T18:47:43Z" + download_count: 2 + id: 116880633 + label: null + name: helm-v3.12.2-linux-386.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4G93T5 + size: 833 + state: uploaded + updated_at: "2023-07-13T18:47:43Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/116880633 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.12.2/helm-v3.12.2-linux-amd64.tar.gz.asc + content_type: text/plain + created_at: "2023-07-13T18:47:43Z" + download_count: 11 + id: 116880634 + label: null + name: helm-v3.12.2-linux-amd64.tar.gz.asc + node_id: RA_kwDOApspmc4G93T6 + size: 833 + state: uploaded + updated_at: "2023-07-13T18:47:43Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/116880634 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.12.2/helm-v3.12.2-linux-amd64.tar.gz.sha256.asc + content_type: text/plain + created_at: "2023-07-13T18:47:43Z" + download_count: 8 + id: 116880635 + label: null + name: helm-v3.12.2-linux-amd64.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4G93T7 + size: 833 + state: uploaded + updated_at: "2023-07-13T18:47:44Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/116880635 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.12.2/helm-v3.12.2-linux-amd64.tar.gz.sha256sum.asc + content_type: text/plain + created_at: "2023-07-13T18:47:44Z" + download_count: 3 + id: 116880636 + label: null + name: helm-v3.12.2-linux-amd64.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4G93T8 + size: 833 + state: uploaded + updated_at: "2023-07-13T18:47:44Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/116880636 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.12.2/helm-v3.12.2-linux-arm.tar.gz.asc + content_type: text/plain + created_at: "2023-07-13T18:47:44Z" + download_count: 2 + id: 116880638 + label: null + name: helm-v3.12.2-linux-arm.tar.gz.asc + node_id: RA_kwDOApspmc4G93T- + size: 833 + state: uploaded + updated_at: "2023-07-13T18:47:44Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/116880638 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.12.2/helm-v3.12.2-linux-arm.tar.gz.sha256.asc + content_type: text/plain + created_at: "2023-07-13T18:47:44Z" + download_count: 2 + id: 116880639 + label: null + name: helm-v3.12.2-linux-arm.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4G93T_ + size: 833 + state: uploaded + updated_at: "2023-07-13T18:47:44Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/116880639 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.12.2/helm-v3.12.2-linux-arm.tar.gz.sha256sum.asc + content_type: text/plain + created_at: "2023-07-13T18:47:44Z" + download_count: 2 + id: 116880641 + label: null + name: helm-v3.12.2-linux-arm.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4G93UB + size: 833 + state: uploaded + updated_at: "2023-07-13T18:47:45Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/116880641 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.12.2/helm-v3.12.2-linux-arm64.tar.gz.asc + content_type: text/plain + created_at: "2023-07-13T18:47:45Z" + download_count: 2 + id: 116880643 + label: null + name: helm-v3.12.2-linux-arm64.tar.gz.asc + node_id: RA_kwDOApspmc4G93UD + size: 833 + state: uploaded + updated_at: "2023-07-13T18:47:45Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/116880643 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.12.2/helm-v3.12.2-linux-arm64.tar.gz.sha256.asc + content_type: text/plain + created_at: "2023-07-13T18:47:45Z" + download_count: 2 + id: 116880645 + label: null + name: helm-v3.12.2-linux-arm64.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4G93UF + size: 833 + state: uploaded + updated_at: "2023-07-13T18:47:45Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/116880645 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.12.2/helm-v3.12.2-linux-arm64.tar.gz.sha256sum.asc + content_type: text/plain + created_at: "2023-07-13T18:47:45Z" + download_count: 2 + id: 116880646 + label: null + name: helm-v3.12.2-linux-arm64.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4G93UG + size: 833 + state: uploaded + updated_at: "2023-07-13T18:47:45Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/116880646 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.12.2/helm-v3.12.2-linux-ppc64le.tar.gz.asc + content_type: text/plain + created_at: "2023-07-13T18:47:45Z" + download_count: 1 + id: 116880647 + label: null + name: helm-v3.12.2-linux-ppc64le.tar.gz.asc + node_id: RA_kwDOApspmc4G93UH + size: 833 + state: uploaded + updated_at: "2023-07-13T18:47:46Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/116880647 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.12.2/helm-v3.12.2-linux-ppc64le.tar.gz.sha256.asc + content_type: text/plain + created_at: "2023-07-13T18:47:46Z" + download_count: 1 + id: 116880650 + label: null + name: helm-v3.12.2-linux-ppc64le.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4G93UK + size: 833 + state: uploaded + updated_at: "2023-07-13T18:47:46Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/116880650 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.12.2/helm-v3.12.2-linux-ppc64le.tar.gz.sha256sum.asc + content_type: text/plain + created_at: "2023-07-13T18:47:46Z" + download_count: 1 + id: 116880651 + label: null + name: helm-v3.12.2-linux-ppc64le.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4G93UL + size: 833 + state: uploaded + updated_at: "2023-07-13T18:47:46Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/116880651 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.12.2/helm-v3.12.2-linux-s390x.tar.gz.asc + content_type: text/plain + created_at: "2023-07-13T18:47:46Z" + download_count: 2 + id: 116880653 + label: null + name: helm-v3.12.2-linux-s390x.tar.gz.asc + node_id: RA_kwDOApspmc4G93UN + size: 833 + state: uploaded + updated_at: "2023-07-13T18:47:46Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/116880653 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.12.2/helm-v3.12.2-linux-s390x.tar.gz.sha256.asc + content_type: text/plain + created_at: "2023-07-13T18:47:46Z" + download_count: 1 + id: 116880655 + label: null + name: helm-v3.12.2-linux-s390x.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4G93UP + size: 833 + state: uploaded + updated_at: "2023-07-13T18:47:47Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/116880655 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.12.2/helm-v3.12.2-linux-s390x.tar.gz.sha256sum.asc + content_type: text/plain + created_at: "2023-07-13T18:47:47Z" + download_count: 1 + id: 116880659 + label: null + name: helm-v3.12.2-linux-s390x.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4G93UT + size: 833 + state: uploaded + updated_at: "2023-07-13T18:47:47Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/116880659 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.12.2/helm-v3.12.2-windows-amd64.zip.asc + content_type: text/plain + created_at: "2023-07-13T18:47:47Z" + download_count: 2 + id: 116880661 + label: null + name: helm-v3.12.2-windows-amd64.zip.asc + node_id: RA_kwDOApspmc4G93UV + size: 833 + state: uploaded + updated_at: "2023-07-13T18:47:47Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/116880661 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.12.2/helm-v3.12.2-windows-amd64.zip.sha256.asc + content_type: text/plain + created_at: "2023-07-13T18:47:47Z" + download_count: 2 + id: 116880662 + label: null + name: helm-v3.12.2-windows-amd64.zip.sha256.asc + node_id: RA_kwDOApspmc4G93UW + size: 833 + state: uploaded + updated_at: "2023-07-13T18:47:47Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/116880662 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.12.2/helm-v3.12.2-windows-amd64.zip.sha256sum.asc + content_type: text/plain + created_at: "2023-07-13T18:47:47Z" + download_count: 2 + id: 116880664 + label: null + name: helm-v3.12.2-windows-amd64.zip.sha256sum.asc + node_id: RA_kwDOApspmc4G93UY + size: 833 + state: uploaded + updated_at: "2023-07-13T18:47:48Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/116880664 + assets_url: https://api.github.com/repos/helm/helm/releases/112159751/assets + author: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + body: "Helm v3.12.2 is a patch release. Users are encouraged to upgrade + for the best experience. Users are encouraged to upgrade for the best + experience.\r\n\r\nThe community keeps growing, and we'd love to see you + there!\r\n\r\n- Join the discussion in [Kubernetes Slack](https://kubernetes.slack.com):\r\n + \ - for questions and just to hang out\r\n - for discussing PRs, code, + and bugs\r\n- Hang out at the Public Developer Call: Thursday, 9:30 Pacific + via [Zoom](https://zoom.us/j/696660622)\r\n- Test, debug, and contribute + charts: [ArtifactHub/packages](https://artifacthub.io/packages/search?kind=0)\r\n\r\n## + Installation and Upgrading\r\n\r\nDownload Helm v3.12.2. The common platform + binaries are here:\r\n\r\n- [MacOS amd64](https://get.helm.sh/helm-v3.12.2-darwin-amd64.tar.gz) + ([checksum](https://get.helm.sh/helm-v3.12.2-darwin-amd64.tar.gz.sha256sum) + / 6e8bfc84a640e0dc47cc49cfc2d0a482f011f4249e2dff2a7e23c7ef2df1b64e)\r\n- + [MacOS arm64](https://get.helm.sh/helm-v3.12.2-darwin-arm64.tar.gz) ([checksum](https://get.helm.sh/helm-v3.12.2-darwin-arm64.tar.gz.sha256sum) + / b60ee16847e28879ae298a20ba4672fc84f741410f438e645277205824ddbf55)\r\n- + [Linux amd64](https://get.helm.sh/helm-v3.12.2-linux-amd64.tar.gz) ([checksum](https://get.helm.sh/helm-v3.12.2-linux-amd64.tar.gz.sha256sum) + / 2b6efaa009891d3703869f4be80ab86faa33fa83d9d5ff2f6492a8aebe97b219)\r\n- + [Linux arm](https://get.helm.sh/helm-v3.12.2-linux-arm.tar.gz) ([checksum](https://get.helm.sh/helm-v3.12.2-linux-arm.tar.gz.sha256sum) + / 39cc63757901eaea5f0c30b464d3253a5d034ffefcb9b9d3c9e284887b9bb381)\r\n- + [Linux arm64](https://get.helm.sh/helm-v3.12.2-linux-arm64.tar.gz) ([checksum](https://get.helm.sh/helm-v3.12.2-linux-arm64.tar.gz.sha256sum) + / cfafbae85c31afde88c69f0e5053610c8c455826081c1b2d665d9b44c31b3759)\r\n- + [Linux i386](https://get.helm.sh/helm-v3.12.2-linux-386.tar.gz) ([checksum](https://get.helm.sh/helm-v3.12.2-linux-386.tar.gz.sha256sum) + / ecd4d0f3feb0f8448ed11e182e493e74c36572e1b52d47ecbed3e99919c8390d)\r\n- + [Linux ppc64le](https://get.helm.sh/helm-v3.12.2-linux-ppc64le.tar.gz) + ([checksum](https://get.helm.sh/helm-v3.12.2-linux-ppc64le.tar.gz.sha256sum) + / fb0313bfd6ec5a08d8755efb7e603f76633726160040434fd885e74b6c10e387)\r\n- + [Linux s390x](https://get.helm.sh/helm-v3.12.2-linux-s390x.tar.gz) ([checksum](https://get.helm.sh/helm-v3.12.2-linux-s390x.tar.gz.sha256sum) + / 63dec602455337a6ec08ba16429ec2b87ab064ea563249c07c01f483c0c4bd4c)\r\n- + [Windows amd64](https://get.helm.sh/helm-v3.12.2-windows-amd64.zip) ([checksum](https://get.helm.sh/helm-v3.12.2-windows-amd64.zip.sha256sum) + / 35dc439baad85728dafd2be0edd4721ae5b770c5cf72c3adf9558b1415a9cae6)\r\n\r\nThis + release was signed with `672C 657B E06B 4B30 969C 4A57 4614 49C2 5E36 + B98E ` and can be found at @mattfarina [keybase account](https://keybase.io/mattfarina). + Please use the attached signatures for verifying this release using `gpg`.\r\n\r\nThe + [Quickstart Guide](https://helm.sh/docs/intro/quickstart/) will get you + going from there. For **upgrade instructions** or detailed installation + notes, check the [install guide](https://helm.sh/docs/intro/install/). + You can also use a [script to install](https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3) + on any system with `bash`.\r\n\r\n## What's Next\r\n\r\n- 3.12.3 is the + next patch/bug fix release and will be on August 9, 2023.\r\n- 3.13.0 + is the next feature release and be on September 13, 2023.\r\n\r\n## Changelog\r\n\r\n- + add GetRegistryClient method 1e210a2c8cc5117d1055bfaa5d40f51bbc2e345e + (wujunwei)\r\n- chore(deps): bump oras.land/oras-go from 1.2.2 to 1.2.3 + cfa7bc68fa131284fb2fafdb43cd0233dcc7a2b7 (dependabot[bot])\r\n" + created_at: "2023-07-13T18:10:47Z" + draft: false + html_url: https://github.com/helm/helm/releases/tag/v3.12.2 + id: 112159751 + mentions_count: 1 + name: Helm v3.12.2 + node_id: RE_kwDOApspmc4Gr2wH + prerelease: false + published_at: "2023-07-13T18:48:13Z" + tag_name: v3.12.2 + tarball_url: https://api.github.com/repos/helm/helm/tarball/v3.12.2 + target_commitish: release-3.12 + upload_url: https://uploads.github.com/repos/helm/helm/releases/112159751/assets{?name,label} + url: https://api.github.com/repos/helm/helm/releases/112159751 + zipball_url: https://api.github.com/repos/helm/helm/zipball/v3.12.2 + 3.12.3: + githubRelease: + assets: + - browser_download_url: https://github.com/helm/helm/releases/download/v3.12.3/helm-v3.12.3-darwin-amd64.tar.gz.asc + content_type: text/plain + created_at: "2023-08-10T20:39:20Z" + download_count: 1 + id: 120995585 + label: null + name: helm-v3.12.3-darwin-amd64.tar.gz.asc + node_id: RA_kwDOApspmc4HNj8B + size: 833 + state: uploaded + updated_at: "2023-08-10T20:39:21Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/120995585 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.12.3/helm-v3.12.3-darwin-amd64.tar.gz.sha256.asc + content_type: text/plain + created_at: "2023-08-10T20:39:21Z" + download_count: 1 + id: 120995586 + label: null + name: helm-v3.12.3-darwin-amd64.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4HNj8C + size: 833 + state: uploaded + updated_at: "2023-08-10T20:39:21Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/120995586 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.12.3/helm-v3.12.3-darwin-amd64.tar.gz.sha256sum.asc + content_type: text/plain + created_at: "2023-08-10T20:39:21Z" + download_count: 1 + id: 120995587 + label: null + name: helm-v3.12.3-darwin-amd64.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4HNj8D + size: 833 + state: uploaded + updated_at: "2023-08-10T20:39:22Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/120995587 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.12.3/helm-v3.12.3-darwin-arm64.tar.gz.asc + content_type: text/plain + created_at: "2023-08-10T20:39:22Z" + download_count: 1 + id: 120995588 + label: null + name: helm-v3.12.3-darwin-arm64.tar.gz.asc + node_id: RA_kwDOApspmc4HNj8E + size: 833 + state: uploaded + updated_at: "2023-08-10T20:39:30Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/120995588 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.12.3/helm-v3.12.3-darwin-arm64.tar.gz.sha256.asc + content_type: text/plain + created_at: "2023-08-10T20:39:30Z" + download_count: 1 + id: 120995598 + label: null + name: helm-v3.12.3-darwin-arm64.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4HNj8O + size: 833 + state: uploaded + updated_at: "2023-08-10T20:39:30Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/120995598 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.12.3/helm-v3.12.3-darwin-arm64.tar.gz.sha256sum.asc + content_type: text/plain + created_at: "2023-08-10T20:39:30Z" + download_count: 1 + id: 120995600 + label: null + name: helm-v3.12.3-darwin-arm64.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4HNj8Q + size: 833 + state: uploaded + updated_at: "2023-08-10T20:39:31Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/120995600 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.12.3/helm-v3.12.3-linux-386.tar.gz.asc + content_type: text/plain + created_at: "2023-08-10T20:39:31Z" + download_count: 1 + id: 120995601 + label: null + name: helm-v3.12.3-linux-386.tar.gz.asc + node_id: RA_kwDOApspmc4HNj8R + size: 833 + state: uploaded + updated_at: "2023-08-10T20:39:31Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/120995601 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.12.3/helm-v3.12.3-linux-386.tar.gz.sha256.asc + content_type: text/plain + created_at: "2023-08-10T20:39:31Z" + download_count: 1 + id: 120995602 + label: null + name: helm-v3.12.3-linux-386.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4HNj8S + size: 833 + state: uploaded + updated_at: "2023-08-10T20:39:31Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/120995602 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.12.3/helm-v3.12.3-linux-386.tar.gz.sha256sum.asc + content_type: text/plain + created_at: "2023-08-10T20:39:31Z" + download_count: 1 + id: 120995603 + label: null + name: helm-v3.12.3-linux-386.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4HNj8T + size: 833 + state: uploaded + updated_at: "2023-08-10T20:39:31Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/120995603 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.12.3/helm-v3.12.3-linux-amd64.tar.gz.asc + content_type: text/plain + created_at: "2023-08-10T20:39:31Z" + download_count: 9 + id: 120995604 + label: null + name: helm-v3.12.3-linux-amd64.tar.gz.asc + node_id: RA_kwDOApspmc4HNj8U + size: 833 + state: uploaded + updated_at: "2023-08-10T20:39:32Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/120995604 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.12.3/helm-v3.12.3-linux-amd64.tar.gz.sha256.asc + content_type: text/plain + created_at: "2023-08-10T20:39:32Z" + download_count: 8 + id: 120995605 + label: null + name: helm-v3.12.3-linux-amd64.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4HNj8V + size: 833 + state: uploaded + updated_at: "2023-08-10T20:39:32Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/120995605 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.12.3/helm-v3.12.3-linux-amd64.tar.gz.sha256sum.asc + content_type: text/plain + created_at: "2023-08-10T20:39:32Z" + download_count: 2 + id: 120995606 + label: null + name: helm-v3.12.3-linux-amd64.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4HNj8W + size: 833 + state: uploaded + updated_at: "2023-08-10T20:39:32Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/120995606 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.12.3/helm-v3.12.3-linux-arm.tar.gz.asc + content_type: text/plain + created_at: "2023-08-10T20:39:32Z" + download_count: 1 + id: 120995607 + label: null + name: helm-v3.12.3-linux-arm.tar.gz.asc + node_id: RA_kwDOApspmc4HNj8X + size: 833 + state: uploaded + updated_at: "2023-08-10T20:39:33Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/120995607 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.12.3/helm-v3.12.3-linux-arm.tar.gz.sha256.asc + content_type: text/plain + created_at: "2023-08-10T20:39:33Z" + download_count: 1 + id: 120995608 + label: null + name: helm-v3.12.3-linux-arm.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4HNj8Y + size: 833 + state: uploaded + updated_at: "2023-08-10T20:39:33Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/120995608 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.12.3/helm-v3.12.3-linux-arm.tar.gz.sha256sum.asc + content_type: text/plain + created_at: "2023-08-10T20:39:33Z" + download_count: 1 + id: 120995609 + label: null + name: helm-v3.12.3-linux-arm.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4HNj8Z + size: 833 + state: uploaded + updated_at: "2023-08-10T20:39:33Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/120995609 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.12.3/helm-v3.12.3-linux-arm64.tar.gz.asc + content_type: text/plain + created_at: "2023-08-10T20:39:33Z" + download_count: 1 + id: 120995610 + label: null + name: helm-v3.12.3-linux-arm64.tar.gz.asc + node_id: RA_kwDOApspmc4HNj8a + size: 833 + state: uploaded + updated_at: "2023-08-10T20:39:33Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/120995610 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.12.3/helm-v3.12.3-linux-arm64.tar.gz.sha256.asc + content_type: text/plain + created_at: "2023-08-10T20:39:33Z" + download_count: 1 + id: 120995611 + label: null + name: helm-v3.12.3-linux-arm64.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4HNj8b + size: 833 + state: uploaded + updated_at: "2023-08-10T20:39:34Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/120995611 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.12.3/helm-v3.12.3-linux-arm64.tar.gz.sha256sum.asc + content_type: text/plain + created_at: "2023-08-10T20:39:34Z" + download_count: 1 + id: 120995612 + label: null + name: helm-v3.12.3-linux-arm64.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4HNj8c + size: 833 + state: uploaded + updated_at: "2023-08-10T20:39:34Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/120995612 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.12.3/helm-v3.12.3-linux-ppc64le.tar.gz.asc + content_type: text/plain + created_at: "2023-08-10T20:39:34Z" + download_count: 1 + id: 120995613 + label: null + name: helm-v3.12.3-linux-ppc64le.tar.gz.asc + node_id: RA_kwDOApspmc4HNj8d + size: 833 + state: uploaded + updated_at: "2023-08-10T20:39:37Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/120995613 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.12.3/helm-v3.12.3-linux-ppc64le.tar.gz.sha256.asc + content_type: text/plain + created_at: "2023-08-10T20:39:37Z" + download_count: 1 + id: 120995618 + label: null + name: helm-v3.12.3-linux-ppc64le.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4HNj8i + size: 833 + state: uploaded + updated_at: "2023-08-10T20:39:37Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/120995618 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.12.3/helm-v3.12.3-linux-ppc64le.tar.gz.sha256sum.asc + content_type: text/plain + created_at: "2023-08-10T20:39:37Z" + download_count: 1 + id: 120995619 + label: null + name: helm-v3.12.3-linux-ppc64le.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4HNj8j + size: 833 + state: uploaded + updated_at: "2023-08-10T20:39:37Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/120995619 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.12.3/helm-v3.12.3-linux-s390x.tar.gz.asc + content_type: text/plain + created_at: "2023-08-10T20:39:37Z" + download_count: 1 + id: 120995620 + label: null + name: helm-v3.12.3-linux-s390x.tar.gz.asc + node_id: RA_kwDOApspmc4HNj8k + size: 833 + state: uploaded + updated_at: "2023-08-10T20:39:38Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/120995620 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.12.3/helm-v3.12.3-linux-s390x.tar.gz.sha256.asc + content_type: text/plain + created_at: "2023-08-10T20:39:38Z" + download_count: 1 + id: 120995621 + label: null + name: helm-v3.12.3-linux-s390x.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4HNj8l + size: 833 + state: uploaded + updated_at: "2023-08-10T20:39:38Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/120995621 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.12.3/helm-v3.12.3-linux-s390x.tar.gz.sha256sum.asc + content_type: text/plain + created_at: "2023-08-10T20:39:38Z" + download_count: 1 + id: 120995625 + label: null + name: helm-v3.12.3-linux-s390x.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4HNj8p + size: 833 + state: uploaded + updated_at: "2023-08-10T20:39:38Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/120995625 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.12.3/helm-v3.12.3-windows-amd64.zip.asc + content_type: text/plain + created_at: "2023-08-10T20:39:38Z" + download_count: 1 + id: 120995627 + label: null + name: helm-v3.12.3-windows-amd64.zip.asc + node_id: RA_kwDOApspmc4HNj8r + size: 833 + state: uploaded + updated_at: "2023-08-10T20:39:39Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/120995627 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.12.3/helm-v3.12.3-windows-amd64.zip.sha256.asc + content_type: text/plain + created_at: "2023-08-10T20:39:39Z" + download_count: 1 + id: 120995629 + label: null + name: helm-v3.12.3-windows-amd64.zip.sha256.asc + node_id: RA_kwDOApspmc4HNj8t + size: 833 + state: uploaded + updated_at: "2023-08-10T20:39:39Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/120995629 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.12.3/helm-v3.12.3-windows-amd64.zip.sha256sum.asc + content_type: text/plain + created_at: "2023-08-10T20:39:39Z" + download_count: 1 + id: 120995631 + label: null + name: helm-v3.12.3-windows-amd64.zip.sha256sum.asc + node_id: RA_kwDOApspmc4HNj8v + size: 833 + state: uploaded + updated_at: "2023-08-10T20:39:39Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/120995631 + assets_url: https://api.github.com/repos/helm/helm/releases/115987167/assets + author: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + body: "Helm v3.12.3 is a patch release. Users are encouraged to upgrade + for the best experience. Users are encouraged to upgrade for the best + experience.\r\n\r\nThe community keeps growing, and we'd love to see you + there!\r\n\r\n- Join the discussion in [Kubernetes Slack](https://kubernetes.slack.com):\r\n + \ - for questions and just to hang out\r\n - for discussing PRs, code, + and bugs\r\n- Hang out at the Public Developer Call: Thursday, 9:30 Pacific + via [Zoom](https://zoom.us/j/696660622)\r\n- Test, debug, and contribute + charts: [ArtifactHub/packages](https://artifacthub.io/packages/search?kind=0)\r\n\r\n## + Installation and Upgrading\r\n\r\nDownload Helm v3.12.3. The common platform + binaries are here:\r\n\r\n- [MacOS amd64](https://get.helm.sh/helm-v3.12.3-darwin-amd64.tar.gz) + ([checksum](https://get.helm.sh/helm-v3.12.3-darwin-amd64.tar.gz.sha256sum) + / 1bdbbeec5a12dd0c1cd4efd8948a156d33e1e2f51140e2a51e1e5e7b11b81d47)\r\n- + [MacOS arm64](https://get.helm.sh/helm-v3.12.3-darwin-arm64.tar.gz) ([checksum](https://get.helm.sh/helm-v3.12.3-darwin-arm64.tar.gz.sha256sum) + / 240b0a7da9cae208000eff3d3fb95e0fa1f4903d95be62c3f276f7630b12dae1)\r\n- + [Linux amd64](https://get.helm.sh/helm-v3.12.3-linux-amd64.tar.gz) ([checksum](https://get.helm.sh/helm-v3.12.3-linux-amd64.tar.gz.sha256sum) + / 1b2313cd198d45eab00cc37c38f6b1ca0a948ba279c29e322bdf426d406129b5)\r\n- + [Linux arm](https://get.helm.sh/helm-v3.12.3-linux-arm.tar.gz) ([checksum](https://get.helm.sh/helm-v3.12.3-linux-arm.tar.gz.sha256sum) + / 6b67cf5fc441c1fcb4a860629b2ec613d0e6c8ac536600445f52a033671e985e)\r\n- + [Linux arm64](https://get.helm.sh/helm-v3.12.3-linux-arm64.tar.gz) ([checksum](https://get.helm.sh/helm-v3.12.3-linux-arm64.tar.gz.sha256sum) + / 79ef06935fb47e432c0c91bdefd140e5b543ec46376007ca14a52e5ed3023088)\r\n- + [Linux i386](https://get.helm.sh/helm-v3.12.3-linux-386.tar.gz) ([checksum](https://get.helm.sh/helm-v3.12.3-linux-386.tar.gz.sha256sum) + / cb789c4753bf66c8426f6be4091349c0780aaf996af0a1de48318f9f8d6b7bc8)\r\n- + [Linux ppc64le](https://get.helm.sh/helm-v3.12.3-linux-ppc64le.tar.gz) + ([checksum](https://get.helm.sh/helm-v3.12.3-linux-ppc64le.tar.gz.sha256sum) + / 8f2182ae53dd129a176ee15a09754fa942e9e7e9adab41fd60a39833686fe5e6)\r\n- + [Linux s390x](https://get.helm.sh/helm-v3.12.3-linux-s390x.tar.gz) ([checksum](https://get.helm.sh/helm-v3.12.3-linux-s390x.tar.gz.sha256sum) + / f5d5c7a4e831dedc8dac5913d4c820e0da10e904debb59dec65bde203fad1af0)\r\n- + [Windows amd64](https://get.helm.sh/helm-v3.12.3-windows-amd64.zip) ([checksum](https://get.helm.sh/helm-v3.12.3-windows-amd64.zip.sha256sum) + / f3e2e9d69bb0549876aef6e956976f332e482592494874d254ef49c4862c5712)\r\n\r\nThis + release was signed with `672C 657B E06B 4B30 969C 4A57 4614 49C2 5E36 + B98E ` and can be found at @mattfarina [keybase account](https://keybase.io/mattfarina). + Please use the attached signatures for verifying this release using `gpg`.\r\n\r\nThe + [Quickstart Guide](https://helm.sh/docs/intro/quickstart/) will get you + going from there. For **upgrade instructions** or detailed installation + notes, check the [install guide](https://helm.sh/docs/intro/install/). + You can also use a [script to install](https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3) + on any system with `bash`.\r\n\r\n## What's Next\r\n\r\n- 3.13.0 is the + next feature release and be on September 13, 2023.\r\n\r\n## Changelog\r\n\r\n- + bump kubernetes modules to v0.27.3 3a31588ad33fe3b89af5a2a54ee1d25bfe6eaa5e + (Joe Julian)\r\n- Add priority class to kind sorter fb7415543b910e5661337e187e2be9d3f383638d + (Stepan Dohnal)\r\n" + created_at: "2023-08-10T20:09:54Z" + draft: false + html_url: https://github.com/helm/helm/releases/tag/v3.12.3 + id: 115987167 + mentions_count: 1 + name: Helm v3.12.3 + node_id: RE_kwDOApspmc4G6dLf + prerelease: false + published_at: "2023-08-10T20:41:12Z" + tag_name: v3.12.3 + tarball_url: https://api.github.com/repos/helm/helm/tarball/v3.12.3 + target_commitish: release-3.12 + upload_url: https://uploads.github.com/repos/helm/helm/releases/115987167/assets{?name,label} + url: https://api.github.com/repos/helm/helm/releases/115987167 + zipball_url: https://api.github.com/repos/helm/helm/zipball/v3.12.3 + 3.13.0: + githubRelease: + assets: + - browser_download_url: https://github.com/helm/helm/releases/download/v3.13.0/helm-v3.13.0-darwin-amd64.tar.gz.asc + content_type: text/plain + created_at: "2023-09-27T19:27:48Z" + download_count: 3 + id: 128026943 + label: null + name: helm-v3.13.0-darwin-amd64.tar.gz.asc + node_id: RA_kwDOApspmc4HoYk_ + size: 833 + state: uploaded + updated_at: "2023-09-27T19:27:49Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/128026943 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.13.0/helm-v3.13.0-darwin-amd64.tar.gz.sha256.asc + content_type: text/plain + created_at: "2023-09-27T19:27:49Z" + download_count: 3 + id: 128026945 + label: null + name: helm-v3.13.0-darwin-amd64.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4HoYlB + size: 833 + state: uploaded + updated_at: "2023-09-27T19:27:49Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/128026945 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.13.0/helm-v3.13.0-darwin-amd64.tar.gz.sha256sum.asc + content_type: text/plain + created_at: "2023-09-27T19:27:49Z" + download_count: 3 + id: 128026946 + label: null + name: helm-v3.13.0-darwin-amd64.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4HoYlC + size: 833 + state: uploaded + updated_at: "2023-09-27T19:27:49Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/128026946 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.13.0/helm-v3.13.0-darwin-arm64.tar.gz.asc + content_type: text/plain + created_at: "2023-09-27T19:27:49Z" + download_count: 3 + id: 128026947 + label: null + name: helm-v3.13.0-darwin-arm64.tar.gz.asc + node_id: RA_kwDOApspmc4HoYlD + size: 833 + state: uploaded + updated_at: "2023-09-27T19:27:50Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/128026947 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.13.0/helm-v3.13.0-darwin-arm64.tar.gz.sha256.asc + content_type: text/plain + created_at: "2023-09-27T19:27:50Z" + download_count: 3 + id: 128026948 + label: null + name: helm-v3.13.0-darwin-arm64.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4HoYlE + size: 833 + state: uploaded + updated_at: "2023-09-27T19:27:50Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/128026948 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.13.0/helm-v3.13.0-darwin-arm64.tar.gz.sha256sum.asc + content_type: text/plain + created_at: "2023-09-27T19:27:50Z" + download_count: 3 + id: 128026949 + label: null + name: helm-v3.13.0-darwin-arm64.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4HoYlF + size: 833 + state: uploaded + updated_at: "2023-09-27T19:27:50Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/128026949 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.13.0/helm-v3.13.0-linux-386.tar.gz.asc + content_type: text/plain + created_at: "2023-09-27T19:27:50Z" + download_count: 3 + id: 128026950 + label: null + name: helm-v3.13.0-linux-386.tar.gz.asc + node_id: RA_kwDOApspmc4HoYlG + size: 833 + state: uploaded + updated_at: "2023-09-27T19:27:51Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/128026950 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.13.0/helm-v3.13.0-linux-386.tar.gz.sha256.asc + content_type: text/plain + created_at: "2023-09-27T19:27:51Z" + download_count: 4 + id: 128026951 + label: null + name: helm-v3.13.0-linux-386.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4HoYlH + size: 833 + state: uploaded + updated_at: "2023-09-27T19:27:51Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/128026951 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.13.0/helm-v3.13.0-linux-386.tar.gz.sha256sum.asc + content_type: text/plain + created_at: "2023-09-27T19:27:51Z" + download_count: 4 + id: 128026952 + label: null + name: helm-v3.13.0-linux-386.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4HoYlI + size: 833 + state: uploaded + updated_at: "2023-09-27T19:27:51Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/128026952 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.13.0/helm-v3.13.0-linux-amd64.tar.gz.asc + content_type: text/plain + created_at: "2023-09-27T19:27:51Z" + download_count: 7 + id: 128026954 + label: null + name: helm-v3.13.0-linux-amd64.tar.gz.asc + node_id: RA_kwDOApspmc4HoYlK + size: 833 + state: uploaded + updated_at: "2023-09-27T19:27:51Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/128026954 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.13.0/helm-v3.13.0-linux-amd64.tar.gz.sha256.asc + content_type: text/plain + created_at: "2023-09-27T19:27:51Z" + download_count: 7 + id: 128026956 + label: null + name: helm-v3.13.0-linux-amd64.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4HoYlM + size: 833 + state: uploaded + updated_at: "2023-09-27T19:27:52Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/128026956 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.13.0/helm-v3.13.0-linux-amd64.tar.gz.sha256sum.asc + content_type: text/plain + created_at: "2023-09-27T19:27:52Z" + download_count: 5 + id: 128026957 + label: null + name: helm-v3.13.0-linux-amd64.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4HoYlN + size: 833 + state: uploaded + updated_at: "2023-09-27T19:27:52Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/128026957 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.13.0/helm-v3.13.0-linux-arm.tar.gz.asc + content_type: text/plain + created_at: "2023-09-27T19:27:52Z" + download_count: 4 + id: 128026958 + label: null + name: helm-v3.13.0-linux-arm.tar.gz.asc + node_id: RA_kwDOApspmc4HoYlO + size: 833 + state: uploaded + updated_at: "2023-09-27T19:27:52Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/128026958 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.13.0/helm-v3.13.0-linux-arm.tar.gz.sha256.asc + content_type: text/plain + created_at: "2023-09-27T19:27:52Z" + download_count: 5 + id: 128026959 + label: null + name: helm-v3.13.0-linux-arm.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4HoYlP + size: 833 + state: uploaded + updated_at: "2023-09-27T19:27:52Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/128026959 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.13.0/helm-v3.13.0-linux-arm.tar.gz.sha256sum.asc + content_type: text/plain + created_at: "2023-09-27T19:27:52Z" + download_count: 4 + id: 128026960 + label: null + name: helm-v3.13.0-linux-arm.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4HoYlQ + size: 833 + state: uploaded + updated_at: "2023-09-27T19:27:53Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/128026960 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.13.0/helm-v3.13.0-linux-arm64.tar.gz.asc + content_type: text/plain + created_at: "2023-09-27T19:27:53Z" + download_count: 3 + id: 128026962 + label: null + name: helm-v3.13.0-linux-arm64.tar.gz.asc + node_id: RA_kwDOApspmc4HoYlS + size: 833 + state: uploaded + updated_at: "2023-09-27T19:27:53Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/128026962 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.13.0/helm-v3.13.0-linux-arm64.tar.gz.sha256.asc + content_type: text/plain + created_at: "2023-09-27T19:27:53Z" + download_count: 3 + id: 128026963 + label: null + name: helm-v3.13.0-linux-arm64.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4HoYlT + size: 833 + state: uploaded + updated_at: "2023-09-27T19:27:53Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/128026963 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.13.0/helm-v3.13.0-linux-arm64.tar.gz.sha256sum.asc + content_type: text/plain + created_at: "2023-09-27T19:27:53Z" + download_count: 4 + id: 128026964 + label: null + name: helm-v3.13.0-linux-arm64.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4HoYlU + size: 833 + state: uploaded + updated_at: "2023-09-27T19:27:53Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/128026964 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.13.0/helm-v3.13.0-linux-ppc64le.tar.gz.asc + content_type: text/plain + created_at: "2023-09-27T19:27:53Z" + download_count: 3 + id: 128026965 + label: null + name: helm-v3.13.0-linux-ppc64le.tar.gz.asc + node_id: RA_kwDOApspmc4HoYlV + size: 833 + state: uploaded + updated_at: "2023-09-27T19:27:54Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/128026965 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.13.0/helm-v3.13.0-linux-ppc64le.tar.gz.sha256.asc + content_type: text/plain + created_at: "2023-09-27T19:27:54Z" + download_count: 3 + id: 128026966 + label: null + name: helm-v3.13.0-linux-ppc64le.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4HoYlW + size: 833 + state: uploaded + updated_at: "2023-09-27T19:27:54Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/128026966 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.13.0/helm-v3.13.0-linux-ppc64le.tar.gz.sha256sum.asc + content_type: text/plain + created_at: "2023-09-27T19:27:54Z" + download_count: 3 + id: 128026968 + label: null + name: helm-v3.13.0-linux-ppc64le.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4HoYlY + size: 833 + state: uploaded + updated_at: "2023-09-27T19:27:54Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/128026968 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.13.0/helm-v3.13.0-linux-s390x.tar.gz.asc + content_type: text/plain + created_at: "2023-09-27T19:27:54Z" + download_count: 3 + id: 128026970 + label: null + name: helm-v3.13.0-linux-s390x.tar.gz.asc + node_id: RA_kwDOApspmc4HoYla + size: 833 + state: uploaded + updated_at: "2023-09-27T19:27:54Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/128026970 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.13.0/helm-v3.13.0-linux-s390x.tar.gz.sha256.asc + content_type: text/plain + created_at: "2023-09-27T19:27:54Z" + download_count: 3 + id: 128026971 + label: null + name: helm-v3.13.0-linux-s390x.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4HoYlb + size: 833 + state: uploaded + updated_at: "2023-09-27T19:27:55Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/128026971 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.13.0/helm-v3.13.0-linux-s390x.tar.gz.sha256sum.asc + content_type: text/plain + created_at: "2023-09-27T19:27:55Z" + download_count: 3 + id: 128026972 + label: null + name: helm-v3.13.0-linux-s390x.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4HoYlc + size: 833 + state: uploaded + updated_at: "2023-09-27T19:27:55Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/128026972 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.13.0/helm-v3.13.0-windows-amd64.zip.asc + content_type: text/plain + created_at: "2023-09-27T19:27:55Z" + download_count: 4 + id: 128026974 + label: null + name: helm-v3.13.0-windows-amd64.zip.asc + node_id: RA_kwDOApspmc4HoYle + size: 833 + state: uploaded + updated_at: "2023-09-27T19:27:55Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/128026974 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.13.0/helm-v3.13.0-windows-amd64.zip.sha256.asc + content_type: text/plain + created_at: "2023-09-27T19:27:55Z" + download_count: 5 + id: 128026978 + label: null + name: helm-v3.13.0-windows-amd64.zip.sha256.asc + node_id: RA_kwDOApspmc4HoYli + size: 833 + state: uploaded + updated_at: "2023-09-27T19:27:56Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/128026978 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.13.0/helm-v3.13.0-windows-amd64.zip.sha256sum.asc + content_type: text/plain + created_at: "2023-09-27T19:27:56Z" + download_count: 4 + id: 128026979 + label: null + name: helm-v3.13.0-windows-amd64.zip.sha256sum.asc + node_id: RA_kwDOApspmc4HoYlj + size: 833 + state: uploaded + updated_at: "2023-09-27T19:27:56Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/128026979 + assets_url: https://api.github.com/repos/helm/helm/releases/122841866/assets + author: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + body: "Helm v3.13.0 is a feature release. Users are encouraged to upgrade + for the best experience.\r\n\r\nThe community keeps growing, and we'd + love to see you there!\r\n\r\n- Join the discussion in [Kubernetes Slack](https://kubernetes.slack.com):\r\n + \ - for questions and just to hang out\r\n - for discussing PRs, code, + and bugs\r\n- Hang out at the Public Developer Call: Thursday, 9:30 Pacific + via [Zoom](https://zoom.us/j/696660622)\r\n- Test, debug, and contribute + charts: [ArtifactHub/packages](https://artifacthub.io/packages/search?kind=0)\r\n\r\n## + Notable Changes\r\n\r\n- The `--dry-run` flag now has multiple options + which can enable Helm to connect to a Kubernetes instance. The default, + when `--dry-run` is used, is unchanged.\r\n- Values handling had numerous + issues fixed and now consistently has a priority of (1) User specified + values (e.g CLI), (2) imported values, (3) parent chart values, and (4) + subchart values. Additionally, null can now consistently be used to remove + values.\r\n- Can work with OCI registries over HTTP using the `--plain-http` + flag\r\n- Helm now adds the OCI creation annotation\r\n- New `helm get + metadata` command\r\n- The SQL driver now only needs write on the first + run or when the schema is updated\r\n- Added labels support for install + and upgrade commands\r\n\r\n## Installation and Upgrading\r\n\r\nDownload + Helm v3.13.0. The common platform binaries are here:\r\n\r\n- [MacOS amd64](https://get.helm.sh/helm-v3.13.0-darwin-amd64.tar.gz) + ([checksum](https://get.helm.sh/helm-v3.13.0-darwin-amd64.tar.gz.sha256sum) + / d44aa324ba6b2034e1f9eec34b80ec386a5e2c88a3db47f7276b3b5981ebd2a1)\r\n- + [MacOS arm64](https://get.helm.sh/helm-v3.13.0-darwin-arm64.tar.gz) ([checksum](https://get.helm.sh/helm-v3.13.0-darwin-arm64.tar.gz.sha256sum) + / fda10c694f2e926d8b4195c12001e83413b598fb7a828c8b6751ae4a355e0ca6)\r\n- + [Linux amd64](https://get.helm.sh/helm-v3.13.0-linux-amd64.tar.gz) ([checksum](https://get.helm.sh/helm-v3.13.0-linux-amd64.tar.gz.sha256sum) + / 138676351483e61d12dfade70da6c03d471bbdcac84eaadeb5e1d06fa114a24f)\r\n- + [Linux arm](https://get.helm.sh/helm-v3.13.0-linux-arm.tar.gz) ([checksum](https://get.helm.sh/helm-v3.13.0-linux-arm.tar.gz.sha256sum) + / bb2cdde0d12c55f65e88e7c398e67463e74bc236f68b7f307a73174b35628c2e)\r\n- + [Linux arm64](https://get.helm.sh/helm-v3.13.0-linux-arm64.tar.gz) ([checksum](https://get.helm.sh/helm-v3.13.0-linux-arm64.tar.gz.sha256sum) + / d12a0e73a7dbff7d89d13e0c6eb73f5095f72d70faea30531941d320678904d2)\r\n- + [Linux i386](https://get.helm.sh/helm-v3.13.0-linux-386.tar.gz) ([checksum](https://get.helm.sh/helm-v3.13.0-linux-386.tar.gz.sha256sum) + / f644910b9eb5f0a8427397c06dc0ddd9412925a0631decf2740363d38a8c9190)\r\n- + [Linux ppc64le](https://get.helm.sh/helm-v3.13.0-linux-ppc64le.tar.gz) + ([checksum](https://get.helm.sh/helm-v3.13.0-linux-ppc64le.tar.gz.sha256sum) + / d9be0057c21ce5994885630340b4f2725a68510deca6e3c455030d83336e4797)\r\n- + [Linux s390x](https://get.helm.sh/helm-v3.13.0-linux-s390x.tar.gz) ([checksum](https://get.helm.sh/helm-v3.13.0-linux-s390x.tar.gz.sha256sum) + / ef0b68f9c55220c31a5071d73e877c27c40965889d9e28234aaed223a5df4730)\r\n- + [Windows amd64](https://get.helm.sh/helm-v3.13.0-windows-amd64.zip) ([checksum](https://get.helm.sh/helm-v3.13.0-windows-amd64.zip.sha256sum) + / 8989f94407d31da2697a7354fba5f5c436b27ea193f76de6f1d37a51898a97a1)\r\n\r\nThis + release was signed with `672C 657B E06B 4B30 969C 4A57 4614 49C2 5E36 + B98E ` and can be found at @mattfarina [keybase account](https://keybase.io/mattfarina). + Please use the attached signatures for verifying this release using `gpg`.\r\n\r\nThe + [Quickstart Guide](https://helm.sh/docs/intro/quickstart/) will get you + going from there. For **upgrade instructions** or detailed installation + notes, check the [install guide](https://helm.sh/docs/intro/install/). + You can also use a [script to install](https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3) + on any system with `bash`.\r\n\r\n## What's Next\r\n\r\n- 3.13.1 is the + next bug fix release and will be on October 11, 2023.\r\n- 3.14.0 is the + next feature release and be on January 17, 2024.\r\n\r\n## Changelog\r\n\r\n- + bump version to v3.13.0 825e86f6a7a38cef1112bfa606e4127a706749b1 (Matt + Farina)\r\n- Fix leaking goroutines in Install 169561a1b381ae1a6a3974d84c303f19f324ffa0 + (Michał Słapek)\r\n- chore(deps): bump github.com/containerd/containerd + from 1.7.3 to 1.7.6 417040dbd73bb557069e80e68329f06479dfcf05 (dependabot[bot])\r\n- + chore(deps): bump github/codeql-action from 2.21.5 to 2.21.7 610217f3448efdcab03f31e6bd3e28fa98f20035 + (dependabot[bot])\r\n- Update Helm to use k8s 1.28.2 libraries c2ab954ac20f65851e663e66dffdf1ce2d1f0601 + (Matt Farina)\r\n- chore(deps): bump github.com/cyphar/filepath-securejoin + b9fd7f5ba1cbb54fa408b2c48752779c06ce81a3 (dependabot[bot])\r\n- make the + dependabot k8s.io group explicit ca3a05ec4260d2240c0d8bd99e857a86014ee7a8 + (Joe Julian)\r\n- use dependabot's group support for k8s.io dependencies + 04ec71af5e83113f548f4259efc3e185f6bc1e62 (Joe Julian)\r\n- chore(deps): + bump transparencylog/github-releases-asset-transparency-verify-action + ebb316842bb0b7bcaf01a84928af9805d87c40fd (dependabot[bot])\r\n- chore(deps): + bump github/codeql-action from 2.21.4 to 2.21.5 fa459781c1f8024eceedb923aaeb28cf56b55bfe + (dependabot[bot])\r\n- doc:Executing helm rollback release 0 will roll + back to the previous release e01731d83a8feef6ab73ea3bcc4237909091f8db + (ithrael)\r\n- fix conflict 4944acb3410d9baf377a495f41df628115a3ce35 (Maxim + Trofimov)\r\n- add big tests 6138e101aa4a468f4fdc169b1fda64b6cd32a111 + (Maxim Trofimov)\r\n- fix conflict 199784f7116cd1949aacb6af0b3e1cd473227d75 + (Maxim Trofimov)\r\n- fix b786cb40f09212a2b1c2c337f233a9b9c28122d9 (Maxim + Trofimov)\r\n- add check if all migrations already applied df5904d88aed0b7d1d110f17297037811a0dafd4 + (Maxim Trofimov)\r\n- chore(deps): bump github.com/moby/term fa896656d908a0f45bcdb31af68c1851e4c095b1 + (dependabot[bot])\r\n- chore(deps): bump actions/checkout from 3.5.3 to + 3.6.0 4283b2cb3d22c21a56ad0c7b7f340a7e50b0330e (dependabot[bot])\r\n- + chore(deps): bump golang.org/x/term from 0.10.0 to 0.11.0 d82cc9097b219456ef0e40b96fd98a99ce37070a + (dependabot[bot])\r\n- Use labels instead of selectorLabels for pod labels + 479be0c36bfcd96ff49c82b851cec40d21650a36 (Tim Chaplin)\r\n- fix(helm): + fix GetPodLogs, the hooks should be sorted before get the logs of each + hook 4e5e68d55c3d4bb385a582e633cfeaa5635981eb (Bingtan Lu)\r\n- chore(deps): + bump github.com/rubenv/sql-migrate from 1.5.1 to 1.5.2 3c26d6559ef2ed3fb5c96edb3b8241615342a193 + (dependabot[bot])\r\n- remove blank ee1cbed6081243be9eab62d3446454279221a545 + (ithrael)\r\n- add blank 0eb3df676c101e5e6e53214b167ea6acf531a3a2 (ithrael)\r\n- + add rollback unit test 0688046df60faee0659984f848198b10e8679ef3 (ithrael)\r\n- + fix: helm rollback err tips db9460cc8710c37525e08e7d314c354108d69383 (ithrael)\r\n- + chore(deps): bump github.com/containerd/containerd from 1.7.0 to 1.7.3 + 817e646dfe8a9d6abc35f6f3d974e98cfd2ec650 (dependabot[bot])\r\n- Add Ian + Zink (z4ce) as triage maintainer 758dc0163013baab18bd72718f7a4eb26a32e8e3 + (Ian Zink)\r\n- chore(deps): bump github/codeql-action from 2.21.3 to + 2.21.4 04850dc73dc7a5c7e8d66ccc9d10d273c109598f (dependabot[bot])\r\n- + chore: HTTPGetter add default timeout 2011a3191c814ed976b05cb44aa7e9277383422c + (0xff-dev)\r\n- fix: precedence typo bf543d94e95557cd4cc796ec5313e4548b4d126f + (guoguangwu)\r\n- Avoid nil dereference if passing a nil resolver 3607cd7110a8e62c69ea02900139c1c54534aaa9 + (Antonio Gamez Diaz)\r\n- Add required changes after merge 197d1defbf8262c22396e061791cf7c4b8559e9b + (Antonio Gamez Diaz)\r\n- goimports 5b0898513820e5952e0293b81fd098429f0e394f + (satoru)\r\n- Fix #3352, add support for --ignore-not-found just like + kubectl delete 48dbda2fa8d1e8981c271a56fe51bdf8b131fac2 (suzaku)\r\n- + chore(deps): bump github/codeql-action from 2.21.2 to 2.21.3 aab4c4552edea8d8ec617b75b7da667183a2593d + (dependabot[bot])\r\n- chore(deps): bump actions/setup-go from 4.0.1 to + 4.1.0 c3a4122dc6a8e2ec78a2f82e1aeb380915935205 (dependabot[bot])\r\n- + Fix helm may identify achieve of the application/x-gzip as application/vnd.ms-fontobject + 5c7a63138b70f2493be7ea5245791ba40091b9b2 (MR ZHAO)\r\n- Restore `helm + get metadata` command 0b5e9d37c849df546580f78a387d7d4a3a2a1c8d (Mikhail + Kopylov)\r\n- Revert \"Add `helm get metadata` command\" e8e6da28d1aab2101aaec0f9b517d2be0b3c4d56 + (Joe Julian)\r\n- Update pkg/action/install.go 735ff8f92c14256ab8cfaa4dcc1b08af7c63fec0 + (Dmitry Chepurovskiy)\r\n- test: replace `ensure.TempDir` with `t.TempDir` + 2ceebffc770968733dbf01997cdbcfc29cbb155b (Eng Zer Jun)\r\n- chore(deps): + bump github/codeql-action from 2.21.0 to 2.21.2 95ba0c69531bca72b75f07d7fb7f53badfaa5266 + (dependabot[bot])\r\n- use json api url + report curl/wget error on fail + 9d038a223f7052f04ae3e3eab92784d95d1d9ad8 (shoce)\r\n- Added error in case + try to supply custom label with name of system label during install/upgrade + 7b13ac9914188d69954966e500cbace18e8e9506 (Dmitry Chepurovskiy)\r\n- Updated + per feedback from gjenkins8 e8a748d3003faaa4846d2a9f30f7225d232b76d5 (Matt + Farina)\r\n- fix(main): fix basic auth for helm pull or push 4a27baaffc7ae112c2f45e3cd72dd249d9563a5a + (cuisongliu)\r\n- chore(deps): bump github.com/sirupsen/logrus from 1.9.0 + to 1.9.3 48cf02b57f76684501815b200c8223c0fbffe0e4 (dependabot[bot])\r\n- + cmd: support generating index in JSON format 2544aa23a33977d91fe8f59d12dd923dc43be6c5 + (Hidde Beydals)\r\n- repo: detect JSON and unmarshal efficiently e21c9cf7e243ca30868c2dfdd232168d7c4f744e + (Hidde Beydals)\r\n- Tweaking new dry-run internal handling 96e33e2773bb00a82dc94fcdb73950e08dd4229d + (Matt Farina)\r\n- chore(deps): bump github/codeql-action from 2.20.3 + to 2.21.0 2e223956674fd63f44f424003b7e2062fa6751ad (dependabot[bot])\r\n- + chore(deps): bump github.com/stretchr/testify from 1.8.2 to 1.8.4 7d0deb35d9694b396c20bb99f991d98c3fd2ada2 + (dependabot[bot])\r\n- chore(deps): bump github.com/BurntSushi/toml from + 1.2.1 to 1.3.2 f11e2dac8d7beb3d01cbdfffa273e1aa2e8fca79 (dependabot[bot])\r\n- + chore(deps): bump github.com/opencontainers/image-spec ef0f3e5c51c79d72e6e6f3a28f85f620607f0962 + (dependabot[bot])\r\n- bump kubernetes modules to v0.27.3 9c4f73332d084793ce917402679832e84057a08a + (Joe Julian)\r\n- chore(deps): bump actions/checkout from 3.2.0 to 3.5.3 + f9e5db39c96dcd53635085d80687f64cba53e9fa (dependabot[bot])\r\n- chore(deps): + bump actions/setup-go from 3.5.0 to 4.0.1 6e2bddde6a0c0d8cc54ccb50e602de0e049ac84d + (dependabot[bot])\r\n- chore(deps): bump github/codeql-action from 2.1.37 + to 2.20.3 31e9e54265bff22dd985eb7d48d52cc2c220cb65 (dependabot[bot])\r\n- + chore(deps): bump github.com/spf13/cobra from 1.6.1 to 1.7.0 87cbd34280a0e4b7d6f0b7112cd93094b85b6d1e + (dependabot[bot])\r\n- chore(deps): bump golang.org/x/crypto from 0.5.0 + to 0.11.0 91a3f73b0e76707d9996959f5a1311acfd766c11 (dependabot[bot])\r\n- + chore(deps): bump golang.org/x/text from 0.9.0 to 0.11.0 0ff4b746ea329892314e3c6a835fb71a740f38f8 + (dependabot[bot])\r\n- chore(deps): bump k8s.io/klog/v2 from 2.90.1 to + 2.100.1 b1fe927dc5927766555f1fc30d391da712b7720a (dependabot[bot])\r\n- + chore(deps): bump github.com/docker/docker b262738f9c6a40377886a82a5b3aea4698af99a3 + (dependabot[bot])\r\n- Remove warning for template directory not found. + 9dab6e977015cb92bf61c1f93a35316cae5e2462 (James Blair)\r\n- Add gjenkins8 + as triage maintainer 58402691207bd80ef80600315999bf021e41829b (George + Jenkins)\r\n- Added tests for created OCI annotation time format d72b42da615ede10877fd7d66085e1e6fe5ab546 + (Andrew Block)\r\n- Add created OCI annotation c4870d990cb0f7398d0cb569ee438f4a24e57f22 + (Andrew Block)\r\n- Fix multiple bugs in values handling 0a5148faffb7110bab58a466a52be0686a69947c + (Matt Farina)\r\n- chore: fix a typo in `manager.go` 15e6066a45cbd2b98023cf07bb1cfb45e18d2d95 + (Yarden Shoham)\r\n- chore(deps): bump github.com/rubenv/sql-migrate from + 1.3.1 to 1.5.1 d0febd50befbf826e6c3af3c4b96f1e04f60f780 (dependabot[bot])\r\n- + add GetRegistryClient method c87f846d8869ddf684e5a2d53c343a89f25bdbb5 + (wujunwei)\r\n- chore(deps): bump oras.land/oras-go from 1.2.2 to 1.2.3 + d8caa67a0f88b6e6a6d486ed547abd716f2c3dce (dependabot[bot])\r\n- oci: add + tests for plain HTTP and insecure HTTPS registries 6defb96dac59b963c0d19c6d0c89a58821604dd1 + (Sanskar Jaiswal)\r\n- chore(deps): bump github.com/opencontainers/runc + from 1.1.4 to 1.1.5 2bfc367b32a269b3a33c564fca407d949dbe7f9d (dependabot[bot])\r\n- + oci: Add flag `--plain-http` to enable working with HTTP registries 2538b927a746cea1ea4d69a321c6e564d7d00e20 + (Sanskar Jaiswal)\r\n- docs: add an example for using the upgrade command + with existing values e35bf1f93924ad7f9b1be732a9f2011f930bdd7c (Jose Diaz-Gonzalez)\r\n- + Replace `fmt.Fprintf` with `fmt.Fprint` in get_metadata.go 587c85f2e7a52aa019aa622b3a59bb2b53b0cd33 + (Mikhail Kopylov)\r\n- Replace `fmt.Fprintln` with `fmt.Fprintf` in get_metadata.go + 5eb1e9d0dbe27b0dbe51769777012911564119c5 (Mikhail Kopylov)\r\n- update + kubernetes dependencies from v0.27.0 to v0.27.1 54ca3a82c289907a691539f8e25c2d92ae068ba3 + (Joe Julian)\r\n- Add ClientOptResolver to test util file 770c51ef0a4e6c4d1f9d38185971840a56d10ce3 + (Antonio Gamez Diaz)\r\n- Check that missing keys are still handled in + tpl f235f0f28564b4391ef8b0b5f06b2d754bc13873 (Graham Reed)\r\n- chore(deps): + bump github.com/docker/distribution 36dee32fa1c702d58e12b2895f7311f2960fb47d + (dependabot[bot])\r\n- tests: change crd golden file to match after #11870 + 126e4f4af89a6516f17565a45366e620e400c185 (Joe Julian)\r\n- Adding details + on the Factory interface 8b19f8df0ed0df593a4efceddbd3fa85122b6238 (Matt + Farina)\r\n- move Joe Julian to maintainer a8cd2812c007312725e1b1867134bbc6dd230681 + (Joe Julian)\r\n- update autoscaling/v2beta1 to autoscaling/v2 in skeleton + chart b4a4c7a9d45f80cbc02df8859a23056e5333d6d1 (Dmitry Kamenskikh)\r\n- + chore(deps): bump github.com/Masterminds/squirrel from 1.5.3 to 1.5.4 + 2098f606aaa7fe54fb23b38ef6e3f8ca6e321f47 (dependabot[bot])\r\n- chore(deps): + bump github.com/lib/pq from 1.10.7 to 1.10.9 b750ee699ea43397c880e04d2a13db4bdc07466a + (dependabot[bot])\r\n- chore(deps): bump github.com/Masterminds/semver/v3 + from 3.2.0 to 3.2.1 1a7981a3ec22c7b8f1790f604b29c55ed9108251 (dependabot[bot])\r\n- + bump version to v3.12.0 1800554452dfb2b548a562325cda627e1119e784 (Matt + Farina)\r\n- feat(helm): add ability for --dry-run to do lookup functions + When a helm command is run with the --dry-run flag, it will try to connect + to the cluster to be able to render lookup functions. Closes #8137 b7a2d47eca70e18b821b415efa5f47971c8a5302 + (Tapas Kapadia)\r\n- Updating the Helm maintainers 82e132ca1c44c1d3dc8d73a102699dd7e4c54bc8 + (Matt Farina)\r\n- strip trailing newline from Files.Lines b3707e666bc562cae76aad554bde6160644aa837 + (Joe Julian)\r\n- add some test case cd2609d08ed9ae66dee5d3a33cb790935e011f0a + (wujunwei)\r\n- fix comment grammar error. 8e1c3d0d397922313e7c3201bd3d01ec1e8747eb + (wujunwei)\r\n- bugfix:(#11391) helm lint infinite loop when malformed + template object 316d3fb56aff92afcf167653399ca7ea57481ed2 (wujunwei)\r\n- + pkg/engine: fix nil-dereference 2a9594c0feadf0ab637c4e4c6cf50a931ba1778c + (AdamKorcz)\r\n- pkg/chartutil: fix nil-dereference 2f13355e40ca2790bebb19b7182500d312a536de + (AdamKorcz)\r\n- pkg/action: fix nil-dereference 6fc815da5a2951cecf6805d61b25d53bfe0ab980 + (AdamKorcz)\r\n- full source path when output-dir is not provided ddf8356c1f49f454fe4062c32f76c889799129aa + (Craig O'Donnell)\r\n- Update cmd/helm/upgrade.go dafc77df64e44bad4b552c911cd5725641e835f0 + (Dmitry Chepurovskiy)\r\n- Update cmd/helm/install.go 98697c7305deb1b4b749c2dc63d951a0a699b98f + (Dmitry Chepurovskiy)\r\n- added Contributing.md section and ref link + in the README 96ff3537a40e83f083807f41109fba3fa1e1f2c8 (abhiram11)\r\n- + fix: add podLabels b441f5341dd796b1ecdfcec0706a38d51cd8efb7 (genofire)\r\n- + feat(helm): add ability for --dry-run to do lookup functions When a helm + command is run with the --dry-run flag, it will try to connect to the + cluster if the value is 'server' to be able to render lookup functions. + Closes #8137 f9e54b6079100510d2956df2cbb70aa4b34ef969 (Tapas Kapadia)\r\n- + feat(helm): add ability for --dry-run to do lookup functions When a helm + command is run with the --dry-run flag, it will try to connect to the + cluster if the value is 'server' to be able to render lookup functions. + Closes #8137 25ac62e153d14b025c1b0460e82e48bf28ac07a6 (Tapas Kapadia)\r\n- + feat(helm): add ability for --dry-run to do lookup functions When a helm + command is run with the --dry-run flag, it will try to connect to the + cluster if the value is 'server' to be able to render lookup functions. + Closes #8137 9a0025f96388bcb45f91b2206e0e9d24b498d339 (Tapas Kapadia)\r\n- + feat(helm): add ability for a dry-run to evaluate lookup functions When + a helm command is run with the --dry-run-option=server flag, it will try + to connect to the cluster to be able to render lookup functions. Closes + #8137 5ec7913fd41920e117e20b5229676972ebea06a1 (Tapas Kapadia)\r\n- feat(helm): + add ability for a dry-run to evaluate lookup functions When a helm command + is run with the --dry-run-option=server flag, it will try to connect to + the cluster to be able to render lookup functions. Closes #8137 d66c7db55a56a88f312ca579f16feaf2b060d7be + (Tapas Kapadia)\r\n- feat(helm): add ability for a dry-run to evaluate + lookup functions When a helm command is run with the --dry-run-option=server + flag, it will try to connect to the cluster to be able to render lookup + functions. Closes #8137 ddb33580dbcfd8443208c814cd4df4220b57e8dd (Tapas + Kapadia)\r\n- feat(helm): add ability for --dry-run to do lookup functions + When a helm command is run with the --dry-run flag, it will try to connect + to the cluster if the value is 'server' to be able to render lookup functions. + Closes #8137 be99ebe8af768b5e83892771c0eccdaa329771d9 (Tapas Kapadia)\r\n- + feat(helm): add ability for --dry-run to do lookup functions When a helm + command is run with the --dry-run flag, it will try to connect to the + cluster if the value is 'server' to be able to render lookup functions. + Closes #8137 fc16ea7d44e353cc365c6d59031ef8157d2d9865 (Tapas Kapadia)\r\n- + feat(helm): add ability for --dry-run to do lookup functions When a helm + command is run with the --dry-run flag, it will try to connect to the + cluster if the value is 'server' to be able to render lookup functions. + Closes #8137 4d67dfabaa916183297200ed8e6b05f4de261fb1 (Tapas Kapadia)\r\n- + feat(helm): add ability for --dry-run to do lookup functions 51281c195a019d821082021acdc0fa4614dd74d5 + (Tapas Kapadia)\r\n- feat(helm): add ability for --dry-run to do lookup + functions 92a6640f8a56507f27c2f2732115a787d8d1ed6d (Tapas Kapadia)\r\n- + Add `CHART`, `VERSION` and `APP_VERSION` fields to `get all` command output + 9e118ef5db46360fcc67d47ffd3b78060b602295 (Mikhail Kopylov)\r\n- Adjust + `get` command description to account metadata 290397beb8b0fcb4f5396a2b5f813a4f362edbc0 + (Mikhail Kopylov)\r\n- fix typo: mountPath fc1a5a1123793691a0e6f7e339ab49448fc3be77 + (Eugene Zuev)\r\n- add volumes and volumeMounts in chartutil fd44c0fc14527fc90749bc15f9d226409c306c07 + (Eugene Zuev)\r\n- Seed a default switch to control `automountServiceAccountToken` + 4f353439fa385886719677fabadb9afef0619807 (Pat Riehecky)\r\n- Avoid confusing + error when passing in '--version X.Y.Z' 0d9eb1341b70955c266936295e6415c12c671280 + (Justin Wood)\r\n- Use errors.Is to compare a2b98281a1f9813a962386030b035b7b62cbdd99 + (Xin Ruan)\r\n- Add `helm get metadata` command 593dd0aef1919cec5e6b5f1c4ec450500c1c4473 + (Mikhail Kopylov)\r\n- Use wrapped error so that ErrNoObjectsVisited can + be compared after return. f01486a0eff51f63d3a71e63cf83e04e62778ed3 (Xin + Ruan)\r\n- Add exact version test. See also #7563 Signed-off-by: Igor + Manushin 203f31d57bff8a8b3886be22376dab85603823ef + (Igor Manushin)\r\n- Update dependabot config to include github actions + 115151bc3f914ed26abdd6f1750a4179baa96ad6 (Ashish Kurmi)\r\n- strict file + permissions of repository.yaml 33121a80ff76cdd51b93b2ecdfab7635aa59ac0b + (shankeerthan-kasilingam)\r\n- Check redefinition of define and include + in tpl 9fe912f3c559492daa925a3ecb7b8d4915dcdec3 (Graham Reed)\r\n- Check + that `.Template` is passed through `tpl` ebf5e1e2aff56bb15c8edbe209c5ce9da2af9237 + (Graham Reed)\r\n- Make sure empty `tpl` values render empty. 0a6e7d95aba9a029bf265a080591d1aa828d2144 + (Graham Reed)\r\n- Pick the test improvement out of PR#8371 d1e9a242a7bcd829bc4d4036c62839fcb9a9580c + (Graham Reed)\r\n- #11369 Use the correct index repo cache directory in + the `parallelRepoUpdate` method as well e844f9ca9216c92c07d6949c827b6d715ee0bcf7 + (Vincent van ’t Zand)\r\n- #11369 Add a test case to prove the bug and + its resolution 90d204a235e99024bae92e5ee758d7408cb9799d (Vincent van ’t + Zand)\r\n- ref(helm): export DescriptorPullSummary fields 62be6f1af688233075249ea2787d016d0b77880f + (Antonio Gamez Diaz)\r\n- feat(helm): add 'ClientOptResolver' ClientOption + 80bc7df7820513e79fc24a1d4bbffd96ef6a9adf (Antonio Gamez Diaz)\r\n- Fix + flaky TestSQLCreate test by making sqlmock ignore order of sql requests + 28ab648d3c6d9e9ec2b611c5c2c65fba53c8cb97 (Dmitry Chepurovskiy)\r\n- Fixing + tests after adding labels to release fixture 512970ab40b150faef23058452d4849b9d9a4106 + (Dmitry Chepurovskiy)\r\n- Make default release fixture contain custom + labels to make tests check that labels are not lost 2f29ccb9d0357c4fcb1f397681da280a4d8288b1 + (Dmitry Chepurovskiy)\r\n- Added support for storing custom labels in + SQL storage driver 68721de93de576d9e7c4aba4569d6169a79a67d3 (Dmitry Chepurovskiy)\r\n- + Adding support merging new custom labels with original release labels + during upgrade f96acb4fc85f26886142303e14e8b0901dc571dd (Dmitry Chepurovskiy)\r\n- + Added note to install/upgrade commands that original release labels wouldn't + be persisted in upgraded release 71e55f9b3600e9d62077dc1e59cee3aef2b04601 + (Dmitry Chepurovskiy)\r\n- Added unit tests for implemented install/upgrade + labels logic f1700e86d19aba6fb7db03eb36261fe2fb38461a (Dmitry Chepurovskiy)\r\n- + Remove redudant types from util_test.go 083e66fe2bd0a5c709adf51a8551dcfa80a274b7 + (Dmitry Chepurovskiy)\r\n- Added tests for newly introduced util.go functions + 3a2ed70bd3ca502340779fb0a3c8b5d5445121b5 (Dmitry Chepurovskiy)\r\n- Fix + broken tests for SQL storage driver c7eedbd9c583933a483917416d5c86bd6704631d + (Dmitry Chepurovskiy)\r\n- Fix broken tests for configmap and secret storage + drivers 95bb77c261f0965dc4e6ecf938cc754a3006939b (Dmitry Chepurovskiy)\r\n- + Make superseded releases keep labels 627ec6a0c66766a7bc1721272c618e9c9eca2c20 + (Dmitry Chepurovskiy)\r\n- Support configmap storage driver for install/upgrade + actions --labels argument ff3e55f65565cd1a7ec5224ab696a821504c3934 (Dmitry + Chepurovskiy)\r\n- Added upgrade --install labels argument support 6afad6bb610e5717caa908abc60695033f65d6a2 + (Dmitry Chepurovskiy)\r\n- Add labels support for install action with + secret storage backend 6ef79e432b3c7705173a71a32ed54983c084340c (Dmitry + Chepurovskiy)\r\n- test: added tests to load plugin from home dir with + space d7a5f54b6fb136d507baab53b08c4e822ef64aea (Suresh Kumar)\r\n- fix: + plugin does not load when helm base dir contains space 2b49de086072b24d7b93f9ddbb66b4a933963384 + (Suresh Kumar)\r\n- Add priority class to kind sorter f46eaf2f1b836129b25d4c4bc747b2e77ea29980 + (Stepan Dohnal)\r\n- Fixes #10566 c598a226e9c69113fc7265739b92818d6a2adf37 + (alexandr.danilin)\r\n- test(search): add mixedCase test case 2ee3bebfc7f5c069ea1c5b82bf9881ef9273dbff + (Hƶhl, Lukas)\r\n- fix(search): print repo search result in original case + 488add2cfe4a4d34ce875d6f89244c6575a834db (Hƶhl, Lukas)\r\n- Adjust error + message wrongly claiming that there is a resource conflict 8613770f7825d072f66cffcaab58b9d321dae2d7 + (Moritz Clasmeier)\r\n- Throw an error from jobReady() if the job exceeds + its BackoffLimit cd04e3f4180a76bdc7e07780c484364f2859b6ce (Rosenberg, + Jeff)\r\n- github: add Asset Transparency action for GitHub releases 87d40c126d42b3e266719ef9c529860aeecc782d + (Brandon Philips)" + created_at: "2023-09-27T18:59:20Z" + draft: false + html_url: https://github.com/helm/helm/releases/tag/v3.13.0 + id: 122841866 + mentions_count: 1 + name: Helm v3.13.0 + node_id: RE_kwDOApspmc4HUmsK + prerelease: false + published_at: "2023-09-27T20:51:15Z" + reactions: + "+1": 1 + "-1": 0 + confused: 0 + eyes: 0 + heart: 0 + hooray: 0 + laugh: 0 + rocket: 0 + total_count: 1 + url: https://api.github.com/repos/helm/helm/releases/122841866/reactions + tag_name: v3.13.0 + tarball_url: https://api.github.com/repos/helm/helm/tarball/v3.13.0 + target_commitish: release-3.13 + upload_url: https://uploads.github.com/repos/helm/helm/releases/122841866/assets{?name,label} + url: https://api.github.com/repos/helm/helm/releases/122841866 + zipball_url: https://api.github.com/repos/helm/helm/zipball/v3.13.0 + 3.13.1: + githubRelease: + assets: + - browser_download_url: https://github.com/helm/helm/releases/download/v3.13.1/helm-v3.13.1-darwin-amd64.tar.gz.asc + content_type: application/octet-stream + created_at: "2023-10-12T14:08:29Z" + download_count: 7 + id: 130262558 + label: null + name: helm-v3.13.1-darwin-amd64.tar.gz.asc + node_id: RA_kwDOApspmc4Hw6Ye + size: 833 + state: uploaded + updated_at: "2023-10-12T14:08:32Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/130262558 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.13.1/helm-v3.13.1-darwin-amd64.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2023-10-12T14:08:32Z" + download_count: 3 + id: 130262569 + label: null + name: helm-v3.13.1-darwin-amd64.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4Hw6Yp + size: 833 + state: uploaded + updated_at: "2023-10-12T14:08:33Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/130262569 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.13.1/helm-v3.13.1-darwin-amd64.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2023-10-12T14:08:33Z" + download_count: 3 + id: 130262571 + label: null + name: helm-v3.13.1-darwin-amd64.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4Hw6Yr + size: 833 + state: uploaded + updated_at: "2023-10-12T14:08:33Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/130262571 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.13.1/helm-v3.13.1-darwin-arm64.tar.gz.asc + content_type: application/octet-stream + created_at: "2023-10-12T14:08:33Z" + download_count: 4 + id: 130262573 + label: null + name: helm-v3.13.1-darwin-arm64.tar.gz.asc + node_id: RA_kwDOApspmc4Hw6Yt + size: 833 + state: uploaded + updated_at: "2023-10-12T14:08:33Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/130262573 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.13.1/helm-v3.13.1-darwin-arm64.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2023-10-12T14:08:33Z" + download_count: 4 + id: 130262574 + label: null + name: helm-v3.13.1-darwin-arm64.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4Hw6Yu + size: 833 + state: uploaded + updated_at: "2023-10-12T14:08:34Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/130262574 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.13.1/helm-v3.13.1-darwin-arm64.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2023-10-12T14:08:34Z" + download_count: 4 + id: 130262575 + label: null + name: helm-v3.13.1-darwin-arm64.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4Hw6Yv + size: 833 + state: uploaded + updated_at: "2023-10-12T14:08:34Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/130262575 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.13.1/helm-v3.13.1-linux-386.tar.gz.asc + content_type: application/octet-stream + created_at: "2023-10-12T14:08:34Z" + download_count: 3 + id: 130262576 + label: null + name: helm-v3.13.1-linux-386.tar.gz.asc + node_id: RA_kwDOApspmc4Hw6Yw + size: 833 + state: uploaded + updated_at: "2023-10-12T14:08:34Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/130262576 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.13.1/helm-v3.13.1-linux-386.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2023-10-12T14:08:34Z" + download_count: 3 + id: 130262577 + label: null + name: helm-v3.13.1-linux-386.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4Hw6Yx + size: 833 + state: uploaded + updated_at: "2023-10-12T14:08:34Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/130262577 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.13.1/helm-v3.13.1-linux-386.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2023-10-12T14:08:34Z" + download_count: 3 + id: 130262578 + label: null + name: helm-v3.13.1-linux-386.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4Hw6Yy + size: 833 + state: uploaded + updated_at: "2023-10-12T14:08:35Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/130262578 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.13.1/helm-v3.13.1-linux-amd64.tar.gz.asc + content_type: application/octet-stream + created_at: "2023-10-12T14:08:35Z" + download_count: 19 + id: 130262579 + label: null + name: helm-v3.13.1-linux-amd64.tar.gz.asc + node_id: RA_kwDOApspmc4Hw6Yz + size: 833 + state: uploaded + updated_at: "2023-10-12T14:08:35Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/130262579 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.13.1/helm-v3.13.1-linux-amd64.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2023-10-12T14:08:35Z" + download_count: 14 + id: 130262580 + label: null + name: helm-v3.13.1-linux-amd64.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4Hw6Y0 + size: 833 + state: uploaded + updated_at: "2023-10-12T14:08:35Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/130262580 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.13.1/helm-v3.13.1-linux-amd64.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2023-10-12T14:08:35Z" + download_count: 4 + id: 130262582 + label: null + name: helm-v3.13.1-linux-amd64.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4Hw6Y2 + size: 833 + state: uploaded + updated_at: "2023-10-12T14:08:35Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/130262582 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.13.1/helm-v3.13.1-linux-arm.tar.gz.asc + content_type: application/octet-stream + created_at: "2023-10-12T14:08:35Z" + download_count: 4 + id: 130262583 + label: null + name: helm-v3.13.1-linux-arm.tar.gz.asc + node_id: RA_kwDOApspmc4Hw6Y3 + size: 833 + state: uploaded + updated_at: "2023-10-12T14:08:36Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/130262583 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.13.1/helm-v3.13.1-linux-arm.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2023-10-12T14:08:36Z" + download_count: 4 + id: 130262584 + label: null + name: helm-v3.13.1-linux-arm.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4Hw6Y4 + size: 833 + state: uploaded + updated_at: "2023-10-12T14:08:36Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/130262584 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.13.1/helm-v3.13.1-linux-arm.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2023-10-12T14:08:36Z" + download_count: 4 + id: 130262587 + label: null + name: helm-v3.13.1-linux-arm.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4Hw6Y7 + size: 833 + state: uploaded + updated_at: "2023-10-12T14:08:36Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/130262587 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.13.1/helm-v3.13.1-linux-arm64.tar.gz.asc + content_type: application/octet-stream + created_at: "2023-10-12T14:08:36Z" + download_count: 3 + id: 130262589 + label: null + name: helm-v3.13.1-linux-arm64.tar.gz.asc + node_id: RA_kwDOApspmc4Hw6Y9 + size: 833 + state: uploaded + updated_at: "2023-10-12T14:08:36Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/130262589 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.13.1/helm-v3.13.1-linux-arm64.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2023-10-12T14:08:37Z" + download_count: 4 + id: 130262590 + label: null + name: helm-v3.13.1-linux-arm64.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4Hw6Y- + size: 833 + state: uploaded + updated_at: "2023-10-12T14:08:37Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/130262590 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.13.1/helm-v3.13.1-linux-arm64.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2023-10-12T14:08:37Z" + download_count: 4 + id: 130262591 + label: null + name: helm-v3.13.1-linux-arm64.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4Hw6Y_ + size: 833 + state: uploaded + updated_at: "2023-10-12T14:08:37Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/130262591 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.13.1/helm-v3.13.1-linux-ppc64le.tar.gz.asc + content_type: application/octet-stream + created_at: "2023-10-12T14:08:37Z" + download_count: 4 + id: 130262592 + label: null + name: helm-v3.13.1-linux-ppc64le.tar.gz.asc + node_id: RA_kwDOApspmc4Hw6ZA + size: 833 + state: uploaded + updated_at: "2023-10-12T14:08:37Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/130262592 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.13.1/helm-v3.13.1-linux-ppc64le.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2023-10-12T14:08:37Z" + download_count: 4 + id: 130262594 + label: null + name: helm-v3.13.1-linux-ppc64le.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4Hw6ZC + size: 833 + state: uploaded + updated_at: "2023-10-12T14:08:38Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/130262594 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.13.1/helm-v3.13.1-linux-ppc64le.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2023-10-12T14:08:38Z" + download_count: 3 + id: 130262596 + label: null + name: helm-v3.13.1-linux-ppc64le.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4Hw6ZE + size: 833 + state: uploaded + updated_at: "2023-10-12T14:08:38Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/130262596 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.13.1/helm-v3.13.1-linux-s390x.tar.gz.asc + content_type: application/octet-stream + created_at: "2023-10-12T14:08:38Z" + download_count: 4 + id: 130262597 + label: null + name: helm-v3.13.1-linux-s390x.tar.gz.asc + node_id: RA_kwDOApspmc4Hw6ZF + size: 833 + state: uploaded + updated_at: "2023-10-12T14:08:38Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/130262597 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.13.1/helm-v3.13.1-linux-s390x.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2023-10-12T14:08:38Z" + download_count: 4 + id: 130262599 + label: null + name: helm-v3.13.1-linux-s390x.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4Hw6ZH + size: 833 + state: uploaded + updated_at: "2023-10-12T14:08:39Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/130262599 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.13.1/helm-v3.13.1-linux-s390x.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2023-10-12T14:08:39Z" + download_count: 4 + id: 130262600 + label: null + name: helm-v3.13.1-linux-s390x.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4Hw6ZI + size: 833 + state: uploaded + updated_at: "2023-10-12T14:08:39Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/130262600 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.13.1/helm-v3.13.1-windows-amd64.zip.asc + content_type: application/octet-stream + created_at: "2023-10-12T14:08:39Z" + download_count: 4 + id: 130262601 + label: null + name: helm-v3.13.1-windows-amd64.zip.asc + node_id: RA_kwDOApspmc4Hw6ZJ + size: 833 + state: uploaded + updated_at: "2023-10-12T14:08:39Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/130262601 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.13.1/helm-v3.13.1-windows-amd64.zip.sha256.asc + content_type: application/octet-stream + created_at: "2023-10-12T14:08:39Z" + download_count: 3 + id: 130262602 + label: null + name: helm-v3.13.1-windows-amd64.zip.sha256.asc + node_id: RA_kwDOApspmc4Hw6ZK + size: 833 + state: uploaded + updated_at: "2023-10-12T14:08:39Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/130262602 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.13.1/helm-v3.13.1-windows-amd64.zip.sha256sum.asc + content_type: application/octet-stream + created_at: "2023-10-12T14:08:39Z" + download_count: 4 + id: 130262606 + label: null + name: helm-v3.13.1-windows-amd64.zip.sha256sum.asc + node_id: RA_kwDOApspmc4Hw6ZO + size: 833 + state: uploaded + updated_at: "2023-10-12T14:08:40Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/130262606 + assets_url: https://api.github.com/repos/helm/helm/releases/124830380/assets + author: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + body: "Helm v3.13.1 is a patch release. Users are encouraged to upgrade + for the best experience. Users are encouraged to upgrade for the best + experience.\r\n\r\nThe community keeps growing, and we'd love to see you + there!\r\n\r\n- Join the discussion in [Kubernetes Slack](https://kubernetes.slack.com):\r\n + \ - for questions and just to hang out\r\n - for discussing PRs, code, + and bugs\r\n- Hang out at the Public Developer Call: Thursday, 9:30 Pacific + via [Zoom](https://zoom.us/j/696660622)\r\n- Test, debug, and contribute + charts: [ArtifactHub/packages](https://artifacthub.io/packages/search?kind=0)\r\n\r\n## + Installation and Upgrading\r\n\r\nDownload Helm v3.13.1. The common platform + binaries are here:\r\n\r\n- [MacOS amd64](https://get.helm.sh/helm-v3.13.1-darwin-amd64.tar.gz) + ([checksum](https://get.helm.sh/helm-v3.13.1-darwin-amd64.tar.gz.sha256sum) + / e207e009b931162b0383b463c333a2792355200e91dbcf167c97c150e9f5fedb)\r\n- + [MacOS arm64](https://get.helm.sh/helm-v3.13.1-darwin-arm64.tar.gz) ([checksum](https://get.helm.sh/helm-v3.13.1-darwin-arm64.tar.gz.sha256sum) + / 46596d6d2d9aa545eb74f40684858fac0841df373ca760af1259d3493161d8c9)\r\n- + [Linux amd64](https://get.helm.sh/helm-v3.13.1-linux-amd64.tar.gz) ([checksum](https://get.helm.sh/helm-v3.13.1-linux-amd64.tar.gz.sha256sum) + / 98c363564d00afd0cc3088e8f830f2a0eeb5f28755b3d8c48df89866374a1ed0)\r\n- + [Linux arm](https://get.helm.sh/helm-v3.13.1-linux-arm.tar.gz) ([checksum](https://get.helm.sh/helm-v3.13.1-linux-arm.tar.gz.sha256sum) + / a9c188c1a79d2eb1721aece7c4e7cfcd56fa76d1e37bd7c9c05d3969bb0499b4)\r\n- + [Linux arm64](https://get.helm.sh/helm-v3.13.1-linux-arm64.tar.gz) ([checksum](https://get.helm.sh/helm-v3.13.1-linux-arm64.tar.gz.sha256sum) + / 8c4a0777218b266a7b977394aaf0e9cef30ed2df6e742d683e523d75508d6efe)\r\n- + [Linux i386](https://get.helm.sh/helm-v3.13.1-linux-386.tar.gz) ([checksum](https://get.helm.sh/helm-v3.13.1-linux-386.tar.gz.sha256sum) + / 384e1f97b6dafad62ccdd856e9453b68143e4dbdc7b9cf9a2a2f79c2aa7c2cc9)\r\n- + [Linux ppc64le](https://get.helm.sh/helm-v3.13.1-linux-ppc64le.tar.gz) + ([checksum](https://get.helm.sh/helm-v3.13.1-linux-ppc64le.tar.gz.sha256sum) + / f0d4ae95b4db25d03ced987e30d424564bd4727af6a4a0b7fca41f14203306fb)\r\n- + [Linux s390x](https://get.helm.sh/helm-v3.13.1-linux-s390x.tar.gz) ([checksum](https://get.helm.sh/helm-v3.13.1-linux-s390x.tar.gz.sha256sum) + / b657b72b34f568527093dede148ae72fcbc1f2e67d3fd6f2ffa1095637fbddb6)\r\n- + [Windows amd64](https://get.helm.sh/helm-v3.13.1-windows-amd64.zip) ([checksum](https://get.helm.sh/helm-v3.13.1-windows-amd64.zip.sha256sum) + / 6e16fbc5e50a5841be2dc725e790234f09aa2a5ebe289493c90f65ecae7b156f)\r\n\r\nThis + release was signed with `672C 657B E06B 4B30 969C 4A57 4614 49C2 5E36 + B98E ` and can be found at @mattfarina [keybase account](https://keybase.io/mattfarina). + Please use the attached signatures for verifying this release using `gpg`.\r\n\r\nThe + [Quickstart Guide](https://helm.sh/docs/intro/quickstart/) will get you + going from there. For **upgrade instructions** or detailed installation + notes, check the [install guide](https://helm.sh/docs/intro/install/). + You can also use a [script to install](https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3) + on any system with `bash`.\r\n\r\n## What's Next\r\n\r\n- 3.13.2 is a + patch release and will be on November 08, 2023.\r\n- 3.14.0 is the next + feature release and be on January 17, 2024.\r\n\r\n## Changelog\r\n\r\n- + Fixing precedence issue with the import of values. 3547a4b5bf5edb5478ce352e18858d8a552a4110 + (Matt Farina)\r\n- Add missing with clause to release gh action 6f9ad87ce76183ee4f04c567828d0d1c48fcc162 + (Ian Zink)\r\n- FIX Default ServiceAccount yaml bae7b3293c4c8ce2561874cf93ebae56d490b2f6 + (Lars Zimmermann)\r\n- fix(registry): unswallow error 06e4fb10a66ea984d555905702775aab639f8790 + (Hidde Beydals)\r\n- remove useless print during prepareUpgrade 0e7ec78e56834fff65fe21e6a715601d7dfa5f5a + (b4nks)\r\n- fix(registry): address anonymous pull issue 0ac78941abfed981a47f263fa59931e9123f73a1 + (Hidde Beydals)\r\n- Fix missing run statement on release action 09012691de50da37254d1ef98d97333c4a3e35c5 + (Ian Zink)\r\n- Write latest version to get.helm.sh bucket 6101393668f05c081e8be568d33bd82a1b66076a + (Ian Zink)\r\n- chore(deps): bump oras.land/oras-go from 1.2.3 to 1.2.4 + c99a8acfdd0c8ad57a9f5dfd2b5da6ed8ca7e7df (dependabot[bot])\r\n- Increased + release information key name max length. 52a029dcde7562d1d652a5b2c841c92c25145f15 + (abrarcv170)\r\n- chore(deps): bump golang.org/x/text from 0.11.0 to 0.13.0 + ff8e61d2cd67cfa24753605aa5b8ce79ea6c89a3 (dependabot[bot])" + created_at: "2023-10-12T13:35:32Z" + draft: false + html_url: https://github.com/helm/helm/releases/tag/v3.13.1 + id: 124830380 + mentions_count: 1 + name: Helm v3.13.1 + node_id: RE_kwDOApspmc4HcMKs + prerelease: false + published_at: "2023-10-12T14:10:22Z" + reactions: + "+1": 1 + "-1": 0 + confused: 0 + eyes: 0 + heart: 0 + hooray: 0 + laugh: 0 + rocket: 0 + total_count: 1 + url: https://api.github.com/repos/helm/helm/releases/124830380/reactions + tag_name: v3.13.1 + tarball_url: https://api.github.com/repos/helm/helm/tarball/v3.13.1 + target_commitish: release-3.13 + upload_url: https://uploads.github.com/repos/helm/helm/releases/124830380/assets{?name,label} + url: https://api.github.com/repos/helm/helm/releases/124830380 + zipball_url: https://api.github.com/repos/helm/helm/zipball/v3.13.1 + 3.13.2: + githubRelease: + assets: + - browser_download_url: https://github.com/helm/helm/releases/download/v3.13.2/helm-v3.13.2-darwin-amd64.tar.gz.asc + content_type: application/octet-stream + created_at: "2023-11-08T13:37:58Z" + download_count: 5 + id: 134550527 + label: null + name: helm-v3.13.2-darwin-amd64.tar.gz.asc + node_id: RA_kwDOApspmc4IBRP_ + size: 833 + state: uploaded + updated_at: "2023-11-08T13:37:59Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/134550527 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.13.2/helm-v3.13.2-darwin-amd64.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2023-11-08T13:37:59Z" + download_count: 4 + id: 134550530 + label: null + name: helm-v3.13.2-darwin-amd64.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4IBRQC + size: 833 + state: uploaded + updated_at: "2023-11-08T13:37:59Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/134550530 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.13.2/helm-v3.13.2-darwin-amd64.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2023-11-08T13:37:59Z" + download_count: 4 + id: 134550532 + label: null + name: helm-v3.13.2-darwin-amd64.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4IBRQE + size: 833 + state: uploaded + updated_at: "2023-11-08T13:37:59Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/134550532 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.13.2/helm-v3.13.2-darwin-arm64.tar.gz.asc + content_type: application/octet-stream + created_at: "2023-11-08T13:37:59Z" + download_count: 4 + id: 134550533 + label: null + name: helm-v3.13.2-darwin-arm64.tar.gz.asc + node_id: RA_kwDOApspmc4IBRQF + size: 833 + state: uploaded + updated_at: "2023-11-08T13:38:00Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/134550533 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.13.2/helm-v3.13.2-darwin-arm64.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2023-11-08T13:38:00Z" + download_count: 4 + id: 134550534 + label: null + name: helm-v3.13.2-darwin-arm64.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4IBRQG + size: 833 + state: uploaded + updated_at: "2023-11-08T13:38:00Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/134550534 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.13.2/helm-v3.13.2-darwin-arm64.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2023-11-08T13:38:00Z" + download_count: 4 + id: 134550535 + label: null + name: helm-v3.13.2-darwin-arm64.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4IBRQH + size: 833 + state: uploaded + updated_at: "2023-11-08T13:38:00Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/134550535 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.13.2/helm-v3.13.2-linux-386.tar.gz.asc + content_type: application/octet-stream + created_at: "2023-11-08T13:38:00Z" + download_count: 4 + id: 134550537 + label: null + name: helm-v3.13.2-linux-386.tar.gz.asc + node_id: RA_kwDOApspmc4IBRQJ + size: 833 + state: uploaded + updated_at: "2023-11-08T13:38:00Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/134550537 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.13.2/helm-v3.13.2-linux-386.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2023-11-08T13:38:00Z" + download_count: 4 + id: 134550538 + label: null + name: helm-v3.13.2-linux-386.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4IBRQK + size: 833 + state: uploaded + updated_at: "2023-11-08T13:38:00Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/134550538 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.13.2/helm-v3.13.2-linux-386.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2023-11-08T13:38:00Z" + download_count: 4 + id: 134550539 + label: null + name: helm-v3.13.2-linux-386.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4IBRQL + size: 833 + state: uploaded + updated_at: "2023-11-08T13:38:01Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/134550539 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.13.2/helm-v3.13.2-linux-amd64.tar.gz.asc + content_type: application/octet-stream + created_at: "2023-11-08T13:38:01Z" + download_count: 10 + id: 134550541 + label: null + name: helm-v3.13.2-linux-amd64.tar.gz.asc + node_id: RA_kwDOApspmc4IBRQN + size: 833 + state: uploaded + updated_at: "2023-11-08T13:38:01Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/134550541 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.13.2/helm-v3.13.2-linux-amd64.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2023-11-08T13:38:01Z" + download_count: 9 + id: 134550544 + label: null + name: helm-v3.13.2-linux-amd64.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4IBRQQ + size: 833 + state: uploaded + updated_at: "2023-11-08T13:38:01Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/134550544 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.13.2/helm-v3.13.2-linux-amd64.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2023-11-08T13:38:01Z" + download_count: 5 + id: 134550545 + label: null + name: helm-v3.13.2-linux-amd64.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4IBRQR + size: 833 + state: uploaded + updated_at: "2023-11-08T13:38:01Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/134550545 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.13.2/helm-v3.13.2-linux-arm.tar.gz.asc + content_type: application/octet-stream + created_at: "2023-11-08T13:38:01Z" + download_count: 4 + id: 134550549 + label: null + name: helm-v3.13.2-linux-arm.tar.gz.asc + node_id: RA_kwDOApspmc4IBRQV + size: 833 + state: uploaded + updated_at: "2023-11-08T13:38:02Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/134550549 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.13.2/helm-v3.13.2-linux-arm.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2023-11-08T13:38:02Z" + download_count: 4 + id: 134550550 + label: null + name: helm-v3.13.2-linux-arm.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4IBRQW + size: 833 + state: uploaded + updated_at: "2023-11-08T13:38:02Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/134550550 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.13.2/helm-v3.13.2-linux-arm.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2023-11-08T13:38:02Z" + download_count: 4 + id: 134550551 + label: null + name: helm-v3.13.2-linux-arm.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4IBRQX + size: 833 + state: uploaded + updated_at: "2023-11-08T13:38:02Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/134550551 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.13.2/helm-v3.13.2-linux-arm64.tar.gz.asc + content_type: application/octet-stream + created_at: "2023-11-08T13:38:02Z" + download_count: 7 + id: 134550552 + label: null + name: helm-v3.13.2-linux-arm64.tar.gz.asc + node_id: RA_kwDOApspmc4IBRQY + size: 833 + state: uploaded + updated_at: "2023-11-08T13:38:02Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/134550552 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.13.2/helm-v3.13.2-linux-arm64.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2023-11-08T13:38:02Z" + download_count: 6 + id: 134550554 + label: null + name: helm-v3.13.2-linux-arm64.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4IBRQa + size: 833 + state: uploaded + updated_at: "2023-11-08T13:38:03Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/134550554 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.13.2/helm-v3.13.2-linux-arm64.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2023-11-08T13:38:03Z" + download_count: 4 + id: 134550555 + label: null + name: helm-v3.13.2-linux-arm64.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4IBRQb + size: 833 + state: uploaded + updated_at: "2023-11-08T13:38:03Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/134550555 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.13.2/helm-v3.13.2-linux-ppc64le.tar.gz.asc + content_type: application/octet-stream + created_at: "2023-11-08T13:38:03Z" + download_count: 4 + id: 134550557 + label: null + name: helm-v3.13.2-linux-ppc64le.tar.gz.asc + node_id: RA_kwDOApspmc4IBRQd + size: 833 + state: uploaded + updated_at: "2023-11-08T13:38:03Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/134550557 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.13.2/helm-v3.13.2-linux-ppc64le.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2023-11-08T13:38:03Z" + download_count: 3 + id: 134550559 + label: null + name: helm-v3.13.2-linux-ppc64le.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4IBRQf + size: 833 + state: uploaded + updated_at: "2023-11-08T13:38:03Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/134550559 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.13.2/helm-v3.13.2-linux-ppc64le.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2023-11-08T13:38:03Z" + download_count: 3 + id: 134550561 + label: null + name: helm-v3.13.2-linux-ppc64le.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4IBRQh + size: 833 + state: uploaded + updated_at: "2023-11-08T13:38:04Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/134550561 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.13.2/helm-v3.13.2-linux-s390x.tar.gz.asc + content_type: application/octet-stream + created_at: "2023-11-08T13:38:04Z" + download_count: 3 + id: 134550564 + label: null + name: helm-v3.13.2-linux-s390x.tar.gz.asc + node_id: RA_kwDOApspmc4IBRQk + size: 833 + state: uploaded + updated_at: "2023-11-08T13:38:04Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/134550564 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.13.2/helm-v3.13.2-linux-s390x.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2023-11-08T13:38:04Z" + download_count: 3 + id: 134550565 + label: null + name: helm-v3.13.2-linux-s390x.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4IBRQl + size: 833 + state: uploaded + updated_at: "2023-11-08T13:38:04Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/134550565 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.13.2/helm-v3.13.2-linux-s390x.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2023-11-08T13:38:04Z" + download_count: 3 + id: 134550566 + label: null + name: helm-v3.13.2-linux-s390x.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4IBRQm + size: 833 + state: uploaded + updated_at: "2023-11-08T13:38:04Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/134550566 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.13.2/helm-v3.13.2-windows-amd64.zip.asc + content_type: application/octet-stream + created_at: "2023-11-08T13:38:04Z" + download_count: 6 + id: 134550568 + label: null + name: helm-v3.13.2-windows-amd64.zip.asc + node_id: RA_kwDOApspmc4IBRQo + size: 833 + state: uploaded + updated_at: "2023-11-08T13:38:05Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/134550568 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.13.2/helm-v3.13.2-windows-amd64.zip.sha256.asc + content_type: application/octet-stream + created_at: "2023-11-08T13:38:05Z" + download_count: 4 + id: 134550569 + label: null + name: helm-v3.13.2-windows-amd64.zip.sha256.asc + node_id: RA_kwDOApspmc4IBRQp + size: 833 + state: uploaded + updated_at: "2023-11-08T13:38:05Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/134550569 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.13.2/helm-v3.13.2-windows-amd64.zip.sha256sum.asc + content_type: application/octet-stream + created_at: "2023-11-08T13:38:05Z" + download_count: 4 + id: 134550570 + label: null + name: helm-v3.13.2-windows-amd64.zip.sha256sum.asc + node_id: RA_kwDOApspmc4IBRQq + size: 833 + state: uploaded + updated_at: "2023-11-08T13:38:05Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/134550570 + assets_url: https://api.github.com/repos/helm/helm/releases/128532863/assets + author: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + body: "Helm v3.13.2 is a patch release. Users are encouraged to upgrade + for the best experience. Users are encouraged to upgrade for the best + experience.\r\n\r\nThe community keeps growing, and we'd love to see you + there!\r\n\r\n- Join the discussion in [Kubernetes Slack](https://kubernetes.slack.com):\r\n + \ - for questions and just to hang out\r\n - for discussing PRs, code, + and bugs\r\n- Hang out at the Public Developer Call: Thursday, 9:30 Pacific + via [Zoom](https://zoom.us/j/696660622)\r\n- Test, debug, and contribute + charts: [ArtifactHub/packages](https://artifacthub.io/packages/search?kind=0)\r\n\r\n## + Installation and Upgrading\r\n\r\nDownload Helm v3.13.2. The common platform + binaries are here:\r\n\r\n- [MacOS amd64](https://get.helm.sh/helm-v3.13.2-darwin-amd64.tar.gz) + ([checksum](https://get.helm.sh/helm-v3.13.2-darwin-amd64.tar.gz.sha256sum) + / 977c2faa49993aa8baa2c727f8f35a357576d6278d4d8618a5a010a56ad2dbee)\r\n- + [MacOS arm64](https://get.helm.sh/helm-v3.13.2-darwin-arm64.tar.gz) ([checksum](https://get.helm.sh/helm-v3.13.2-darwin-arm64.tar.gz.sha256sum) + / 00f00c66165ba0dcd9efdbef66a5508fb4fe4425991c0e599e0710f8ff7aa02e)\r\n- + [Linux amd64](https://get.helm.sh/helm-v3.13.2-linux-amd64.tar.gz) ([checksum](https://get.helm.sh/helm-v3.13.2-linux-amd64.tar.gz.sha256sum) + / 55a8e6dce87a1e52c61e0ce7a89bf85b38725ba3e8deb51d4a08ade8a2c70b2d)\r\n- + [Linux arm](https://get.helm.sh/helm-v3.13.2-linux-arm.tar.gz) ([checksum](https://get.helm.sh/helm-v3.13.2-linux-arm.tar.gz.sha256sum) + / 06e8436bde78d53ddb5095ba146fe6c7001297c7dceb9ef6b68992c3ecfde770)\r\n- + [Linux arm64](https://get.helm.sh/helm-v3.13.2-linux-arm64.tar.gz) ([checksum](https://get.helm.sh/helm-v3.13.2-linux-arm64.tar.gz.sha256sum) + / f5654aaed63a0da72852776e1d3f851b2ea9529cb5696337202703c2e1ed2321)\r\n- + [Linux i386](https://get.helm.sh/helm-v3.13.2-linux-386.tar.gz) ([checksum](https://get.helm.sh/helm-v3.13.2-linux-386.tar.gz.sha256sum) + / 7d1307e708d4eb043686c8635df567773221397d5d0151d37000b7c472170b3a)\r\n- + [Linux ppc64le](https://get.helm.sh/helm-v3.13.2-linux-ppc64le.tar.gz) + ([checksum](https://get.helm.sh/helm-v3.13.2-linux-ppc64le.tar.gz.sha256sum) + / 11d96134cc4ec106c23cd8c163072e9aed6cd73e36a3da120e5876d426203f37)\r\n- + [Linux s390x](https://get.helm.sh/helm-v3.13.2-linux-s390x.tar.gz) ([checksum](https://get.helm.sh/helm-v3.13.2-linux-s390x.tar.gz.sha256sum) + / 3ffc5b4a041e5306dc00905ebe5dfea449e34ada268a713d34c69709afd6a9a2)\r\n- + [Windows amd64](https://get.helm.sh/helm-v3.13.2-windows-amd64.zip) ([checksum](https://get.helm.sh/helm-v3.13.2-windows-amd64.zip.sha256sum) + / 1ef931cb40bfa049fa5ee337ec16181345d7d0c8ab863fe9b04abe320fa2ae6e)\r\n\r\nThis + release was signed with `672C 657B E06B 4B30 969C 4A57 4614 49C2 5E36 + B98E ` and can be found at @mattfarina [keybase account](https://keybase.io/mattfarina). + Please use the attached signatures for verifying this release using `gpg`.\r\n\r\nThe + [Quickstart Guide](https://helm.sh/docs/intro/quickstart/) will get you + going from there. For **upgrade instructions** or detailed installation + notes, check the [install guide](https://helm.sh/docs/intro/install/). + You can also use a [script to install](https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3) + on any system with `bash`.\r\n\r\n## What's Next\r\n\r\n- 3.13.3 is a + patch release and will be on December 13, 2023.\r\n- 3.14.0 is the next + feature release and be on January 17, 2024.\r\n\r\n## Changelog\r\n\r\n- + chore(deps): bump google.golang.org/grpc from 1.54.0 to 1.56.3 2a2fb3b98829f1e0be6fb18af2f6599e0f4e8243 + (dependabot[bot])\r\n- Update get-helm-3 8f554be39fcd4cbcff47bc4def8bb45ae0ed9d8c + (Marcel Humburg)\r\n- chore(deps): bump github.com/docker/docker 00a334c1d913d7582e430ad9c64d0ca14cf465ff + (dependabot[bot])\r\n- Fixing release labelling in rollback 12826e839c3696aa901f0aee99587113ed4de694 + (Marcin Chojnacki)\r\n- Drop filterSystemLabels usage from Query method + 666b199dbea63c5cad9235abb74eed66ce9d6cd8 (Dmitry Chepurovskiy)\r\n- Apply + review suggestions 7e0084a394fdd2f379d7b21a5477c04f8dd96c84 (Dmitry Chepurovskiy)\r\n- + Allow using label selectors for system labels for sql backend. 10018ff34bc13cb4cac9e95b03a1c4720717445e + (Dmitry Chepurovskiy)\r\n- Allow using label selectors for system labels + for secrets and configmap backends. 3b4cacf717ab8708b582397b131182ab833687a2 + (Dmitry Chepurovskiy)\r\n- Revert \"fix(main): fix basic auth for helm + pull or push\" e785e6c50c622ed5019fd4020a13509c87a3022d (Matt Farina)\r\n- + Revert \"fix(registry): address anonymous pull issue\" 268dcedba6a231b623c8252a3dafa0052d161c6e + (Matt Farina)\r\n- chore(deps): bump golang.org/x/net from 0.13.0 to 0.17.0 + 99ce118b0ab10bc52d883412381ed9da0f35b14e (dependabot[bot])\r\n- Update + get-helm-3 to get version through get.helm.sh 28f208c3da7cdf4099255e332d2acee957d5abb0 + (Ian Zink)\r\n" + created_at: "2023-11-08T13:11:23Z" + draft: false + html_url: https://github.com/helm/helm/releases/tag/v3.13.2 + id: 128532863 + mentions_count: 1 + name: Helm v3.13.2 + node_id: RE_kwDOApspmc4HqUF_ + prerelease: false + published_at: "2023-11-08T13:39:28Z" + reactions: + "+1": 1 + "-1": 0 + confused: 0 + eyes: 0 + heart: 0 + hooray: 1 + laugh: 0 + rocket: 0 + total_count: 2 + url: https://api.github.com/repos/helm/helm/releases/128532863/reactions + tag_name: v3.13.2 + tarball_url: https://api.github.com/repos/helm/helm/tarball/v3.13.2 + target_commitish: release-3.13 + upload_url: https://uploads.github.com/repos/helm/helm/releases/128532863/assets{?name,label} + url: https://api.github.com/repos/helm/helm/releases/128532863 + zipball_url: https://api.github.com/repos/helm/helm/zipball/v3.13.2 + 3.13.3: + githubRelease: + assets: + - browser_download_url: https://github.com/helm/helm/releases/download/v3.13.3/helm-v3.13.3-darwin-amd64.tar.gz.asc + content_type: application/octet-stream + created_at: "2023-12-13T21:41:24Z" + download_count: 2 + id: 140537444 + label: null + name: helm-v3.13.3-darwin-amd64.tar.gz.asc + node_id: RA_kwDOApspmc4IYG5k + size: 833 + state: uploaded + updated_at: "2023-12-13T21:41:24Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/140537444 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.13.3/helm-v3.13.3-darwin-amd64.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2023-12-13T21:41:24Z" + download_count: 2 + id: 140537445 + label: null + name: helm-v3.13.3-darwin-amd64.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4IYG5l + size: 833 + state: uploaded + updated_at: "2023-12-13T21:41:25Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/140537445 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.13.3/helm-v3.13.3-darwin-amd64.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2023-12-13T21:41:25Z" + download_count: 2 + id: 140537447 + label: null + name: helm-v3.13.3-darwin-amd64.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4IYG5n + size: 833 + state: uploaded + updated_at: "2023-12-13T21:41:25Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/140537447 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.13.3/helm-v3.13.3-darwin-arm64.tar.gz.asc + content_type: application/octet-stream + created_at: "2023-12-13T21:41:25Z" + download_count: 2 + id: 140537448 + label: null + name: helm-v3.13.3-darwin-arm64.tar.gz.asc + node_id: RA_kwDOApspmc4IYG5o + size: 833 + state: uploaded + updated_at: "2023-12-13T21:41:25Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/140537448 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.13.3/helm-v3.13.3-darwin-arm64.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2023-12-13T21:41:25Z" + download_count: 2 + id: 140537449 + label: null + name: helm-v3.13.3-darwin-arm64.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4IYG5p + size: 833 + state: uploaded + updated_at: "2023-12-13T21:41:25Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/140537449 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.13.3/helm-v3.13.3-darwin-arm64.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2023-12-13T21:41:25Z" + download_count: 2 + id: 140537450 + label: null + name: helm-v3.13.3-darwin-arm64.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4IYG5q + size: 833 + state: uploaded + updated_at: "2023-12-13T21:41:26Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/140537450 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.13.3/helm-v3.13.3-linux-386.tar.gz.asc + content_type: application/octet-stream + created_at: "2023-12-13T21:41:26Z" + download_count: 2 + id: 140537451 + label: null + name: helm-v3.13.3-linux-386.tar.gz.asc + node_id: RA_kwDOApspmc4IYG5r + size: 833 + state: uploaded + updated_at: "2023-12-13T21:41:26Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/140537451 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.13.3/helm-v3.13.3-linux-386.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2023-12-13T21:41:26Z" + download_count: 3 + id: 140537453 + label: null + name: helm-v3.13.3-linux-386.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4IYG5t + size: 833 + state: uploaded + updated_at: "2023-12-13T21:41:26Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/140537453 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.13.3/helm-v3.13.3-linux-386.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2023-12-13T21:41:26Z" + download_count: 3 + id: 140537454 + label: null + name: helm-v3.13.3-linux-386.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4IYG5u + size: 833 + state: uploaded + updated_at: "2023-12-13T21:41:27Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/140537454 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.13.3/helm-v3.13.3-linux-amd64.tar.gz.asc + content_type: application/octet-stream + created_at: "2023-12-13T21:41:27Z" + download_count: 4 + id: 140537455 + label: null + name: helm-v3.13.3-linux-amd64.tar.gz.asc + node_id: RA_kwDOApspmc4IYG5v + size: 833 + state: uploaded + updated_at: "2023-12-13T21:41:27Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/140537455 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.13.3/helm-v3.13.3-linux-amd64.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2023-12-13T21:41:27Z" + download_count: 4 + id: 140537456 + label: null + name: helm-v3.13.3-linux-amd64.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4IYG5w + size: 833 + state: uploaded + updated_at: "2023-12-13T21:41:27Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/140537456 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.13.3/helm-v3.13.3-linux-amd64.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2023-12-13T21:41:27Z" + download_count: 2 + id: 140537457 + label: null + name: helm-v3.13.3-linux-amd64.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4IYG5x + size: 833 + state: uploaded + updated_at: "2023-12-13T21:41:27Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/140537457 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.13.3/helm-v3.13.3-linux-arm.tar.gz.asc + content_type: application/octet-stream + created_at: "2023-12-13T21:41:27Z" + download_count: 2 + id: 140537458 + label: null + name: helm-v3.13.3-linux-arm.tar.gz.asc + node_id: RA_kwDOApspmc4IYG5y + size: 833 + state: uploaded + updated_at: "2023-12-13T21:41:28Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/140537458 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.13.3/helm-v3.13.3-linux-arm.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2023-12-13T21:41:28Z" + download_count: 4 + id: 140537460 + label: null + name: helm-v3.13.3-linux-arm.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4IYG50 + size: 833 + state: uploaded + updated_at: "2023-12-13T21:41:28Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/140537460 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.13.3/helm-v3.13.3-linux-arm.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2023-12-13T21:41:28Z" + download_count: 3 + id: 140537461 + label: null + name: helm-v3.13.3-linux-arm.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4IYG51 + size: 833 + state: uploaded + updated_at: "2023-12-13T21:41:28Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/140537461 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.13.3/helm-v3.13.3-linux-arm64.tar.gz.asc + content_type: application/octet-stream + created_at: "2023-12-13T21:41:28Z" + download_count: 2 + id: 140537462 + label: null + name: helm-v3.13.3-linux-arm64.tar.gz.asc + node_id: RA_kwDOApspmc4IYG52 + size: 833 + state: uploaded + updated_at: "2023-12-13T21:41:28Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/140537462 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.13.3/helm-v3.13.3-linux-arm64.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2023-12-13T21:41:28Z" + download_count: 2 + id: 140537463 + label: null + name: helm-v3.13.3-linux-arm64.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4IYG53 + size: 833 + state: uploaded + updated_at: "2023-12-13T21:41:29Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/140537463 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.13.3/helm-v3.13.3-linux-arm64.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2023-12-13T21:41:29Z" + download_count: 2 + id: 140537493 + label: null + name: helm-v3.13.3-linux-arm64.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4IYG6V + size: 833 + state: uploaded + updated_at: "2023-12-13T21:41:29Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/140537493 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.13.3/helm-v3.13.3-linux-ppc64le.tar.gz.asc + content_type: application/octet-stream + created_at: "2023-12-13T21:41:29Z" + download_count: 4 + id: 140537494 + label: null + name: helm-v3.13.3-linux-ppc64le.tar.gz.asc + node_id: RA_kwDOApspmc4IYG6W + size: 833 + state: uploaded + updated_at: "2023-12-13T21:41:29Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/140537494 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.13.3/helm-v3.13.3-linux-ppc64le.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2023-12-13T21:41:29Z" + download_count: 2 + id: 140537496 + label: null + name: helm-v3.13.3-linux-ppc64le.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4IYG6Y + size: 833 + state: uploaded + updated_at: "2023-12-13T21:41:29Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/140537496 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.13.3/helm-v3.13.3-linux-ppc64le.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2023-12-13T21:41:29Z" + download_count: 3 + id: 140537497 + label: null + name: helm-v3.13.3-linux-ppc64le.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4IYG6Z + size: 833 + state: uploaded + updated_at: "2023-12-13T21:41:30Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/140537497 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.13.3/helm-v3.13.3-linux-s390x.tar.gz.asc + content_type: application/octet-stream + created_at: "2023-12-13T21:41:30Z" + download_count: 4 + id: 140537500 + label: null + name: helm-v3.13.3-linux-s390x.tar.gz.asc + node_id: RA_kwDOApspmc4IYG6c + size: 833 + state: uploaded + updated_at: "2023-12-13T21:41:30Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/140537500 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.13.3/helm-v3.13.3-linux-s390x.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2023-12-13T21:41:30Z" + download_count: 3 + id: 140537501 + label: null + name: helm-v3.13.3-linux-s390x.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4IYG6d + size: 833 + state: uploaded + updated_at: "2023-12-13T21:41:30Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/140537501 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.13.3/helm-v3.13.3-linux-s390x.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2023-12-13T21:41:30Z" + download_count: 2 + id: 140537502 + label: null + name: helm-v3.13.3-linux-s390x.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4IYG6e + size: 833 + state: uploaded + updated_at: "2023-12-13T21:41:30Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/140537502 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.13.3/helm-v3.13.3-windows-amd64.zip.asc + content_type: application/octet-stream + created_at: "2023-12-13T21:41:30Z" + download_count: 3 + id: 140537503 + label: null + name: helm-v3.13.3-windows-amd64.zip.asc + node_id: RA_kwDOApspmc4IYG6f + size: 833 + state: uploaded + updated_at: "2023-12-13T21:41:30Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/140537503 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.13.3/helm-v3.13.3-windows-amd64.zip.sha256.asc + content_type: application/octet-stream + created_at: "2023-12-13T21:41:30Z" + download_count: 2 + id: 140537505 + label: null + name: helm-v3.13.3-windows-amd64.zip.sha256.asc + node_id: RA_kwDOApspmc4IYG6h + size: 833 + state: uploaded + updated_at: "2023-12-13T21:41:31Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/140537505 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.13.3/helm-v3.13.3-windows-amd64.zip.sha256sum.asc + content_type: application/octet-stream + created_at: "2023-12-13T21:41:31Z" + download_count: 4 + id: 140537506 + label: null + name: helm-v3.13.3-windows-amd64.zip.sha256sum.asc + node_id: RA_kwDOApspmc4IYG6i + size: 833 + state: uploaded + updated_at: "2023-12-13T21:41:31Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/140537506 + assets_url: https://api.github.com/repos/helm/helm/releases/133819033/assets + author: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + body: "Helm v3.13.3 is a patch release. Users are encouraged to upgrade + for the best experience. Users are encouraged to upgrade for the best + experience.\r\n\r\nThe community keeps growing, and we'd love to see you + there!\r\n\r\n- Join the discussion in [Kubernetes Slack](https://kubernetes.slack.com):\r\n + \ - for questions and just to hang out\r\n - for discussing PRs, code, + and bugs\r\n- Hang out at the Public Developer Call: Thursday, 9:30 Pacific + via [Zoom](https://zoom.us/j/696660622)\r\n- Test, debug, and contribute + charts: [ArtifactHub/packages](https://artifacthub.io/packages/search?kind=0)\r\n\r\n## + Installation and Upgrading\r\n\r\nDownload Helm v3.13.3. The common platform + binaries are here:\r\n\r\n- [MacOS amd64](https://get.helm.sh/helm-v3.13.3-darwin-amd64.tar.gz) + ([checksum](https://get.helm.sh/helm-v3.13.3-darwin-amd64.tar.gz.sha256sum) + / da654c9e0fd4fcb50cc5dba051c1c9cf398e21ffa5064b47ac89a9697e139d39)\r\n- + [MacOS arm64](https://get.helm.sh/helm-v3.13.3-darwin-arm64.tar.gz) ([checksum](https://get.helm.sh/helm-v3.13.3-darwin-arm64.tar.gz.sha256sum) + / 61ba210cd65c53be5c0021c8fc8e0b94f4c122aff32f5ed0e4ea81728108ea20)\r\n- + [Linux amd64](https://get.helm.sh/helm-v3.13.3-linux-amd64.tar.gz) ([checksum](https://get.helm.sh/helm-v3.13.3-linux-amd64.tar.gz.sha256sum) + / bbb6e7c6201458b235f335280f35493950dcd856825ddcfd1d3b40ae757d5c7d)\r\n- + [Linux arm](https://get.helm.sh/helm-v3.13.3-linux-arm.tar.gz) ([checksum](https://get.helm.sh/helm-v3.13.3-linux-arm.tar.gz.sha256sum) + / 0170b15f3951be399e27e0cfdc21edb211d3b6b2698e078f993d9558d9446e3f)\r\n- + [Linux arm64](https://get.helm.sh/helm-v3.13.3-linux-arm64.tar.gz) ([checksum](https://get.helm.sh/helm-v3.13.3-linux-arm64.tar.gz.sha256sum) + / 44aaa094ae24d01e8c36e327e1837fd3377a0f9152626da088384c5bc6d94562)\r\n- + [Linux i386](https://get.helm.sh/helm-v3.13.3-linux-386.tar.gz) ([checksum](https://get.helm.sh/helm-v3.13.3-linux-386.tar.gz.sha256sum) + / a92929ba472ff4d31b83bcdd957f94ebb8c396c371c840afd04fa6a7fba61515)\r\n- + [Linux ppc64le](https://get.helm.sh/helm-v3.13.3-linux-ppc64le.tar.gz) + ([checksum](https://get.helm.sh/helm-v3.13.3-linux-ppc64le.tar.gz.sha256sum) + / 85afc540af42ebbb6e6a4fe270b04ce1fa27fa72845cd1d352feea0f55df1ffc)\r\n- + [Linux s390x](https://get.helm.sh/helm-v3.13.3-linux-s390x.tar.gz) ([checksum](https://get.helm.sh/helm-v3.13.3-linux-s390x.tar.gz.sha256sum) + / 19dce0dec6225132b80c3f6dfbc9f804cedd8becdbed5e30d197c4bbf20ce3c0)\r\n- + [Windows amd64](https://get.helm.sh/helm-v3.13.3-windows-amd64.zip) ([checksum](https://get.helm.sh/helm-v3.13.3-windows-amd64.zip.sha256sum) + / abb5e06a3587d8da7cca60c801cfbaa5178f4252c367b2469b3f123da2357cac)\r\n\r\nThis + release was signed with `672C 657B E06B 4B30 969C 4A57 4614 49C2 5E36 + B98E ` and can be found at @mattfarina [keybase account](https://keybase.io/mattfarina). + Please use the attached signatures for verifying this release using `gpg`.\r\n\r\nThe + [Quickstart Guide](https://helm.sh/docs/intro/quickstart/) will get you + going from there. For **upgrade instructions** or detailed installation + notes, check the [install guide](https://helm.sh/docs/intro/install/). + You can also use a [script to install](https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3) + on any system with `bash`.\r\n\r\n## What's Next\r\n\r\n- 3.14.0 is the + next feature release and be on January 17, 2024.\r\n\r\n## Changelog\r\n\r\n- + Updating Helm libraries for k8s 1.28.4 c8b948945e52abba22ff885446a1486cb5fd3474 + (Matt Farina)\r\n- Remove excessive logging 2f03d01b7d29d65374838a8376644e2b12066c81 + (Sean Mills)\r\n- chore(create): indent to spaces 2e6357665a4100eb8472902b693c8dfa50acc5aa + (genofire)\r\n" + created_at: "2023-12-13T21:05:13Z" + draft: false + html_url: https://github.com/helm/helm/releases/tag/v3.13.3 + id: 133819033 + mentions_count: 1 + name: Helm v3.13.3 + node_id: RE_kwDOApspmc4H-eqZ + prerelease: false + published_at: "2023-12-13T21:41:49Z" + reactions: + "+1": 2 + "-1": 0 + confused: 0 + eyes: 1 + heart: 1 + hooray: 1 + laugh: 1 + rocket: 1 + total_count: 7 + url: https://api.github.com/repos/helm/helm/releases/133819033/reactions + tag_name: v3.13.3 + tarball_url: https://api.github.com/repos/helm/helm/tarball/v3.13.3 + target_commitish: release-3.13 + upload_url: https://uploads.github.com/repos/helm/helm/releases/133819033/assets{?name,label} + url: https://api.github.com/repos/helm/helm/releases/133819033 + zipball_url: https://api.github.com/repos/helm/helm/zipball/v3.13.3 + 3.14.0: + githubRelease: + assets: + - browser_download_url: https://github.com/helm/helm/releases/download/v3.14.0/helm-v3.14.0-darwin-amd64.tar.gz.asc + content_type: application/octet-stream + created_at: "2024-01-17T19:32:59Z" + download_count: 1 + id: 146158279 + label: null + name: helm-v3.14.0-darwin-amd64.tar.gz.asc + node_id: RA_kwDOApspmc4ItjLH + size: 833 + state: uploaded + updated_at: "2024-01-17T19:32:59Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/146158279 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.14.0/helm-v3.14.0-darwin-amd64.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2024-01-17T19:32:59Z" + download_count: 1 + id: 146158280 + label: null + name: helm-v3.14.0-darwin-amd64.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4ItjLI + size: 833 + state: uploaded + updated_at: "2024-01-17T19:33:00Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/146158280 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.14.0/helm-v3.14.0-darwin-amd64.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2024-01-17T19:33:00Z" + download_count: 1 + id: 146158281 + label: null + name: helm-v3.14.0-darwin-amd64.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4ItjLJ + size: 833 + state: uploaded + updated_at: "2024-01-17T19:33:00Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/146158281 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.14.0/helm-v3.14.0-darwin-arm64.tar.gz.asc + content_type: application/octet-stream + created_at: "2024-01-17T19:33:00Z" + download_count: 1 + id: 146158284 + label: null + name: helm-v3.14.0-darwin-arm64.tar.gz.asc + node_id: RA_kwDOApspmc4ItjLM + size: 833 + state: uploaded + updated_at: "2024-01-17T19:33:00Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/146158284 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.14.0/helm-v3.14.0-darwin-arm64.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2024-01-17T19:33:00Z" + download_count: 1 + id: 146158285 + label: null + name: helm-v3.14.0-darwin-arm64.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4ItjLN + size: 833 + state: uploaded + updated_at: "2024-01-17T19:33:00Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/146158285 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.14.0/helm-v3.14.0-darwin-arm64.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2024-01-17T19:33:00Z" + download_count: 1 + id: 146158286 + label: null + name: helm-v3.14.0-darwin-arm64.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4ItjLO + size: 833 + state: uploaded + updated_at: "2024-01-17T19:33:01Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/146158286 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.14.0/helm-v3.14.0-linux-386.tar.gz.asc + content_type: application/octet-stream + created_at: "2024-01-17T19:33:01Z" + download_count: 1 + id: 146158288 + label: null + name: helm-v3.14.0-linux-386.tar.gz.asc + node_id: RA_kwDOApspmc4ItjLQ + size: 833 + state: uploaded + updated_at: "2024-01-17T19:33:01Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/146158288 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.14.0/helm-v3.14.0-linux-386.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2024-01-17T19:33:01Z" + download_count: 1 + id: 146158289 + label: null + name: helm-v3.14.0-linux-386.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4ItjLR + size: 833 + state: uploaded + updated_at: "2024-01-17T19:33:01Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/146158289 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.14.0/helm-v3.14.0-linux-386.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2024-01-17T19:33:01Z" + download_count: 1 + id: 146158290 + label: null + name: helm-v3.14.0-linux-386.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4ItjLS + size: 833 + state: uploaded + updated_at: "2024-01-17T19:33:01Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/146158290 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.14.0/helm-v3.14.0-linux-amd64.tar.gz.asc + content_type: application/octet-stream + created_at: "2024-01-17T19:33:01Z" + download_count: 12 + id: 146158292 + label: null + name: helm-v3.14.0-linux-amd64.tar.gz.asc + node_id: RA_kwDOApspmc4ItjLU + size: 833 + state: uploaded + updated_at: "2024-01-17T19:33:02Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/146158292 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.14.0/helm-v3.14.0-linux-amd64.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2024-01-17T19:33:02Z" + download_count: 9 + id: 146158293 + label: null + name: helm-v3.14.0-linux-amd64.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4ItjLV + size: 833 + state: uploaded + updated_at: "2024-01-17T19:33:02Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/146158293 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.14.0/helm-v3.14.0-linux-amd64.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2024-01-17T19:33:02Z" + download_count: 1 + id: 146158295 + label: null + name: helm-v3.14.0-linux-amd64.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4ItjLX + size: 833 + state: uploaded + updated_at: "2024-01-17T19:33:02Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/146158295 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.14.0/helm-v3.14.0-linux-arm.tar.gz.asc + content_type: application/octet-stream + created_at: "2024-01-17T19:33:02Z" + download_count: 1 + id: 146158296 + label: null + name: helm-v3.14.0-linux-arm.tar.gz.asc + node_id: RA_kwDOApspmc4ItjLY + size: 833 + state: uploaded + updated_at: "2024-01-17T19:33:02Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/146158296 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.14.0/helm-v3.14.0-linux-arm.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2024-01-17T19:33:02Z" + download_count: 1 + id: 146158298 + label: null + name: helm-v3.14.0-linux-arm.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4ItjLa + size: 833 + state: uploaded + updated_at: "2024-01-17T19:33:03Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/146158298 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.14.0/helm-v3.14.0-linux-arm.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2024-01-17T19:33:03Z" + download_count: 1 + id: 146158299 + label: null + name: helm-v3.14.0-linux-arm.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4ItjLb + size: 833 + state: uploaded + updated_at: "2024-01-17T19:33:03Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/146158299 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.14.0/helm-v3.14.0-linux-arm64.tar.gz.asc + content_type: application/octet-stream + created_at: "2024-01-17T19:33:03Z" + download_count: 2 + id: 146158301 + label: null + name: helm-v3.14.0-linux-arm64.tar.gz.asc + node_id: RA_kwDOApspmc4ItjLd + size: 833 + state: uploaded + updated_at: "2024-01-17T19:33:03Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/146158301 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.14.0/helm-v3.14.0-linux-arm64.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2024-01-17T19:33:03Z" + download_count: 2 + id: 146158302 + label: null + name: helm-v3.14.0-linux-arm64.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4ItjLe + size: 833 + state: uploaded + updated_at: "2024-01-17T19:33:04Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/146158302 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.14.0/helm-v3.14.0-linux-arm64.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2024-01-17T19:33:04Z" + download_count: 1 + id: 146158303 + label: null + name: helm-v3.14.0-linux-arm64.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4ItjLf + size: 833 + state: uploaded + updated_at: "2024-01-17T19:33:04Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/146158303 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.14.0/helm-v3.14.0-linux-ppc64le.tar.gz.asc + content_type: application/octet-stream + created_at: "2024-01-17T19:33:04Z" + download_count: 1 + id: 146158305 + label: null + name: helm-v3.14.0-linux-ppc64le.tar.gz.asc + node_id: RA_kwDOApspmc4ItjLh + size: 833 + state: uploaded + updated_at: "2024-01-17T19:33:04Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/146158305 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.14.0/helm-v3.14.0-linux-ppc64le.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2024-01-17T19:33:04Z" + download_count: 1 + id: 146158306 + label: null + name: helm-v3.14.0-linux-ppc64le.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4ItjLi + size: 833 + state: uploaded + updated_at: "2024-01-17T19:33:04Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/146158306 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.14.0/helm-v3.14.0-linux-ppc64le.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2024-01-17T19:33:04Z" + download_count: 1 + id: 146158307 + label: null + name: helm-v3.14.0-linux-ppc64le.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4ItjLj + size: 833 + state: uploaded + updated_at: "2024-01-17T19:33:05Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/146158307 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.14.0/helm-v3.14.0-linux-riscv64.tar.gz.asc + content_type: application/octet-stream + created_at: "2024-01-17T19:33:05Z" + download_count: 1 + id: 146158308 + label: null + name: helm-v3.14.0-linux-riscv64.tar.gz.asc + node_id: RA_kwDOApspmc4ItjLk + size: 833 + state: uploaded + updated_at: "2024-01-17T19:33:05Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/146158308 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.14.0/helm-v3.14.0-linux-riscv64.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2024-01-17T19:33:05Z" + download_count: 1 + id: 146158309 + label: null + name: helm-v3.14.0-linux-riscv64.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4ItjLl + size: 833 + state: uploaded + updated_at: "2024-01-17T19:33:05Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/146158309 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.14.0/helm-v3.14.0-linux-riscv64.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2024-01-17T19:33:05Z" + download_count: 1 + id: 146158310 + label: null + name: helm-v3.14.0-linux-riscv64.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4ItjLm + size: 833 + state: uploaded + updated_at: "2024-01-17T19:33:05Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/146158310 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.14.0/helm-v3.14.0-linux-s390x.tar.gz.asc + content_type: application/octet-stream + created_at: "2024-01-17T19:33:05Z" + download_count: 1 + id: 146158311 + label: null + name: helm-v3.14.0-linux-s390x.tar.gz.asc + node_id: RA_kwDOApspmc4ItjLn + size: 833 + state: uploaded + updated_at: "2024-01-17T19:33:05Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/146158311 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.14.0/helm-v3.14.0-linux-s390x.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2024-01-17T19:33:05Z" + download_count: 1 + id: 146158312 + label: null + name: helm-v3.14.0-linux-s390x.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4ItjLo + size: 833 + state: uploaded + updated_at: "2024-01-17T19:33:06Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/146158312 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.14.0/helm-v3.14.0-linux-s390x.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2024-01-17T19:33:06Z" + download_count: 1 + id: 146158313 + label: null + name: helm-v3.14.0-linux-s390x.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4ItjLp + size: 833 + state: uploaded + updated_at: "2024-01-17T19:33:06Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/146158313 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.14.0/helm-v3.14.0-windows-amd64.zip.asc + content_type: application/octet-stream + created_at: "2024-01-17T19:33:06Z" + download_count: 1 + id: 146158314 + label: null + name: helm-v3.14.0-windows-amd64.zip.asc + node_id: RA_kwDOApspmc4ItjLq + size: 833 + state: uploaded + updated_at: "2024-01-17T19:33:06Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/146158314 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.14.0/helm-v3.14.0-windows-amd64.zip.sha256.asc + content_type: application/octet-stream + created_at: "2024-01-17T19:33:06Z" + download_count: 1 + id: 146158315 + label: null + name: helm-v3.14.0-windows-amd64.zip.sha256.asc + node_id: RA_kwDOApspmc4ItjLr + size: 833 + state: uploaded + updated_at: "2024-01-17T19:33:06Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/146158315 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.14.0/helm-v3.14.0-windows-amd64.zip.sha256sum.asc + content_type: application/octet-stream + created_at: "2024-01-17T19:33:06Z" + download_count: 1 + id: 146158316 + label: null + name: helm-v3.14.0-windows-amd64.zip.sha256sum.asc + node_id: RA_kwDOApspmc4ItjLs + size: 833 + state: uploaded + updated_at: "2024-01-17T19:33:07Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/146158316 + assets_url: https://api.github.com/repos/helm/helm/releases/137445611/assets + author: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + body: "Helm v3.14.0 is a feature release. Users are encouraged to upgrade + for the best experience.\r\n\r\nThe community keeps growing, and we'd + love to see you there!\r\n\r\n- Join the discussion in [Kubernetes Slack](https://kubernetes.slack.com):\r\n + \ - for questions and just to hang out\r\n - for discussing PRs, code, + and bugs\r\n- Hang out at the Public Developer Call: Thursday, 9:30 Pacific + via [Zoom](https://zoom.us/j/696660622)\r\n- Test, debug, and contribute + charts: [ArtifactHub/packages](https://artifacthub.io/packages/search?kind=0)\r\n\r\n## + Notable Changes\r\n\r\n- New `helm search` flag of `--fail-on-no-result`\r\n- + Allow a nested `tpl` invocation access to `defines`\r\n- Speed up the + `tpl` function\r\n- Added qps/HELM_QPS parameter that tells Kubernetes + packages how to operate\r\n- Added `--kube-version` to `lint` command\r\n- + The `ignore` pkg is now public\r\n\r\n## Installation and Upgrading\r\n\r\nDownload + Helm v3.14.0. The common platform binaries are here:\r\n\r\n- [MacOS amd64](https://get.helm.sh/helm-v3.14.0-darwin-amd64.tar.gz) + ([checksum](https://get.helm.sh/helm-v3.14.0-darwin-amd64.tar.gz.sha256sum) + / 804586896496f7b3da97f56089ea00f220e075e969b6fdf6c0b7b9cdc22de120)\r\n- + [MacOS arm64](https://get.helm.sh/helm-v3.14.0-darwin-arm64.tar.gz) ([checksum](https://get.helm.sh/helm-v3.14.0-darwin-arm64.tar.gz.sha256sum) + / c2f36f3289a01c7c93ca11f84d740a170e0af1d2d0280bd523a409a62b8dfa1d)\r\n- + [Linux amd64](https://get.helm.sh/helm-v3.14.0-linux-amd64.tar.gz) ([checksum](https://get.helm.sh/helm-v3.14.0-linux-amd64.tar.gz.sha256sum) + / f43e1c3387de24547506ab05d24e5309c0ce0b228c23bd8aa64e9ec4b8206651)\r\n- + [Linux arm](https://get.helm.sh/helm-v3.14.0-linux-arm.tar.gz) ([checksum](https://get.helm.sh/helm-v3.14.0-linux-arm.tar.gz.sha256sum) + / cf38dfdead7266ae56662743bda0c78655814f0adeca382d1b07a812bb1a599a)\r\n- + [Linux arm64](https://get.helm.sh/helm-v3.14.0-linux-arm64.tar.gz) ([checksum](https://get.helm.sh/helm-v3.14.0-linux-arm64.tar.gz.sha256sum) + / b29e61674731b15f6ad3d1a3118a99d3cc2ab25a911aad1b8ac8c72d5a9d2952)\r\n- + [Linux i386](https://get.helm.sh/helm-v3.14.0-linux-386.tar.gz) ([checksum](https://get.helm.sh/helm-v3.14.0-linux-386.tar.gz.sha256sum) + / c6f110636eb602acfbf738de588061db301eb0bace9ef976e3ef1c70b4640e07)\r\n- + [Linux ppc64le](https://get.helm.sh/helm-v3.14.0-linux-ppc64le.tar.gz) + ([checksum](https://get.helm.sh/helm-v3.14.0-linux-ppc64le.tar.gz.sha256sum) + / f1f9d3561724863edd4c06d89acb2e2fd8ae0f1b72058ceb891fa1c346ce5dbc)\r\n- + [Linux s390x](https://get.helm.sh/helm-v3.14.0-linux-s390x.tar.gz) ([checksum](https://get.helm.sh/helm-v3.14.0-linux-s390x.tar.gz.sha256sum) + / 82298ef39936f1bef848959a29f77bff92d1309d8646657e3a7733702e81288c)\r\n- + [Linux riscv64](https://get.helm.sh/helm-v3.14.0-linux-riscv64.tar.gz) + ([checksum](https://get.helm.sh/helm-v3.14.0-linux-riscv64.tar.gz.sha256sum) + / ef3fff42942e715f4b299e63ed39ff758a64322dc8b4923b5a1a32dac7a838f6)\r\n- + [Windows amd64](https://get.helm.sh/helm-v3.14.0-windows-amd64.zip) ([checksum](https://get.helm.sh/helm-v3.14.0-windows-amd64.zip.sha256sum) + / fa8dfb5141e7a200fcc6ee290554697072a4584791b4fece4b9c60af501f3512)\r\n\r\nThis + release was signed with `672C 657B E06B 4B30 969C 4A57 4614 49C2 5E36 + B98E ` and can be found at @mattfarina [keybase account](https://keybase.io/mattfarina). + Please use the attached signatures for verifying this release using `gpg`.\r\n\r\nThe + [Quickstart Guide](https://helm.sh/docs/intro/quickstart/) will get you + going from there. For **upgrade instructions** or detailed installation + notes, check the [install guide](https://helm.sh/docs/intro/install/). + You can also use a [script to install](https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3) + on any system with `bash`.\r\n\r\n## What's Next\r\n\r\n- 3.14.1 will + contain only bug fixes and will be on February 14, 2024.\r\n- 3.15.0 is + the next feature release and will be on May 08, 2024.\r\n\r\n## Changelog\r\n\r\n- + Improve release action 3fc9f4b2638e76f26739cd77c7017139be81d0ea (George + Jenkins)\r\n- bump version to 69dcc92c56010902db7a316cf8697e5462bfa2c6 + (Matt Farina)\r\n- Fix issues when verify generation readiness was merged + c042264a9d1dd5d584684e105aa1ab0e38d96f20 (Matt Farina)\r\n- fix test to + use the default code's k8sVersionMinor 6e5332e79b01eb37f902a3569b1e7b80a8d86dd8 + (Joe Julian)\r\n- lint: Add --kube-version flag to set capabilities and + deprecation rules 869c1d2560f493bb7d4d93e04b8932144ea11e0d (Antoine DeschĆŖnes)\r\n- + Update to Go 1.21 for builds 847369c184d93fc4d36e9ec86a388b60331ab37a + (Matt Farina)\r\n- chore(deps): bump github.com/containerd/containerd + from 1.7.6 to 1.7.11 08ea59c47f662e6e3155eba4efe727357239aa40 (dependabot[bot])\r\n- + chore(deps): bump github.com/spf13/cobra from 1.7.0 to 1.8.0 30e1a2c0299f002c54cc6f10ff5a857a409813b7 + (dependabot[bot])\r\n- Removing Asset Transparency 803cf2d87465c55b2034b9228b29b83f16d19d77 + (Matt Farina)\r\n- tests(pkg/engine): test RenderWithClientProvider a997de1f112204cf175054a86e8e15fff6d97ebd + (Marcin Owsiany)\r\n- Make the `ignore` pkg public again 55867601337498c250ff7850a6b5594f3edd49a8 + (Ismail Alidzhikov)\r\n- chore(deps): bump golang.org/x/crypto from 0.14.0 + to 0.17.0 b3cb20a3e63d1dca6ee9952a75b844034bb9b72f (dependabot[bot])\r\n- + Updating to Kubernetes 1.29.0 libraries e5fff68ad284c83bbae256868ac4c87d4c5e2879 + (Matt Farina)\r\n- feature(pkg/engine): introduce RenderWithClientProvider + bfec4ec926225dede4b1471115ffd39ed56ed9fd (Marcin Owsiany)\r\n- chore(deps): + bump github/codeql-action from 2.22.10 to 3.22.11 70c15195c79ff12cc15111c2701a53d8e9029003 + (dependabot[bot])\r\n- chore(deps): bump github/codeql-action from 2.22.9 + to 2.22.10 be10183f3246f4a16563225d7a207d828903d714 (dependabot[bot])\r\n- + Updating Helm libraries for k8s 1.28.4 015e1746986fcd90cf2a19dc9d5fac872081c680 + (Matt Farina)\r\n- chore(deps): bump github/codeql-action from 2.22.8 + to 2.22.9 2a211bf689df4286f20cdbe9fc341b85732b120d (dependabot[bot])\r\n- + Remove excessive logging ce87ece23e2b86b15e9db48b0f9f811a74511c9a (Sean + Mills)\r\n- chore(deps): bump github/codeql-action from 2.22.7 to 2.22.8 + 3cb6b06da2ed3665e30c010c457ba66337ebda2c (dependabot[bot])\r\n- chore(deps): + bump github/codeql-action from 2.22.5 to 2.22.7 42c5af2a3add3003b108f119461a0be7df643b92 + (dependabot[bot])\r\n- Update CONTRIBUTING.md 312a07398fa6bef2a9e0d9a973de360dfb4c7044 + (lixin18)\r\n- Fixing release labelling in rollback 8814bfb490df080ef74ee301d66ac1518fb17362 + (Marcin Chojnacki)\r\n- chore(deps): bump github.com/docker/docker c54e39a15528f825f1d8c2091957035604ac12a1 + (dependabot[bot])\r\n- chore(deps): bump github/codeql-action from 2.22.4 + to 2.22.5 d6e91970526f76dabfcf1908c41d557bb166e144 (dependabot[bot])\r\n- + feat: move livenessProbe and readinessProbe values to default values file + 9f0313e5f508033fc5fe202eb4f144f28a30f7fa (Denis Policastro)\r\n- Revert + \"fix(main): fix basic auth for helm pull or push\" 24e2864c64844f34518caba11f659cc971aebca6 + (Matt Farina)\r\n- chore(deps): bump google.golang.org/grpc from 1.54.0 + to 1.56.3 c5fe7dd7640040f900abdc3e893e3fd850ffa3cf (dependabot[bot])\r\n- + Revert \"fix(registry): address anonymous pull issue\" 992dc58556506a8fe71b185d998a9ac532990261 + (Matt Farina)\r\n- Update get-helm-3 81362d9813c821e7b63fb99b51764f3446e86b31 + (Marcel Humburg)\r\n- chore(deps): bump github/codeql-action from 2.22.3 + to 2.22.4 6d1f6cd60cbc04f3ca81556ea3f6be18573ce7ab (dependabot[bot])\r\n- + chore(deps): bump actions/checkout from 3.6.0 to 4.1.1 372cccad56b491278f93ee5f72de1ceab7d11221 + (dependabot[bot])\r\n- chore(deps): bump github/codeql-action from 2.21.8 + to 2.22.3 a1a21ae85917e1500e8d171b4988e62f1398503b (dependabot[bot])\r\n- + Drop filterSystemLabels usage from Query method 250f0bd46eb543a22a3dfd7e48def58c2597189c + (Dmitry Chepurovskiy)\r\n- Apply review suggestions 0ec47f8ec9d4f46e328024a31bda4864cca96636 + (Dmitry Chepurovskiy)\r\n- Update get-helm-3 to get version through get.helm.sh + f94e5db65079ee7ff45dc48c8c3b2dc8f1cfd7b0 (Ian Zink)\r\n- feat: print failed + hook name b0d163771ee6ce23cfeecb9641ed0b02b6f418e7 (Serge Logvinov)\r\n- + chore(deps): bump golang.org/x/net from 0.13.0 to 0.17.0 544cabb0a4e55e9cad1e0f22079435882bfa2042 + (dependabot[bot])\r\n- Fixing precedence issue with the import of values. + 25371e2f0dee95f7a5ef6b91454dd563cc35caf6 (Matt Farina)\r\n- chore(create): + indent to spaces 919bffe2db1e579d5b7f9b21776ae8775ada20a4 (genofire)\r\n- + Allow using label selectors for system labels for sql backend. e6d9b99255864cf3f88becc4326e2ea38ee71bb4 + (Dmitry Chepurovskiy)\r\n- Allow using label selectors for system labels + for secrets and configmap backends. e219c756e02d8483e3c7219ce2137eaeb0cb9caa + (Dmitry Chepurovskiy)\r\n- remove useless print during prepareUpgrade + f004d42847016dc973d77a78d3f5ede2f15e1c68 (b4nks)\r\n- Add missing with + clause to release gh action 9d3d17aa30b1f66d187cd726c4e692fe925f6b3d (Ian + Zink)\r\n- FIX Default ServiceAccount yaml 828763e0d841fbe513f7f28e22d23fd103f97753 + (Lars Zimmermann)\r\n- fix(registry): address anonymous pull issue fe4c01f6241a8de566a6fc94cb6d1e5b5eb273d6 + (Hidde Beydals)\r\n- fix(registry): unswallow error da3c666a8223376e091e362856ebf0759e16fcd6 + (Hidde Beydals)\r\n- Fix missing run statement on release action 21ea847ff25960f6f3a5fdbeb1bf002a5cf8fd95 + (Ian Zink)\r\n- Add qps/HELM_QPS parameter 415af5b0e9a673bd0ed66f852c2a2634bb1c6ef7 + (Andy Smith)\r\n- chore(deps): bump oras.land/oras-go from 1.2.3 to 1.2.4 + 102e93188ca4b6dd75af0cc81de5fb0c5116ea83 (dependabot[bot])\r\n- chore(deps): + bump github/codeql-action from 2.21.7 to 2.21.8 2505592e651ac99acf3e8fef9a0255bce8b2d1f2 + (dependabot[bot])\r\n- bump version to v3.13.0 c372b150221e34a6e95f0d5a72fe35c841820eb6 + (Matt Farina)\r\n- chore(deps): bump github.com/evanphx/json-patch 8b0a78c6e3f5676c90ed5449d1348c372e395e31 + (dependabot[bot])\r\n- chore(deps): bump golang.org/x/text from 0.11.0 + to 0.13.0 58ccfc0501cdb222e33f431d868fe4a010f612e9 (dependabot[bot])\r\n- + Write latest version to get.helm.sh bucket 0619d088ef6ef344362fc8fd7d689368da240016 + (Ian Zink)\r\n- Increased release information key name max length. 4199be82b55121ac22fdb90dc54e74dc84eedcb9 + (abrarcv170)\r\n- Pin gox to specific commit 040330592f68b3420cebed9c2bcb636e843eb905 + (Antony Chazapis)\r\n- Remove `GoFish` from package managers for installing + \ the binary a9377f9df11d26d53746668b06afbc9b18a6083d (y-yagi)\r\n- Test + update for \"Allow a nested `tpl` invocation access to `defines` in a + containing one\" b261a1b1bee93343cf9fe92335d3f1ccf3e24558 (Graham Reed)\r\n- + Test update for \"Speed up `tpl`\" 36d417de3b045f6e459596ead552b87f0438b7ea + (Graham Reed)\r\n- addressing comment 1a3e9a95dda87a8d82c6be874c50786f9a71c6a1 + (Stefan McShane)\r\n- Add support for RISC-V 786707c065b199f55531685ed615554cce1b7758 + (Antony Chazapis)\r\n- lint and validate dependency metadata to reference + dependencies with a unique key (name or alias) 6a4035aea2ca5f7a45e847764d1a46ef6c0f242c + (Daniel Strobusch)\r\n- Work around template.Clone omitting options 95905f19dd822f8f2d784a64558de07c9bdc3f29 + (Graham Reed)\r\n- fix: pass 'passCredentialsAll' as env-var to getter + fa067ec16c576dcf7ea20974baa152dca5121a9c (Mathias Neerup)\r\n- feat: pass + basic auth to env-vars when running download plugins f28447c73df1bf4ae9db2bbeb6dd875808868380 + (Mathias Neerup)\r\n- helm search: New CLI Flag --fail-on-no-result b9cece6760e2c9508b43419d39cbaecde9951088 + (Bhargav Ravuri)\r\n- Update pkg/kube/ready.go 141fa4a037fee48a9a232b7da7092ab909f62747 + (muang0)\r\n- Update pkg/kube/ready.go 4cb62d12620eb666455ae3aceb91b42793ef4158 + (muang0)\r\n- Update pkg/kube/ready.go dbb21fcf444f2684aabb6d7702d70a72615bd4d9 + (muang0)\r\n- Update pkg/kube/ready.go fcc03324a6906a77d4885245799bf7b82e490a3f + (muang0)\r\n- Update pkg/kube/ready.go a1a1aafb7dd9249b92eb28bbf3ba3c206353608e + (muang0)\r\n- fix post install hook deletion due to before-hook-creation + policy fa025fc28be80ff30ef0b2d7475aaee13a8bdaaf (zak905)\r\n- Allow a + nested `tpl` invocation access to `defines` in a containing one a7d3fd6c09f5467afb79a55e78964f1fb554f477 + (Graham Reed)\r\n- Remove the 'reference templates' concept e2a7c7998aa9060148de25ba8683ae9f9b28aaeb + (Graham Reed)\r\n- Speed up `tpl` db4f3301229f4980c2521db13acfd7df7dd48008 + (Graham Reed)\r\n- ready checker- comment update Signed-off-by: James + Oden d008340891d6a9bf0caa6ac4b769e7db1d0230ba + (James Oden)\r\n- ready checker- remove duplicate statefulset generational + check Signed-off-by: James Oden 4f99c86914f1515a7f5696446856a6e2411c9d41 + (James Oden)\r\n- Verify generation in readiness checks d94c5094f68b69fdbf4dea72d2597ea1e1af9e97 + (James Oden)\r\n- feat(helm): add --reset-then-reuse-values flag to 'helm + upgrade' a9d59f946a7b4a19904b6c3a48fec085cbd101d3 (Quentin Devos)\r\n" + created_at: "2024-01-17T19:10:06Z" + draft: false + html_url: https://github.com/helm/helm/releases/tag/v3.14.0 + id: 137445611 + mentions_count: 1 + name: Helm v3.14.0 + node_id: RE_kwDOApspmc4IMUDr + prerelease: false + published_at: "2024-01-17T19:33:36Z" + tag_name: v3.14.0 + tarball_url: https://api.github.com/repos/helm/helm/tarball/v3.14.0 + target_commitish: release-3.14 + upload_url: https://uploads.github.com/repos/helm/helm/releases/137445611/assets{?name,label} + url: https://api.github.com/repos/helm/helm/releases/137445611 + zipball_url: https://api.github.com/repos/helm/helm/zipball/v3.14.0 + 3.14.1: + githubRelease: + assets: + - browser_download_url: https://github.com/helm/helm/releases/download/v3.14.1/helm-v3.14.1-darwin-amd64.tar.gz.asc + content_type: application/octet-stream + created_at: "2024-02-14T20:54:44Z" + download_count: 0 + id: 151582116 + label: null + name: helm-v3.14.1-darwin-amd64.tar.gz.asc + node_id: RA_kwDOApspmc4JCPWk + size: 833 + state: uploaded + updated_at: "2024-02-14T20:54:45Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/151582116 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.14.1/helm-v3.14.1-darwin-amd64.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2024-02-14T20:54:45Z" + download_count: 0 + id: 151582119 + label: null + name: helm-v3.14.1-darwin-amd64.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4JCPWn + size: 833 + state: uploaded + updated_at: "2024-02-14T20:54:45Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/151582119 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.14.1/helm-v3.14.1-darwin-amd64.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2024-02-14T20:54:45Z" + download_count: 0 + id: 151582121 + label: null + name: helm-v3.14.1-darwin-amd64.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4JCPWp + size: 833 + state: uploaded + updated_at: "2024-02-14T20:54:45Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/151582121 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.14.1/helm-v3.14.1-darwin-arm64.tar.gz.asc + content_type: application/octet-stream + created_at: "2024-02-14T20:54:45Z" + download_count: 0 + id: 151582123 + label: null + name: helm-v3.14.1-darwin-arm64.tar.gz.asc + node_id: RA_kwDOApspmc4JCPWr + size: 833 + state: uploaded + updated_at: "2024-02-14T20:54:45Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/151582123 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.14.1/helm-v3.14.1-darwin-arm64.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2024-02-14T20:54:45Z" + download_count: 0 + id: 151582126 + label: null + name: helm-v3.14.1-darwin-arm64.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4JCPWu + size: 833 + state: uploaded + updated_at: "2024-02-14T20:54:45Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/151582126 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.14.1/helm-v3.14.1-darwin-arm64.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2024-02-14T20:54:45Z" + download_count: 0 + id: 151582128 + label: null + name: helm-v3.14.1-darwin-arm64.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4JCPWw + size: 833 + state: uploaded + updated_at: "2024-02-14T20:54:46Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/151582128 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.14.1/helm-v3.14.1-linux-386.tar.gz.asc + content_type: application/octet-stream + created_at: "2024-02-14T20:54:46Z" + download_count: 0 + id: 151582130 + label: null + name: helm-v3.14.1-linux-386.tar.gz.asc + node_id: RA_kwDOApspmc4JCPWy + size: 833 + state: uploaded + updated_at: "2024-02-14T20:54:46Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/151582130 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.14.1/helm-v3.14.1-linux-386.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2024-02-14T20:54:46Z" + download_count: 0 + id: 151582132 + label: null + name: helm-v3.14.1-linux-386.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4JCPW0 + size: 833 + state: uploaded + updated_at: "2024-02-14T20:54:46Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/151582132 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.14.1/helm-v3.14.1-linux-386.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2024-02-14T20:54:46Z" + download_count: 0 + id: 151582134 + label: null + name: helm-v3.14.1-linux-386.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4JCPW2 + size: 833 + state: uploaded + updated_at: "2024-02-14T20:54:46Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/151582134 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.14.1/helm-v3.14.1-linux-amd64.tar.gz.asc + content_type: application/octet-stream + created_at: "2024-02-14T20:54:46Z" + download_count: 0 + id: 151582135 + label: null + name: helm-v3.14.1-linux-amd64.tar.gz.asc + node_id: RA_kwDOApspmc4JCPW3 + size: 833 + state: uploaded + updated_at: "2024-02-14T20:54:47Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/151582135 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.14.1/helm-v3.14.1-linux-amd64.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2024-02-14T20:54:47Z" + download_count: 0 + id: 151582136 + label: null + name: helm-v3.14.1-linux-amd64.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4JCPW4 + size: 833 + state: uploaded + updated_at: "2024-02-14T20:54:47Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/151582136 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.14.1/helm-v3.14.1-linux-amd64.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2024-02-14T20:54:47Z" + download_count: 0 + id: 151582138 + label: null + name: helm-v3.14.1-linux-amd64.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4JCPW6 + size: 833 + state: uploaded + updated_at: "2024-02-14T20:54:47Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/151582138 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.14.1/helm-v3.14.1-linux-arm.tar.gz.asc + content_type: application/octet-stream + created_at: "2024-02-14T20:54:47Z" + download_count: 0 + id: 151582139 + label: null + name: helm-v3.14.1-linux-arm.tar.gz.asc + node_id: RA_kwDOApspmc4JCPW7 + size: 833 + state: uploaded + updated_at: "2024-02-14T20:54:47Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/151582139 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.14.1/helm-v3.14.1-linux-arm.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2024-02-14T20:54:47Z" + download_count: 0 + id: 151582140 + label: null + name: helm-v3.14.1-linux-arm.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4JCPW8 + size: 833 + state: uploaded + updated_at: "2024-02-14T20:54:47Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/151582140 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.14.1/helm-v3.14.1-linux-arm.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2024-02-14T20:54:47Z" + download_count: 0 + id: 151582142 + label: null + name: helm-v3.14.1-linux-arm.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4JCPW- + size: 833 + state: uploaded + updated_at: "2024-02-14T20:54:48Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/151582142 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.14.1/helm-v3.14.1-linux-arm64.tar.gz.asc + content_type: application/octet-stream + created_at: "2024-02-14T20:54:48Z" + download_count: 0 + id: 151582144 + label: null + name: helm-v3.14.1-linux-arm64.tar.gz.asc + node_id: RA_kwDOApspmc4JCPXA + size: 833 + state: uploaded + updated_at: "2024-02-14T20:54:48Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/151582144 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.14.1/helm-v3.14.1-linux-arm64.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2024-02-14T20:54:48Z" + download_count: 0 + id: 151582146 + label: null + name: helm-v3.14.1-linux-arm64.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4JCPXC + size: 833 + state: uploaded + updated_at: "2024-02-14T20:54:48Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/151582146 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.14.1/helm-v3.14.1-linux-arm64.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2024-02-14T20:54:48Z" + download_count: 0 + id: 151582147 + label: null + name: helm-v3.14.1-linux-arm64.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4JCPXD + size: 833 + state: uploaded + updated_at: "2024-02-14T20:54:48Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/151582147 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.14.1/helm-v3.14.1-linux-ppc64le.tar.gz.asc + content_type: application/octet-stream + created_at: "2024-02-14T20:54:48Z" + download_count: 0 + id: 151582150 + label: null + name: helm-v3.14.1-linux-ppc64le.tar.gz.asc + node_id: RA_kwDOApspmc4JCPXG + size: 833 + state: uploaded + updated_at: "2024-02-14T20:54:49Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/151582150 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.14.1/helm-v3.14.1-linux-ppc64le.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2024-02-14T20:54:49Z" + download_count: 0 + id: 151582151 + label: null + name: helm-v3.14.1-linux-ppc64le.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4JCPXH + size: 833 + state: uploaded + updated_at: "2024-02-14T20:54:49Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/151582151 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.14.1/helm-v3.14.1-linux-ppc64le.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2024-02-14T20:54:49Z" + download_count: 0 + id: 151582152 + label: null + name: helm-v3.14.1-linux-ppc64le.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4JCPXI + size: 833 + state: uploaded + updated_at: "2024-02-14T20:54:49Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/151582152 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.14.1/helm-v3.14.1-linux-riscv64.tar.gz.asc + content_type: application/octet-stream + created_at: "2024-02-14T20:54:49Z" + download_count: 0 + id: 151582154 + label: null + name: helm-v3.14.1-linux-riscv64.tar.gz.asc + node_id: RA_kwDOApspmc4JCPXK + size: 833 + state: uploaded + updated_at: "2024-02-14T20:54:49Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/151582154 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.14.1/helm-v3.14.1-linux-riscv64.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2024-02-14T20:54:49Z" + download_count: 0 + id: 151582157 + label: null + name: helm-v3.14.1-linux-riscv64.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4JCPXN + size: 833 + state: uploaded + updated_at: "2024-02-14T20:54:49Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/151582157 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.14.1/helm-v3.14.1-linux-riscv64.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2024-02-14T20:54:49Z" + download_count: 0 + id: 151582158 + label: null + name: helm-v3.14.1-linux-riscv64.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4JCPXO + size: 833 + state: uploaded + updated_at: "2024-02-14T20:54:50Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/151582158 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.14.1/helm-v3.14.1-linux-s390x.tar.gz.asc + content_type: application/octet-stream + created_at: "2024-02-14T20:54:50Z" + download_count: 0 + id: 151582159 + label: null + name: helm-v3.14.1-linux-s390x.tar.gz.asc + node_id: RA_kwDOApspmc4JCPXP + size: 833 + state: uploaded + updated_at: "2024-02-14T20:54:50Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/151582159 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.14.1/helm-v3.14.1-linux-s390x.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2024-02-14T20:54:50Z" + download_count: 0 + id: 151582163 + label: null + name: helm-v3.14.1-linux-s390x.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4JCPXT + size: 833 + state: uploaded + updated_at: "2024-02-14T20:54:50Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/151582163 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.14.1/helm-v3.14.1-linux-s390x.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2024-02-14T20:54:50Z" + download_count: 0 + id: 151582165 + label: null + name: helm-v3.14.1-linux-s390x.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4JCPXV + size: 833 + state: uploaded + updated_at: "2024-02-14T20:54:50Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/151582165 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.14.1/helm-v3.14.1-windows-amd64.zip.asc + content_type: application/octet-stream + created_at: "2024-02-14T20:54:50Z" + download_count: 0 + id: 151582169 + label: null + name: helm-v3.14.1-windows-amd64.zip.asc + node_id: RA_kwDOApspmc4JCPXZ + size: 833 + state: uploaded + updated_at: "2024-02-14T20:54:51Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/151582169 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.14.1/helm-v3.14.1-windows-amd64.zip.sha256.asc + content_type: application/octet-stream + created_at: "2024-02-14T20:54:51Z" + download_count: 0 + id: 151582170 + label: null + name: helm-v3.14.1-windows-amd64.zip.sha256.asc + node_id: RA_kwDOApspmc4JCPXa + size: 833 + state: uploaded + updated_at: "2024-02-14T20:54:51Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/151582170 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.14.1/helm-v3.14.1-windows-amd64.zip.sha256sum.asc + content_type: application/octet-stream + created_at: "2024-02-14T20:54:51Z" + download_count: 0 + id: 151582173 + label: null + name: helm-v3.14.1-windows-amd64.zip.sha256sum.asc + node_id: RA_kwDOApspmc4JCPXd + size: 833 + state: uploaded + updated_at: "2024-02-14T20:54:51Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/151582173 + assets_url: https://api.github.com/repos/helm/helm/releases/142052331/assets + author: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + body: "Helm v3.14.1 is a security (patch) release. Users are strongly recommended + to update to this release.\r\n\r\nA Helm contributor discovered a path + traversal vulnerability when Helm saves a chart including at download + time.\r\n\r\n[Dominykas Blyžė](https://github.com/dominykas) with [Nearform + Ltd.](https://www.nearform.com/) discovered the vulnerability.\r\n\r\n## + Installation and Upgrading\r\n\r\nDownload Helm v3.14.1. The common platform + binaries are here:\r\n\r\n- [MacOS amd64](https://get.helm.sh/helm-v3.14.1-darwin-amd64.tar.gz) + ([checksum](https://get.helm.sh/helm-v3.14.1-darwin-amd64.tar.gz.sha256sum) + / 67928236b37c4e780b9fb5e614fb3b9aece90d60f0b1b4cb7406ee292c2dae3b)\r\n- + [MacOS arm64](https://get.helm.sh/helm-v3.14.1-darwin-arm64.tar.gz) ([checksum](https://get.helm.sh/helm-v3.14.1-darwin-arm64.tar.gz.sha256sum) + / 96468f927cc6efb4a2b92fd9419f40ed21d634af2f3e84fb8efa59526c7a003b)\r\n- + [Linux amd64](https://get.helm.sh/helm-v3.14.1-linux-amd64.tar.gz) ([checksum](https://get.helm.sh/helm-v3.14.1-linux-amd64.tar.gz.sha256sum) + / 75496ea824f92305ff7d28af37f4af57536bf5138399c824dff997b9d239dd42)\r\n- + [Linux arm](https://get.helm.sh/helm-v3.14.1-linux-arm.tar.gz) ([checksum](https://get.helm.sh/helm-v3.14.1-linux-arm.tar.gz.sha256sum) + / f50c00c262b74435530e677bcec07637aaeda1ed92ef809b49581a4e6182cbbe)\r\n- + [Linux arm64](https://get.helm.sh/helm-v3.14.1-linux-arm64.tar.gz) ([checksum](https://get.helm.sh/helm-v3.14.1-linux-arm64.tar.gz.sha256sum) + / f865b8ad4228fd0990bbc5b50615eb6cb9eb31c9a9ca7238401ed897bbbe9033)\r\n- + [Linux i386](https://get.helm.sh/helm-v3.14.1-linux-386.tar.gz) ([checksum](https://get.helm.sh/helm-v3.14.1-linux-386.tar.gz.sha256sum) + / 3c94ed0601e0e62c195a7e9b75262b18128c8284662aa0e080bb548dc6d47bcd)\r\n- + [Linux ppc64le](https://get.helm.sh/helm-v3.14.1-linux-ppc64le.tar.gz) + ([checksum](https://get.helm.sh/helm-v3.14.1-linux-ppc64le.tar.gz.sha256sum) + / 4d853ab8fe3462287c7272fbadd5f73531ecdd6fa0db37d31630e41ae1ae21de)\r\n- + [Linux s390x](https://get.helm.sh/helm-v3.14.1-linux-s390x.tar.gz) ([checksum](https://get.helm.sh/helm-v3.14.1-linux-s390x.tar.gz.sha256sum) + / 19bf07999c7244bfeb0fd27152919b9faa1148cf43910edbb98efa9150058a98)\r\n- + [Linux riscv64](https://get.helm.sh/helm-v3.14.1-linux-riscv64.tar.gz) + ([checksum](https://get.helm.sh/helm-v3.14.1-linux-riscv64.tar.gz.sha256sum) + / 2660bd8eb37aafc071599b788a24bfe244e5d3ffa42da1599da5a5041dafa214)\r\n- + [Windows amd64](https://get.helm.sh/helm-v3.14.1-windows-amd64.zip) ([checksum](https://get.helm.sh/helm-v3.14.1-windows-amd64.zip.sha256sum) + / 8a6c78a23a4e497ad8bd288138588adb3e5b49be8dbe82a3200fe7b297dac184)\r\n\r\nThis + release was signed with `672C 657B E06B 4B30 969C 4A57 4614 49C2 5E36 + B98E ` and can be found at @mattfarina [keybase account](https://keybase.io/mattfarina). + Please use the attached signatures for verifying this release using `gpg`.\r\n\r\nThe + [Quickstart Guide](https://helm.sh/docs/intro/quickstart/) will get you + going from there. For **upgrade instructions** or detailed installation + notes, check the [install guide](https://helm.sh/docs/intro/install/). + You can also use a [script to install](https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3) + on any system with `bash`.\r\n\r\n## What's Next\r\n\r\n- 3.14.2 will + contain only bug fixes and be released on March 13, 2024.\r\n- 3.15.0 + is the next feature release and will be on May 08, 2024." + created_at: "2024-02-14T20:23:48Z" + draft: false + html_url: https://github.com/helm/helm/releases/tag/v3.14.1 + id: 142052331 + mentions_count: 1 + name: Helm v3.14.1 + node_id: RE_kwDOApspmc4Id4vr + prerelease: false + published_at: "2024-02-14T20:55:13Z" + tag_name: v3.14.1 + tarball_url: https://api.github.com/repos/helm/helm/tarball/v3.14.1 + target_commitish: release-3.14 + upload_url: https://uploads.github.com/repos/helm/helm/releases/142052331/assets{?name,label} + url: https://api.github.com/repos/helm/helm/releases/142052331 + zipball_url: https://api.github.com/repos/helm/helm/zipball/v3.14.1 + 3.14.2: + githubRelease: + assets: + - browser_download_url: https://github.com/helm/helm/releases/download/v3.14.2/helm-v3.14.2-darwin-amd64.tar.gz.asc + content_type: application/octet-stream + created_at: "2024-02-21T20:39:20Z" + download_count: 1 + id: 152846207 + label: null + name: helm-v3.14.2-darwin-amd64.tar.gz.asc + node_id: RA_kwDOApspmc4JHD9_ + size: 833 + state: uploaded + updated_at: "2024-02-21T20:39:21Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/152846207 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.14.2/helm-v3.14.2-darwin-amd64.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2024-02-21T20:39:21Z" + download_count: 1 + id: 152846210 + label: null + name: helm-v3.14.2-darwin-amd64.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4JHD-C + size: 833 + state: uploaded + updated_at: "2024-02-21T20:39:21Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/152846210 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.14.2/helm-v3.14.2-darwin-amd64.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2024-02-21T20:39:21Z" + download_count: 1 + id: 152846211 + label: null + name: helm-v3.14.2-darwin-amd64.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4JHD-D + size: 833 + state: uploaded + updated_at: "2024-02-21T20:39:22Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/152846211 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.14.2/helm-v3.14.2-darwin-arm64.tar.gz.asc + content_type: application/octet-stream + created_at: "2024-02-21T20:39:22Z" + download_count: 1 + id: 152846212 + label: null + name: helm-v3.14.2-darwin-arm64.tar.gz.asc + node_id: RA_kwDOApspmc4JHD-E + size: 833 + state: uploaded + updated_at: "2024-02-21T20:39:22Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/152846212 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.14.2/helm-v3.14.2-darwin-arm64.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2024-02-21T20:39:22Z" + download_count: 1 + id: 152846213 + label: null + name: helm-v3.14.2-darwin-arm64.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4JHD-F + size: 833 + state: uploaded + updated_at: "2024-02-21T20:39:22Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/152846213 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.14.2/helm-v3.14.2-darwin-arm64.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2024-02-21T20:39:22Z" + download_count: 1 + id: 152846214 + label: null + name: helm-v3.14.2-darwin-arm64.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4JHD-G + size: 833 + state: uploaded + updated_at: "2024-02-21T20:39:22Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/152846214 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.14.2/helm-v3.14.2-linux-386.tar.gz.asc + content_type: application/octet-stream + created_at: "2024-02-21T20:39:22Z" + download_count: 1 + id: 152846217 + label: null + name: helm-v3.14.2-linux-386.tar.gz.asc + node_id: RA_kwDOApspmc4JHD-J + size: 833 + state: uploaded + updated_at: "2024-02-21T20:39:23Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/152846217 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.14.2/helm-v3.14.2-linux-386.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2024-02-21T20:39:23Z" + download_count: 1 + id: 152846218 + label: null + name: helm-v3.14.2-linux-386.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4JHD-K + size: 833 + state: uploaded + updated_at: "2024-02-21T20:39:23Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/152846218 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.14.2/helm-v3.14.2-linux-386.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2024-02-21T20:39:23Z" + download_count: 1 + id: 152846219 + label: null + name: helm-v3.14.2-linux-386.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4JHD-L + size: 833 + state: uploaded + updated_at: "2024-02-21T20:39:23Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/152846219 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.14.2/helm-v3.14.2-linux-amd64.tar.gz.asc + content_type: application/octet-stream + created_at: "2024-02-21T20:39:23Z" + download_count: 9 + id: 152846221 + label: null + name: helm-v3.14.2-linux-amd64.tar.gz.asc + node_id: RA_kwDOApspmc4JHD-N + size: 833 + state: uploaded + updated_at: "2024-02-21T20:39:23Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/152846221 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.14.2/helm-v3.14.2-linux-amd64.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2024-02-21T20:39:23Z" + download_count: 8 + id: 152846224 + label: null + name: helm-v3.14.2-linux-amd64.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4JHD-Q + size: 833 + state: uploaded + updated_at: "2024-02-21T20:39:24Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/152846224 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.14.2/helm-v3.14.2-linux-amd64.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2024-02-21T20:39:24Z" + download_count: 1 + id: 152846225 + label: null + name: helm-v3.14.2-linux-amd64.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4JHD-R + size: 833 + state: uploaded + updated_at: "2024-02-21T20:39:24Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/152846225 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.14.2/helm-v3.14.2-linux-arm.tar.gz.asc + content_type: application/octet-stream + created_at: "2024-02-21T20:39:24Z" + download_count: 1 + id: 152846229 + label: null + name: helm-v3.14.2-linux-arm.tar.gz.asc + node_id: RA_kwDOApspmc4JHD-V + size: 833 + state: uploaded + updated_at: "2024-02-21T20:39:24Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/152846229 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.14.2/helm-v3.14.2-linux-arm.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2024-02-21T20:39:24Z" + download_count: 1 + id: 152846230 + label: null + name: helm-v3.14.2-linux-arm.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4JHD-W + size: 833 + state: uploaded + updated_at: "2024-02-21T20:39:24Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/152846230 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.14.2/helm-v3.14.2-linux-arm.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2024-02-21T20:39:24Z" + download_count: 1 + id: 152846231 + label: null + name: helm-v3.14.2-linux-arm.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4JHD-X + size: 833 + state: uploaded + updated_at: "2024-02-21T20:39:24Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/152846231 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.14.2/helm-v3.14.2-linux-arm64.tar.gz.asc + content_type: application/octet-stream + created_at: "2024-02-21T20:39:24Z" + download_count: 1 + id: 152846232 + label: null + name: helm-v3.14.2-linux-arm64.tar.gz.asc + node_id: RA_kwDOApspmc4JHD-Y + size: 833 + state: uploaded + updated_at: "2024-02-21T20:39:25Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/152846232 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.14.2/helm-v3.14.2-linux-arm64.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2024-02-21T20:39:25Z" + download_count: 1 + id: 152846233 + label: null + name: helm-v3.14.2-linux-arm64.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4JHD-Z + size: 833 + state: uploaded + updated_at: "2024-02-21T20:39:25Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/152846233 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.14.2/helm-v3.14.2-linux-arm64.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2024-02-21T20:39:25Z" + download_count: 1 + id: 152846235 + label: null + name: helm-v3.14.2-linux-arm64.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4JHD-b + size: 833 + state: uploaded + updated_at: "2024-02-21T20:39:25Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/152846235 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.14.2/helm-v3.14.2-linux-ppc64le.tar.gz.asc + content_type: application/octet-stream + created_at: "2024-02-21T20:39:25Z" + download_count: 1 + id: 152846236 + label: null + name: helm-v3.14.2-linux-ppc64le.tar.gz.asc + node_id: RA_kwDOApspmc4JHD-c + size: 833 + state: uploaded + updated_at: "2024-02-21T20:39:25Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/152846236 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.14.2/helm-v3.14.2-linux-ppc64le.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2024-02-21T20:39:25Z" + download_count: 1 + id: 152846237 + label: null + name: helm-v3.14.2-linux-ppc64le.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4JHD-d + size: 833 + state: uploaded + updated_at: "2024-02-21T20:39:26Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/152846237 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.14.2/helm-v3.14.2-linux-ppc64le.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2024-02-21T20:39:26Z" + download_count: 1 + id: 152846238 + label: null + name: helm-v3.14.2-linux-ppc64le.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4JHD-e + size: 833 + state: uploaded + updated_at: "2024-02-21T20:39:26Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/152846238 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.14.2/helm-v3.14.2-linux-riscv64.tar.gz.asc + content_type: application/octet-stream + created_at: "2024-02-21T20:39:26Z" + download_count: 1 + id: 152846239 + label: null + name: helm-v3.14.2-linux-riscv64.tar.gz.asc + node_id: RA_kwDOApspmc4JHD-f + size: 833 + state: uploaded + updated_at: "2024-02-21T20:39:26Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/152846239 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.14.2/helm-v3.14.2-linux-riscv64.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2024-02-21T20:39:26Z" + download_count: 1 + id: 152846240 + label: null + name: helm-v3.14.2-linux-riscv64.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4JHD-g + size: 833 + state: uploaded + updated_at: "2024-02-21T20:39:26Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/152846240 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.14.2/helm-v3.14.2-linux-riscv64.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2024-02-21T20:39:26Z" + download_count: 1 + id: 152846241 + label: null + name: helm-v3.14.2-linux-riscv64.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4JHD-h + size: 833 + state: uploaded + updated_at: "2024-02-21T20:39:27Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/152846241 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.14.2/helm-v3.14.2-linux-s390x.tar.gz.asc + content_type: application/octet-stream + created_at: "2024-02-21T20:39:27Z" + download_count: 1 + id: 152846242 + label: null + name: helm-v3.14.2-linux-s390x.tar.gz.asc + node_id: RA_kwDOApspmc4JHD-i + size: 833 + state: uploaded + updated_at: "2024-02-21T20:39:27Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/152846242 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.14.2/helm-v3.14.2-linux-s390x.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2024-02-21T20:39:27Z" + download_count: 1 + id: 152846243 + label: null + name: helm-v3.14.2-linux-s390x.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4JHD-j + size: 833 + state: uploaded + updated_at: "2024-02-21T20:39:27Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/152846243 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.14.2/helm-v3.14.2-linux-s390x.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2024-02-21T20:39:27Z" + download_count: 1 + id: 152846245 + label: null + name: helm-v3.14.2-linux-s390x.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4JHD-l + size: 833 + state: uploaded + updated_at: "2024-02-21T20:39:27Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/152846245 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.14.2/helm-v3.14.2-windows-amd64.zip.asc + content_type: application/octet-stream + created_at: "2024-02-21T20:39:27Z" + download_count: 1 + id: 152846246 + label: null + name: helm-v3.14.2-windows-amd64.zip.asc + node_id: RA_kwDOApspmc4JHD-m + size: 833 + state: uploaded + updated_at: "2024-02-21T20:39:27Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/152846246 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.14.2/helm-v3.14.2-windows-amd64.zip.sha256.asc + content_type: application/octet-stream + created_at: "2024-02-21T20:39:27Z" + download_count: 1 + id: 152846247 + label: null + name: helm-v3.14.2-windows-amd64.zip.sha256.asc + node_id: RA_kwDOApspmc4JHD-n + size: 833 + state: uploaded + updated_at: "2024-02-21T20:39:28Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/152846247 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.14.2/helm-v3.14.2-windows-amd64.zip.sha256sum.asc + content_type: application/octet-stream + created_at: "2024-02-21T20:39:28Z" + download_count: 1 + id: 152846249 + label: null + name: helm-v3.14.2-windows-amd64.zip.sha256sum.asc + node_id: RA_kwDOApspmc4JHD-p + size: 833 + state: uploaded + updated_at: "2024-02-21T20:39:28Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/152846249 + assets_url: https://api.github.com/repos/helm/helm/releases/143056916/assets + author: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + body: "Helm v3.14.2 is a security (patch) release. Users are strongly recommended + to update to this release.\r\n\r\nA Helm contributor discovered uninitialized + variable vulnerability when Helm parses index and plugin yaml files missing + expected content.\r\n\r\nJakub Ciolek with AlphaSense discovered the vulnerability.\r\n\r\n## + Installation and Upgrading\r\n\r\nDownload Helm v3.14.2. The common platform + binaries are here:\r\n\r\n- [MacOS amd64](https://get.helm.sh/helm-v3.14.2-darwin-amd64.tar.gz) + ([checksum](https://get.helm.sh/helm-v3.14.2-darwin-amd64.tar.gz.sha256sum) + / 64c633ae194bde77b7e7b7936a2814a7417817dc8b7bb7d270bd24a7a17b8d12)\r\n- + [MacOS arm64](https://get.helm.sh/helm-v3.14.2-darwin-arm64.tar.gz) ([checksum](https://get.helm.sh/helm-v3.14.2-darwin-arm64.tar.gz.sha256sum) + / ff502fd39b06497fa3d5a51ec2ced02b9fcfdb0e9a948d315fb1b2f13ddc39fb)\r\n- + [Linux amd64](https://get.helm.sh/helm-v3.14.2-linux-amd64.tar.gz) ([checksum](https://get.helm.sh/helm-v3.14.2-linux-amd64.tar.gz.sha256sum) + / 0885a501d586c1e949e9b113bf3fb3290b0bbf74db9444a1d8c2723a143006a5)\r\n- + [Linux arm](https://get.helm.sh/helm-v3.14.2-linux-arm.tar.gz) ([checksum](https://get.helm.sh/helm-v3.14.2-linux-arm.tar.gz.sha256sum) + / b70fb6fa2cdf0a5c782320c9d7e7b155fcaec260169218c98316bb3cf0d431d9)\r\n- + [Linux arm64](https://get.helm.sh/helm-v3.14.2-linux-arm64.tar.gz) ([checksum](https://get.helm.sh/helm-v3.14.2-linux-arm64.tar.gz.sha256sum) + / c65d6a9557bb359abc2c0d26670de850b52327dc3976ad6f9e14c298ea3e1b61)\r\n- + [Linux i386](https://get.helm.sh/helm-v3.14.2-linux-386.tar.gz) ([checksum](https://get.helm.sh/helm-v3.14.2-linux-386.tar.gz.sha256sum) + / 0e08cd56cc952ab4646c57c5ec7cde2412c39373aec3df659a14597dd9874461)\r\n- + [Linux ppc64le](https://get.helm.sh/helm-v3.14.2-linux-ppc64le.tar.gz) + ([checksum](https://get.helm.sh/helm-v3.14.2-linux-ppc64le.tar.gz.sha256sum) + / f3bc8582ff151e619cd285d9cdf9fef1c5733ee5522d8bed2ef680ef07f87223)\r\n- + [Linux s390x](https://get.helm.sh/helm-v3.14.2-linux-s390x.tar.gz) ([checksum](https://get.helm.sh/helm-v3.14.2-linux-s390x.tar.gz.sha256sum) + / 7bda34aa26638e5116b31385f3b781172572175bf4c1ae00c87d8b154458ed94)\r\n- + [Linux riscv64](https://get.helm.sh/helm-v3.14.2-linux-riscv64.tar.gz) + ([checksum](https://get.helm.sh/helm-v3.14.2-linux-riscv64.tar.gz.sha256sum) + / f6278facd3e2e6af52a5f6d038f2149428d115ba2b4523edbe5889d1170e9203)\r\n- + [Windows amd64](https://get.helm.sh/helm-v3.14.2-windows-amd64.zip) ([checksum](https://get.helm.sh/helm-v3.14.2-windows-amd64.zip.sha256sum) + / aa094e435da74ad574f96924c37ecd0c75f0be707ac604ef97ed6021d6bc0784)\r\n\r\nThis + release was signed with `672C 657B E06B 4B30 969C 4A57 4614 49C2 5E36 + B98E ` and can be found at @mattfarina [keybase account](https://keybase.io/mattfarina). + Please use the attached signatures for verifying this release using `gpg`.\r\n\r\nThe + [Quickstart Guide](https://helm.sh/docs/intro/quickstart/) will get you + going from there. For **upgrade instructions** or detailed installation + notes, check the [install guide](https://helm.sh/docs/intro/install/). + You can also use a [script to install](https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3) + on any system with `bash`.\r\n\r\n## What's Next\r\n\r\n- 3.14.3 will + contain only bug fixes and be released on March 13, 2024.\r\n- 3.15.0 + is the next feature release and will be on May 08, 2024.\r\n" + created_at: "2024-02-21T20:21:56Z" + draft: false + html_url: https://github.com/helm/helm/releases/tag/v3.14.2 + id: 143056916 + mentions_count: 1 + name: Helm v3.14.2 + node_id: RE_kwDOApspmc4IhuAU + prerelease: false + published_at: "2024-02-21T20:39:45Z" + tag_name: v3.14.2 + tarball_url: https://api.github.com/repos/helm/helm/tarball/v3.14.2 + target_commitish: release-3.14 + upload_url: https://uploads.github.com/repos/helm/helm/releases/143056916/assets{?name,label} + url: https://api.github.com/repos/helm/helm/releases/143056916 + zipball_url: https://api.github.com/repos/helm/helm/zipball/v3.14.2 + 3.14.3: + githubRelease: + assets: + - browser_download_url: https://github.com/helm/helm/releases/download/v3.14.3/helm-v3.14.3-darwin-amd64.tar.gz.asc + content_type: application/octet-stream + created_at: "2024-03-13T19:47:39Z" + download_count: 0 + id: 156529193 + label: null + name: helm-v3.14.3-darwin-amd64.tar.gz.asc + node_id: RA_kwDOApspmc4JVHIp + size: 833 + state: uploaded + updated_at: "2024-03-13T19:47:40Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/156529193 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.14.3/helm-v3.14.3-darwin-amd64.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2024-03-13T19:47:40Z" + download_count: 0 + id: 156529197 + label: null + name: helm-v3.14.3-darwin-amd64.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4JVHIt + size: 833 + state: uploaded + updated_at: "2024-03-13T19:47:40Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/156529197 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.14.3/helm-v3.14.3-darwin-amd64.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2024-03-13T19:47:40Z" + download_count: 0 + id: 156529198 + label: null + name: helm-v3.14.3-darwin-amd64.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4JVHIu + size: 833 + state: uploaded + updated_at: "2024-03-13T19:47:40Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/156529198 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.14.3/helm-v3.14.3-darwin-arm64.tar.gz.asc + content_type: application/octet-stream + created_at: "2024-03-13T19:47:40Z" + download_count: 0 + id: 156529202 + label: null + name: helm-v3.14.3-darwin-arm64.tar.gz.asc + node_id: RA_kwDOApspmc4JVHIy + size: 833 + state: uploaded + updated_at: "2024-03-13T19:47:41Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/156529202 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.14.3/helm-v3.14.3-darwin-arm64.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2024-03-13T19:47:41Z" + download_count: 0 + id: 156529203 + label: null + name: helm-v3.14.3-darwin-arm64.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4JVHIz + size: 833 + state: uploaded + updated_at: "2024-03-13T19:47:41Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/156529203 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.14.3/helm-v3.14.3-darwin-arm64.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2024-03-13T19:47:41Z" + download_count: 0 + id: 156529205 + label: null + name: helm-v3.14.3-darwin-arm64.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4JVHI1 + size: 833 + state: uploaded + updated_at: "2024-03-13T19:47:41Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/156529205 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.14.3/helm-v3.14.3-linux-386.tar.gz.asc + content_type: application/octet-stream + created_at: "2024-03-13T19:47:41Z" + download_count: 0 + id: 156529206 + label: null + name: helm-v3.14.3-linux-386.tar.gz.asc + node_id: RA_kwDOApspmc4JVHI2 + size: 833 + state: uploaded + updated_at: "2024-03-13T19:47:41Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/156529206 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.14.3/helm-v3.14.3-linux-386.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2024-03-13T19:47:41Z" + download_count: 0 + id: 156529208 + label: null + name: helm-v3.14.3-linux-386.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4JVHI4 + size: 833 + state: uploaded + updated_at: "2024-03-13T19:47:41Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/156529208 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.14.3/helm-v3.14.3-linux-386.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2024-03-13T19:47:41Z" + download_count: 0 + id: 156529211 + label: null + name: helm-v3.14.3-linux-386.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4JVHI7 + size: 833 + state: uploaded + updated_at: "2024-03-13T19:47:42Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/156529211 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.14.3/helm-v3.14.3-linux-amd64.tar.gz.asc + content_type: application/octet-stream + created_at: "2024-03-13T19:47:42Z" + download_count: 8 + id: 156529212 + label: null + name: helm-v3.14.3-linux-amd64.tar.gz.asc + node_id: RA_kwDOApspmc4JVHI8 + size: 833 + state: uploaded + updated_at: "2024-03-13T19:47:42Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/156529212 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.14.3/helm-v3.14.3-linux-amd64.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2024-03-13T19:47:42Z" + download_count: 6 + id: 156529215 + label: null + name: helm-v3.14.3-linux-amd64.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4JVHI_ + size: 833 + state: uploaded + updated_at: "2024-03-13T19:47:42Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/156529215 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.14.3/helm-v3.14.3-linux-amd64.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2024-03-13T19:47:42Z" + download_count: 0 + id: 156529217 + label: null + name: helm-v3.14.3-linux-amd64.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4JVHJB + size: 833 + state: uploaded + updated_at: "2024-03-13T19:47:42Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/156529217 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.14.3/helm-v3.14.3-linux-arm.tar.gz.asc + content_type: application/octet-stream + created_at: "2024-03-13T19:47:42Z" + download_count: 0 + id: 156529220 + label: null + name: helm-v3.14.3-linux-arm.tar.gz.asc + node_id: RA_kwDOApspmc4JVHJE + size: 833 + state: uploaded + updated_at: "2024-03-13T19:47:43Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/156529220 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.14.3/helm-v3.14.3-linux-arm.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2024-03-13T19:47:43Z" + download_count: 0 + id: 156529221 + label: null + name: helm-v3.14.3-linux-arm.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4JVHJF + size: 833 + state: uploaded + updated_at: "2024-03-13T19:47:43Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/156529221 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.14.3/helm-v3.14.3-linux-arm.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2024-03-13T19:47:43Z" + download_count: 0 + id: 156529222 + label: null + name: helm-v3.14.3-linux-arm.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4JVHJG + size: 833 + state: uploaded + updated_at: "2024-03-13T19:47:43Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/156529222 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.14.3/helm-v3.14.3-linux-arm64.tar.gz.asc + content_type: application/octet-stream + created_at: "2024-03-13T19:47:43Z" + download_count: 4 + id: 156529225 + label: null + name: helm-v3.14.3-linux-arm64.tar.gz.asc + node_id: RA_kwDOApspmc4JVHJJ + size: 833 + state: uploaded + updated_at: "2024-03-13T19:47:43Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/156529225 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.14.3/helm-v3.14.3-linux-arm64.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2024-03-13T19:47:43Z" + download_count: 4 + id: 156529226 + label: null + name: helm-v3.14.3-linux-arm64.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4JVHJK + size: 833 + state: uploaded + updated_at: "2024-03-13T19:47:44Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/156529226 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.14.3/helm-v3.14.3-linux-arm64.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2024-03-13T19:47:44Z" + download_count: 0 + id: 156529229 + label: null + name: helm-v3.14.3-linux-arm64.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4JVHJN + size: 833 + state: uploaded + updated_at: "2024-03-13T19:47:44Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/156529229 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.14.3/helm-v3.14.3-linux-ppc64le.tar.gz.asc + content_type: application/octet-stream + created_at: "2024-03-13T19:47:44Z" + download_count: 0 + id: 156529231 + label: null + name: helm-v3.14.3-linux-ppc64le.tar.gz.asc + node_id: RA_kwDOApspmc4JVHJP + size: 833 + state: uploaded + updated_at: "2024-03-13T19:47:44Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/156529231 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.14.3/helm-v3.14.3-linux-ppc64le.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2024-03-13T19:47:44Z" + download_count: 0 + id: 156529232 + label: null + name: helm-v3.14.3-linux-ppc64le.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4JVHJQ + size: 833 + state: uploaded + updated_at: "2024-03-13T19:47:44Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/156529232 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.14.3/helm-v3.14.3-linux-ppc64le.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2024-03-13T19:47:44Z" + download_count: 0 + id: 156529233 + label: null + name: helm-v3.14.3-linux-ppc64le.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4JVHJR + size: 833 + state: uploaded + updated_at: "2024-03-13T19:47:44Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/156529233 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.14.3/helm-v3.14.3-linux-riscv64.tar.gz.asc + content_type: application/octet-stream + created_at: "2024-03-13T19:47:44Z" + download_count: 0 + id: 156529234 + label: null + name: helm-v3.14.3-linux-riscv64.tar.gz.asc + node_id: RA_kwDOApspmc4JVHJS + size: 833 + state: uploaded + updated_at: "2024-03-13T19:47:45Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/156529234 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.14.3/helm-v3.14.3-linux-riscv64.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2024-03-13T19:47:45Z" + download_count: 0 + id: 156529236 + label: null + name: helm-v3.14.3-linux-riscv64.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4JVHJU + size: 833 + state: uploaded + updated_at: "2024-03-13T19:47:45Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/156529236 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.14.3/helm-v3.14.3-linux-riscv64.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2024-03-13T19:47:45Z" + download_count: 0 + id: 156529238 + label: null + name: helm-v3.14.3-linux-riscv64.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4JVHJW + size: 833 + state: uploaded + updated_at: "2024-03-13T19:47:45Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/156529238 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.14.3/helm-v3.14.3-linux-s390x.tar.gz.asc + content_type: application/octet-stream + created_at: "2024-03-13T19:47:45Z" + download_count: 0 + id: 156529239 + label: null + name: helm-v3.14.3-linux-s390x.tar.gz.asc + node_id: RA_kwDOApspmc4JVHJX + size: 833 + state: uploaded + updated_at: "2024-03-13T19:47:45Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/156529239 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.14.3/helm-v3.14.3-linux-s390x.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2024-03-13T19:47:45Z" + download_count: 0 + id: 156529241 + label: null + name: helm-v3.14.3-linux-s390x.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4JVHJZ + size: 833 + state: uploaded + updated_at: "2024-03-13T19:47:46Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/156529241 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.14.3/helm-v3.14.3-linux-s390x.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2024-03-13T19:47:46Z" + download_count: 0 + id: 156529243 + label: null + name: helm-v3.14.3-linux-s390x.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4JVHJb + size: 833 + state: uploaded + updated_at: "2024-03-13T19:47:46Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/156529243 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.14.3/helm-v3.14.3-windows-amd64.zip.asc + content_type: application/octet-stream + created_at: "2024-03-13T19:47:46Z" + download_count: 0 + id: 156529248 + label: null + name: helm-v3.14.3-windows-amd64.zip.asc + node_id: RA_kwDOApspmc4JVHJg + size: 833 + state: uploaded + updated_at: "2024-03-13T19:47:46Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/156529248 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.14.3/helm-v3.14.3-windows-amd64.zip.sha256.asc + content_type: application/octet-stream + created_at: "2024-03-13T19:47:46Z" + download_count: 0 + id: 156529255 + label: null + name: helm-v3.14.3-windows-amd64.zip.sha256.asc + node_id: RA_kwDOApspmc4JVHJn + size: 833 + state: uploaded + updated_at: "2024-03-13T19:47:46Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/156529255 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.14.3/helm-v3.14.3-windows-amd64.zip.sha256sum.asc + content_type: application/octet-stream + created_at: "2024-03-13T19:47:46Z" + download_count: 0 + id: 156529256 + label: null + name: helm-v3.14.3-windows-amd64.zip.sha256sum.asc + node_id: RA_kwDOApspmc4JVHJo + size: 833 + state: uploaded + updated_at: "2024-03-13T19:47:46Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/156529256 + assets_url: https://api.github.com/repos/helm/helm/releases/146410782/assets + author: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + body: "Helm v3.14.3 is a patch release. Users are encouraged to upgrade + for the best experience. Users are encouraged to upgrade for the best + experience.\r\n\r\nThe community keeps growing, and we'd love to see you + there!\r\n\r\n- Join the discussion in [Kubernetes Slack](https://kubernetes.slack.com):\r\n + \ - for questions and just to hang out\r\n - for discussing PRs, code, + and bugs\r\n- Hang out at the Public Developer Call: Thursday, 9:30 Pacific + via [Zoom](https://zoom.us/j/696660622)\r\n- Test, debug, and contribute + charts: [ArtifactHub/packages](https://artifacthub.io/packages/search?kind=0)\r\n\r\n## + Installation and Upgrading\r\n\r\nDownload Helm v3.14.3. The common platform + binaries are here:\r\n\r\n- [MacOS amd64](https://get.helm.sh/helm-v3.14.3-darwin-amd64.tar.gz) + ([checksum](https://get.helm.sh/helm-v3.14.3-darwin-amd64.tar.gz.sha256sum) + / 4d5d01a94c7d6b07e71690dc1988bf3229680284c87f4242d28c6f1cc99653be)\r\n- + [MacOS arm64](https://get.helm.sh/helm-v3.14.3-darwin-arm64.tar.gz) ([checksum](https://get.helm.sh/helm-v3.14.3-darwin-arm64.tar.gz.sha256sum) + / dff794152b62b7c1a9ff615d510f8657bcd7a3727c668e0d9d4955f70d5f7573)\r\n- + [Linux amd64](https://get.helm.sh/helm-v3.14.3-linux-amd64.tar.gz) ([checksum](https://get.helm.sh/helm-v3.14.3-linux-amd64.tar.gz.sha256sum) + / 3c90f24e180f8c207b8a18e5ec82cb0fa49858a7a0a86e4ed52a98398681e00b)\r\n- + [Linux arm](https://get.helm.sh/helm-v3.14.3-linux-arm.tar.gz) ([checksum](https://get.helm.sh/helm-v3.14.3-linux-arm.tar.gz.sha256sum) + / d4ff88f02d6731ec5dbde86a67bf391e673d0d9e87901727fbf62372aff106ec)\r\n- + [Linux arm64](https://get.helm.sh/helm-v3.14.3-linux-arm64.tar.gz) ([checksum](https://get.helm.sh/helm-v3.14.3-linux-arm64.tar.gz.sha256sum) + / 85e1573e76fa60af14ba7e9ec75db2129b6884203be866893fa0b3f7e41ccd5e)\r\n- + [Linux i386](https://get.helm.sh/helm-v3.14.3-linux-386.tar.gz) ([checksum](https://get.helm.sh/helm-v3.14.3-linux-386.tar.gz.sha256sum) + / af89e5df5cd21efe4dcaa478b19aaf17d22820716f93c1f098b00f1b7cfe1905)\r\n- + [Linux ppc64le](https://get.helm.sh/helm-v3.14.3-linux-ppc64le.tar.gz) + ([checksum](https://get.helm.sh/helm-v3.14.3-linux-ppc64le.tar.gz.sha256sum) + / aab121ca470e2a502cda849a9b3e92eeb9a32e213b0f0a79a95a04e375d26ce7)\r\n- + [Linux s390x](https://get.helm.sh/helm-v3.14.3-linux-s390x.tar.gz) ([checksum](https://get.helm.sh/helm-v3.14.3-linux-s390x.tar.gz.sha256sum) + / d64fa8aced3244b549377741dc4e2db8109e5270c0723c11b547a9da5f99ad43)\r\n- + [Linux riscv64](https://get.helm.sh/helm-v3.14.3-linux-riscv64.tar.gz) + ([checksum](https://get.helm.sh/helm-v3.14.3-linux-riscv64.tar.gz.sha256sum) + / f9f4e68bf43632f5df29e6c9fa760813d7e3537ed91d838cfdc2f103f8442b33)\r\n- + [Windows amd64](https://get.helm.sh/helm-v3.14.3-windows-amd64.zip) ([checksum](https://get.helm.sh/helm-v3.14.3-windows-amd64.zip.sha256sum) + / 369c6db1c114ef2a00793e9a587db6d7b2c72a23e37fd905c8deb78e9a8f7af6)\r\n\r\nThis + release was signed with `672C 657B E06B 4B30 969C 4A57 4614 49C2 5E36 + B98E ` and can be found at @mattfarina [keybase account](https://keybase.io/mattfarina). + Please use the attached signatures for verifying this release using `gpg`.\r\n\r\nThe + [Quickstart Guide](https://helm.sh/docs/intro/quickstart/) will get you + going from there. For **upgrade instructions** or detailed installation + notes, check the [install guide](https://helm.sh/docs/intro/install/). + You can also use a [script to install](https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3) + on any system with `bash`.\r\n\r\n## What's Next\r\n\r\n- 3.14.4 will + contain only bug fixes and be released on April 10, 2024.\r\n- 3.15.0 + is the next feature release and will be on May 08, 2024.\r\n\r\n## Changelog\r\n\r\n- + Add a note about --dry-run displaying secrets f03cc04caaa8f6d7c3e67cf918929150cf6f3f12 + (Matt Farina)\r\n- add error messages 1a7330fe3802beeb3f897a1c701d8a4b9c1316c5 + (George Jenkins)\r\n- Fix: Ignore alias validation error for index load + d6acc0027dca47dec40ccdd66febd0c8bcf4813f (George Jenkins)\r\n- chore(deps): + bump github.com/containerd/containerd from 1.7.11 to 1.7.12 b2738fb782d149ffa4748cb0ee78d674986d04b0 + (dependabot[bot])\r\n- chore(deps): bump github.com/DATA-DOG/go-sqlmock + from 1.5.0 to 1.5.2 5b0847e0e763e98bcbf8a12e8f9c5f7c11d123a1 (dependabot[bot])\r\n- + Update architecture detection method 7e18c39f0753c73e4660f3796f01f5b33f2552b5 + (weidongkl)\r\n" + created_at: "2024-03-13T18:56:24Z" + draft: false + html_url: https://github.com/helm/helm/releases/tag/v3.14.3 + id: 146410782 + mentions_count: 1 + name: Helm v3.14.3 + node_id: RE_kwDOApspmc4Iug0e + prerelease: false + published_at: "2024-03-13T19:48:08Z" + tag_name: v3.14.3 + tarball_url: https://api.github.com/repos/helm/helm/tarball/v3.14.3 + target_commitish: release-3.14 + upload_url: https://uploads.github.com/repos/helm/helm/releases/146410782/assets{?name,label} + url: https://api.github.com/repos/helm/helm/releases/146410782 + zipball_url: https://api.github.com/repos/helm/helm/zipball/v3.14.3 + 3.14.4: + githubRelease: + assets: + - browser_download_url: https://github.com/helm/helm/releases/download/v3.14.4/helm-v3.14.4-darwin-amd64.tar.gz.asc + content_type: application/octet-stream + created_at: "2024-04-10T20:44:51Z" + download_count: 0 + id: 161399236 + label: null + name: helm-v3.14.4-darwin-amd64.tar.gz.asc + node_id: RA_kwDOApspmc4JnsHE + size: 833 + state: uploaded + updated_at: "2024-04-10T20:44:53Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/161399236 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.14.4/helm-v3.14.4-darwin-amd64.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2024-04-10T20:44:53Z" + download_count: 0 + id: 161399246 + label: null + name: helm-v3.14.4-darwin-amd64.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4JnsHO + size: 833 + state: uploaded + updated_at: "2024-04-10T20:44:53Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/161399246 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.14.4/helm-v3.14.4-darwin-amd64.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2024-04-10T20:44:53Z" + download_count: 0 + id: 161399253 + label: null + name: helm-v3.14.4-darwin-amd64.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4JnsHV + size: 833 + state: uploaded + updated_at: "2024-04-10T20:44:54Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/161399253 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.14.4/helm-v3.14.4-darwin-arm64.tar.gz.asc + content_type: application/octet-stream + created_at: "2024-04-10T20:44:54Z" + download_count: 0 + id: 161399257 + label: null + name: helm-v3.14.4-darwin-arm64.tar.gz.asc + node_id: RA_kwDOApspmc4JnsHZ + size: 833 + state: uploaded + updated_at: "2024-04-10T20:44:55Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/161399257 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.14.4/helm-v3.14.4-darwin-arm64.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2024-04-10T20:44:55Z" + download_count: 0 + id: 161399258 + label: null + name: helm-v3.14.4-darwin-arm64.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4JnsHa + size: 833 + state: uploaded + updated_at: "2024-04-10T20:44:55Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/161399258 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.14.4/helm-v3.14.4-darwin-arm64.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2024-04-10T20:44:55Z" + download_count: 0 + id: 161399260 + label: null + name: helm-v3.14.4-darwin-arm64.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4JnsHc + size: 833 + state: uploaded + updated_at: "2024-04-10T20:44:56Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/161399260 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.14.4/helm-v3.14.4-linux-386.tar.gz.asc + content_type: application/octet-stream + created_at: "2024-04-10T20:44:56Z" + download_count: 0 + id: 161399261 + label: null + name: helm-v3.14.4-linux-386.tar.gz.asc + node_id: RA_kwDOApspmc4JnsHd + size: 833 + state: uploaded + updated_at: "2024-04-10T20:44:56Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/161399261 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.14.4/helm-v3.14.4-linux-386.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2024-04-10T20:44:56Z" + download_count: 0 + id: 161399262 + label: null + name: helm-v3.14.4-linux-386.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4JnsHe + size: 833 + state: uploaded + updated_at: "2024-04-10T20:44:57Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/161399262 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.14.4/helm-v3.14.4-linux-386.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2024-04-10T20:44:57Z" + download_count: 0 + id: 161399263 + label: null + name: helm-v3.14.4-linux-386.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4JnsHf + size: 833 + state: uploaded + updated_at: "2024-04-10T20:44:58Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/161399263 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.14.4/helm-v3.14.4-linux-amd64.tar.gz.asc + content_type: application/octet-stream + created_at: "2024-04-10T20:44:58Z" + download_count: 8 + id: 161399264 + label: null + name: helm-v3.14.4-linux-amd64.tar.gz.asc + node_id: RA_kwDOApspmc4JnsHg + size: 833 + state: uploaded + updated_at: "2024-04-10T20:44:58Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/161399264 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.14.4/helm-v3.14.4-linux-amd64.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2024-04-10T20:44:58Z" + download_count: 8 + id: 161399265 + label: null + name: helm-v3.14.4-linux-amd64.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4JnsHh + size: 833 + state: uploaded + updated_at: "2024-04-10T20:44:59Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/161399265 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.14.4/helm-v3.14.4-linux-amd64.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2024-04-10T20:44:59Z" + download_count: 0 + id: 161399268 + label: null + name: helm-v3.14.4-linux-amd64.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4JnsHk + size: 833 + state: uploaded + updated_at: "2024-04-10T20:45:00Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/161399268 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.14.4/helm-v3.14.4-linux-arm.tar.gz.asc + content_type: application/octet-stream + created_at: "2024-04-10T20:45:00Z" + download_count: 0 + id: 161399269 + label: null + name: helm-v3.14.4-linux-arm.tar.gz.asc + node_id: RA_kwDOApspmc4JnsHl + size: 833 + state: uploaded + updated_at: "2024-04-10T20:45:00Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/161399269 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.14.4/helm-v3.14.4-linux-arm.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2024-04-10T20:45:00Z" + download_count: 0 + id: 161399270 + label: null + name: helm-v3.14.4-linux-arm.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4JnsHm + size: 833 + state: uploaded + updated_at: "2024-04-10T20:45:01Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/161399270 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.14.4/helm-v3.14.4-linux-arm.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2024-04-10T20:45:01Z" + download_count: 0 + id: 161399271 + label: null + name: helm-v3.14.4-linux-arm.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4JnsHn + size: 833 + state: uploaded + updated_at: "2024-04-10T20:45:01Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/161399271 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.14.4/helm-v3.14.4-linux-arm64.tar.gz.asc + content_type: application/octet-stream + created_at: "2024-04-10T20:45:01Z" + download_count: 0 + id: 161399272 + label: null + name: helm-v3.14.4-linux-arm64.tar.gz.asc + node_id: RA_kwDOApspmc4JnsHo + size: 833 + state: uploaded + updated_at: "2024-04-10T20:45:02Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/161399272 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.14.4/helm-v3.14.4-linux-arm64.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2024-04-10T20:45:02Z" + download_count: 0 + id: 161399274 + label: null + name: helm-v3.14.4-linux-arm64.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4JnsHq + size: 833 + state: uploaded + updated_at: "2024-04-10T20:45:03Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/161399274 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.14.4/helm-v3.14.4-linux-arm64.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2024-04-10T20:45:03Z" + download_count: 0 + id: 161399275 + label: null + name: helm-v3.14.4-linux-arm64.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4JnsHr + size: 833 + state: uploaded + updated_at: "2024-04-10T20:45:03Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/161399275 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.14.4/helm-v3.14.4-linux-ppc64le.tar.gz.asc + content_type: application/octet-stream + created_at: "2024-04-10T20:45:03Z" + download_count: 0 + id: 161399276 + label: null + name: helm-v3.14.4-linux-ppc64le.tar.gz.asc + node_id: RA_kwDOApspmc4JnsHs + size: 833 + state: uploaded + updated_at: "2024-04-10T20:45:04Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/161399276 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.14.4/helm-v3.14.4-linux-ppc64le.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2024-04-10T20:45:04Z" + download_count: 0 + id: 161399280 + label: null + name: helm-v3.14.4-linux-ppc64le.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4JnsHw + size: 833 + state: uploaded + updated_at: "2024-04-10T20:45:04Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/161399280 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.14.4/helm-v3.14.4-linux-ppc64le.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2024-04-10T20:45:05Z" + download_count: 0 + id: 161399281 + label: null + name: helm-v3.14.4-linux-ppc64le.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4JnsHx + size: 833 + state: uploaded + updated_at: "2024-04-10T20:45:05Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/161399281 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.14.4/helm-v3.14.4-linux-riscv64.tar.gz.asc + content_type: application/octet-stream + created_at: "2024-04-10T20:45:05Z" + download_count: 0 + id: 161399282 + label: null + name: helm-v3.14.4-linux-riscv64.tar.gz.asc + node_id: RA_kwDOApspmc4JnsHy + size: 833 + state: uploaded + updated_at: "2024-04-10T20:45:06Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/161399282 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.14.4/helm-v3.14.4-linux-riscv64.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2024-04-10T20:45:06Z" + download_count: 0 + id: 161399283 + label: null + name: helm-v3.14.4-linux-riscv64.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4JnsHz + size: 833 + state: uploaded + updated_at: "2024-04-10T20:45:06Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/161399283 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.14.4/helm-v3.14.4-linux-riscv64.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2024-04-10T20:45:06Z" + download_count: 0 + id: 161399285 + label: null + name: helm-v3.14.4-linux-riscv64.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4JnsH1 + size: 833 + state: uploaded + updated_at: "2024-04-10T20:45:07Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/161399285 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.14.4/helm-v3.14.4-linux-s390x.tar.gz.asc + content_type: application/octet-stream + created_at: "2024-04-10T20:45:07Z" + download_count: 0 + id: 161399288 + label: null + name: helm-v3.14.4-linux-s390x.tar.gz.asc + node_id: RA_kwDOApspmc4JnsH4 + size: 833 + state: uploaded + updated_at: "2024-04-10T20:45:08Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/161399288 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.14.4/helm-v3.14.4-linux-s390x.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2024-04-10T20:45:08Z" + download_count: 0 + id: 161399291 + label: null + name: helm-v3.14.4-linux-s390x.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4JnsH7 + size: 833 + state: uploaded + updated_at: "2024-04-10T20:45:08Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/161399291 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.14.4/helm-v3.14.4-linux-s390x.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2024-04-10T20:45:08Z" + download_count: 0 + id: 161399293 + label: null + name: helm-v3.14.4-linux-s390x.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4JnsH9 + size: 833 + state: uploaded + updated_at: "2024-04-10T20:45:09Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/161399293 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.14.4/helm-v3.14.4-windows-amd64.zip.asc + content_type: application/octet-stream + created_at: "2024-04-10T20:45:09Z" + download_count: 0 + id: 161399295 + label: null + name: helm-v3.14.4-windows-amd64.zip.asc + node_id: RA_kwDOApspmc4JnsH_ + size: 833 + state: uploaded + updated_at: "2024-04-10T20:45:10Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/161399295 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.14.4/helm-v3.14.4-windows-amd64.zip.sha256.asc + content_type: application/octet-stream + created_at: "2024-04-10T20:45:10Z" + download_count: 0 + id: 161399298 + label: null + name: helm-v3.14.4-windows-amd64.zip.sha256.asc + node_id: RA_kwDOApspmc4JnsIC + size: 833 + state: uploaded + updated_at: "2024-04-10T20:45:10Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/161399298 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.14.4/helm-v3.14.4-windows-amd64.zip.sha256sum.asc + content_type: application/octet-stream + created_at: "2024-04-10T20:45:10Z" + download_count: 0 + id: 161399299 + label: null + name: helm-v3.14.4-windows-amd64.zip.sha256sum.asc + node_id: RA_kwDOApspmc4JnsID + size: 833 + state: uploaded + updated_at: "2024-04-10T20:45:11Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/161399299 + assets_url: https://api.github.com/repos/helm/helm/releases/150650182/assets + author: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + body: "Helm v3.14.4 is a patch release. Users are encouraged to upgrade + for the best experience. Users are encouraged to upgrade for the best + experience.\r\n\r\nThe community keeps growing, and we'd love to see you + there!\r\n\r\n- Join the discussion in [Kubernetes Slack](https://kubernetes.slack.com):\r\n + \ - for questions and just to hang out\r\n - for discussing PRs, code, + and bugs\r\n- Hang out at the Public Developer Call: Thursday, 9:30 Pacific + via [Zoom](https://zoom.us/j/696660622)\r\n- Test, debug, and contribute + charts: [ArtifactHub/packages](https://artifacthub.io/packages/search?kind=0)\r\n\r\n## + Installation and Upgrading\r\n\r\nDownload Helm v3.14.4. The common platform + binaries are here:\r\n\r\n- [MacOS amd64](https://get.helm.sh/helm-v3.14.4-darwin-amd64.tar.gz) + ([checksum](https://get.helm.sh/helm-v3.14.4-darwin-amd64.tar.gz.sha256sum) + / 73434aeac36ad068ce2e5582b8851a286dc628eae16494a26e2ad0b24a7199f9)\r\n- + [MacOS arm64](https://get.helm.sh/helm-v3.14.4-darwin-arm64.tar.gz) ([checksum](https://get.helm.sh/helm-v3.14.4-darwin-arm64.tar.gz.sha256sum) + / 61e9c5455f06b2ad0a1280975bf65892e707adc19d766b0cf4e9006e3b7b4b6c)\r\n- + [Linux amd64](https://get.helm.sh/helm-v3.14.4-linux-amd64.tar.gz) ([checksum](https://get.helm.sh/helm-v3.14.4-linux-amd64.tar.gz.sha256sum) + / a5844ef2c38ef6ddf3b5a8f7d91e7e0e8ebc39a38bb3fc8013d629c1ef29c259)\r\n- + [Linux arm](https://get.helm.sh/helm-v3.14.4-linux-arm.tar.gz) ([checksum](https://get.helm.sh/helm-v3.14.4-linux-arm.tar.gz.sha256sum) + / 962297c944c06e1f275111a6e3d80e37c9e9e8fed967d4abec8efcf7fc9fb260)\r\n- + [Linux arm64](https://get.helm.sh/helm-v3.14.4-linux-arm64.tar.gz) ([checksum](https://get.helm.sh/helm-v3.14.4-linux-arm64.tar.gz.sha256sum) + / 113ccc53b7c57c2aba0cd0aa560b5500841b18b5210d78641acfddc53dac8ab2)\r\n- + [Linux i386](https://get.helm.sh/helm-v3.14.4-linux-386.tar.gz) ([checksum](https://get.helm.sh/helm-v3.14.4-linux-386.tar.gz.sha256sum) + / 2cb3ff032be1c39b7199b324d58d0ae05bc4fe49b9be6aa2fcbeb3fc03f1f9e7)\r\n- + [Linux ppc64le](https://get.helm.sh/helm-v3.14.4-linux-ppc64le.tar.gz) + ([checksum](https://get.helm.sh/helm-v3.14.4-linux-ppc64le.tar.gz.sha256sum) + / d0d625b43f6650ad376428520b2238baa2400bfedb43b2e0f24ad7247f0f59b5)\r\n- + [Linux s390x](https://get.helm.sh/helm-v3.14.4-linux-s390x.tar.gz) ([checksum](https://get.helm.sh/helm-v3.14.4-linux-s390x.tar.gz.sha256sum) + / a5750d0cb1ba34ce84ab3be6382a14617130661d15dd2aa1b36630b293437936)\r\n- + [Linux riscv64](https://get.helm.sh/helm-v3.14.4-linux-riscv64.tar.gz) + ([checksum](https://get.helm.sh/helm-v3.14.4-linux-riscv64.tar.gz.sha256sum) + / 925782b159392d52df5ebab88e04e695217325894c6a32a9a779e865b7e32411)\r\n- + [Windows amd64](https://get.helm.sh/helm-v3.14.4-windows-amd64.zip) ([checksum](https://get.helm.sh/helm-v3.14.4-windows-amd64.zip.sha256sum) + / 0b951db3eadd92dfe336b5a9ddb0640e5cd70d39abdbd7d3125e9fb59b22b669)\r\n\r\nThis + release was signed with `672C 657B E06B 4B30 969C 4A57 4614 49C2 5E36 + B98E ` and can be found at @mattfarina [keybase account](https://keybase.io/mattfarina). + Please use the attached signatures for verifying this release using `gpg`.\r\n\r\nThe + [Quickstart Guide](https://helm.sh/docs/intro/quickstart/) will get you + going from there. For **upgrade instructions** or detailed installation + notes, check the [install guide](https://helm.sh/docs/intro/install/). + You can also use a [script to install](https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3) + on any system with `bash`.\r\n\r\n## What's Next\r\n\r\n- 3.15.0 is the + next feature release and will be on May 08, 2024.\r\n\r\n## Changelog\r\n\r\n- + refactor: create a helper for checking if a release is uninstalled 81c902a123462fd4052bc5e9aa9c513c4c8fc142 + (Alex Petrov)\r\n- fix: reinstall previously uninstalled chart with --keep-history + 5a11c768386dab08ff026fb1001e592ab0a033f8 (Alex Petrov)\r\n- chore: remove + repetitive words fb3d8805f017d898f9e88667829c21874a8f6166 (deterclosed)\r\n- + chore(deps): bump google.golang.org/protobuf from 1.31.0 to 1.33.0 01ac4a2c36d49e691982f85f4243fe449876fb5d + (dependabot[bot])\r\n- chore(deps): bump github.com/docker/docker 138602da27a6ba67564d298e7b07f5624a341b88 + (dependabot[bot])\r\n- bug: add proxy support for oci getter aa7d95333d5fbc1ea9ed20cc56f011c068e004be + (Ricardo Maraschini)\r\n" + created_at: "2024-04-10T20:05:36Z" + draft: false + html_url: https://github.com/helm/helm/releases/tag/v3.14.4 + id: 150650182 + mentions_count: 1 + name: Helm v3.14.4 + node_id: RE_kwDOApspmc4I-r1G + prerelease: false + published_at: "2024-04-10T20:45:47Z" + tag_name: v3.14.4 + tarball_url: https://api.github.com/repos/helm/helm/tarball/v3.14.4 + target_commitish: release-3.14 + upload_url: https://uploads.github.com/repos/helm/helm/releases/150650182/assets{?name,label} + url: https://api.github.com/repos/helm/helm/releases/150650182 + zipball_url: https://api.github.com/repos/helm/helm/zipball/v3.14.4 + 3.15.0: + githubRelease: + assets: + - browser_download_url: https://github.com/helm/helm/releases/download/v3.15.0/helm-v3.15.0-darwin-amd64.tar.gz.asc + content_type: text/plain + created_at: "2024-05-15T20:56:11Z" + download_count: 0 + id: 168136394 + label: null + name: helm-v3.15.0-darwin-amd64.tar.gz.asc + node_id: RA_kwDOApspmc4KBY7K + size: 833 + state: uploaded + updated_at: "2024-05-15T20:56:12Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/168136394 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.15.0/helm-v3.15.0-darwin-amd64.tar.gz.sha256.asc + content_type: text/plain + created_at: "2024-05-15T20:56:11Z" + download_count: 0 + id: 168136391 + label: null + name: helm-v3.15.0-darwin-amd64.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4KBY7H + size: 833 + state: uploaded + updated_at: "2024-05-15T20:56:11Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/168136391 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.15.0/helm-v3.15.0-darwin-amd64.tar.gz.sha256sum.asc + content_type: text/plain + created_at: "2024-05-15T20:56:11Z" + download_count: 0 + id: 168136387 + label: null + name: helm-v3.15.0-darwin-amd64.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4KBY7D + size: 833 + state: uploaded + updated_at: "2024-05-15T20:56:11Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/168136387 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.15.0/helm-v3.15.0-darwin-arm64.tar.gz.asc + content_type: text/plain + created_at: "2024-05-15T20:56:11Z" + download_count: 0 + id: 168136384 + label: null + name: helm-v3.15.0-darwin-arm64.tar.gz.asc + node_id: RA_kwDOApspmc4KBY7A + size: 833 + state: uploaded + updated_at: "2024-05-15T20:56:11Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/168136384 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.15.0/helm-v3.15.0-darwin-arm64.tar.gz.sha256.asc + content_type: text/plain + created_at: "2024-05-15T20:56:11Z" + download_count: 0 + id: 168136381 + label: null + name: helm-v3.15.0-darwin-arm64.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4KBY69 + size: 833 + state: uploaded + updated_at: "2024-05-15T20:56:11Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/168136381 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.15.0/helm-v3.15.0-darwin-arm64.tar.gz.sha256sum.asc + content_type: text/plain + created_at: "2024-05-15T20:56:10Z" + download_count: 0 + id: 168136379 + label: null + name: helm-v3.15.0-darwin-arm64.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4KBY67 + size: 833 + state: uploaded + updated_at: "2024-05-15T20:56:10Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/168136379 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.15.0/helm-v3.15.0-linux-386.tar.gz.asc + content_type: text/plain + created_at: "2024-05-15T20:56:10Z" + download_count: 0 + id: 168136375 + label: null + name: helm-v3.15.0-linux-386.tar.gz.asc + node_id: RA_kwDOApspmc4KBY63 + size: 833 + state: uploaded + updated_at: "2024-05-15T20:56:10Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/168136375 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.15.0/helm-v3.15.0-linux-386.tar.gz.sha256.asc + content_type: text/plain + created_at: "2024-05-15T20:56:10Z" + download_count: 0 + id: 168136371 + label: null + name: helm-v3.15.0-linux-386.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4KBY6z + size: 833 + state: uploaded + updated_at: "2024-05-15T20:56:10Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/168136371 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.15.0/helm-v3.15.0-linux-386.tar.gz.sha256sum.asc + content_type: text/plain + created_at: "2024-05-15T20:56:10Z" + download_count: 0 + id: 168136367 + label: null + name: helm-v3.15.0-linux-386.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4KBY6v + size: 833 + state: uploaded + updated_at: "2024-05-15T20:56:10Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/168136367 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.15.0/helm-v3.15.0-linux-amd64.tar.gz.asc + content_type: text/plain + created_at: "2024-05-15T20:56:09Z" + download_count: 0 + id: 168136364 + label: null + name: helm-v3.15.0-linux-amd64.tar.gz.asc + node_id: RA_kwDOApspmc4KBY6s + size: 833 + state: uploaded + updated_at: "2024-05-15T20:56:10Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/168136364 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.15.0/helm-v3.15.0-linux-amd64.tar.gz.sha256.asc + content_type: text/plain + created_at: "2024-05-15T20:56:09Z" + download_count: 0 + id: 168136360 + label: null + name: helm-v3.15.0-linux-amd64.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4KBY6o + size: 833 + state: uploaded + updated_at: "2024-05-15T20:56:09Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/168136360 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.15.0/helm-v3.15.0-linux-amd64.tar.gz.sha256sum.asc + content_type: text/plain + created_at: "2024-05-15T20:56:09Z" + download_count: 0 + id: 168136357 + label: null + name: helm-v3.15.0-linux-amd64.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4KBY6l + size: 833 + state: uploaded + updated_at: "2024-05-15T20:56:09Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/168136357 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.15.0/helm-v3.15.0-linux-arm.tar.gz.asc + content_type: text/plain + created_at: "2024-05-15T20:56:08Z" + download_count: 0 + id: 168136345 + label: null + name: helm-v3.15.0-linux-arm.tar.gz.asc + node_id: RA_kwDOApspmc4KBY6Z + size: 833 + state: uploaded + updated_at: "2024-05-15T20:56:08Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/168136345 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.15.0/helm-v3.15.0-linux-arm.tar.gz.sha256.asc + content_type: text/plain + created_at: "2024-05-15T20:56:08Z" + download_count: 0 + id: 168136341 + label: null + name: helm-v3.15.0-linux-arm.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4KBY6V + size: 833 + state: uploaded + updated_at: "2024-05-15T20:56:08Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/168136341 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.15.0/helm-v3.15.0-linux-arm.tar.gz.sha256sum.asc + content_type: text/plain + created_at: "2024-05-15T20:56:08Z" + download_count: 0 + id: 168136337 + label: null + name: helm-v3.15.0-linux-arm.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4KBY6R + size: 833 + state: uploaded + updated_at: "2024-05-15T20:56:08Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/168136337 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.15.0/helm-v3.15.0-linux-arm64.tar.gz.asc + content_type: text/plain + created_at: "2024-05-15T20:56:09Z" + download_count: 0 + id: 168136354 + label: null + name: helm-v3.15.0-linux-arm64.tar.gz.asc + node_id: RA_kwDOApspmc4KBY6i + size: 833 + state: uploaded + updated_at: "2024-05-15T20:56:09Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/168136354 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.15.0/helm-v3.15.0-linux-arm64.tar.gz.sha256.asc + content_type: text/plain + created_at: "2024-05-15T20:56:09Z" + download_count: 0 + id: 168136350 + label: null + name: helm-v3.15.0-linux-arm64.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4KBY6e + size: 833 + state: uploaded + updated_at: "2024-05-15T20:56:09Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/168136350 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.15.0/helm-v3.15.0-linux-arm64.tar.gz.sha256sum.asc + content_type: text/plain + created_at: "2024-05-15T20:56:08Z" + download_count: 0 + id: 168136348 + label: null + name: helm-v3.15.0-linux-arm64.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4KBY6c + size: 833 + state: uploaded + updated_at: "2024-05-15T20:56:09Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/168136348 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.15.0/helm-v3.15.0-linux-ppc64le.tar.gz.asc + content_type: text/plain + created_at: "2024-05-15T20:56:07Z" + download_count: 0 + id: 168136335 + label: null + name: helm-v3.15.0-linux-ppc64le.tar.gz.asc + node_id: RA_kwDOApspmc4KBY6P + size: 833 + state: uploaded + updated_at: "2024-05-15T20:56:08Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/168136335 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.15.0/helm-v3.15.0-linux-ppc64le.tar.gz.sha256.asc + content_type: text/plain + created_at: "2024-05-15T20:56:07Z" + download_count: 0 + id: 168136332 + label: null + name: helm-v3.15.0-linux-ppc64le.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4KBY6M + size: 833 + state: uploaded + updated_at: "2024-05-15T20:56:07Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/168136332 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.15.0/helm-v3.15.0-linux-ppc64le.tar.gz.sha256sum.asc + content_type: text/plain + created_at: "2024-05-15T20:56:07Z" + download_count: 0 + id: 168136329 + label: null + name: helm-v3.15.0-linux-ppc64le.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4KBY6J + size: 833 + state: uploaded + updated_at: "2024-05-15T20:56:07Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/168136329 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.15.0/helm-v3.15.0-linux-riscv64.tar.gz.asc + content_type: text/plain + created_at: "2024-05-15T20:56:07Z" + download_count: 0 + id: 168136327 + label: null + name: helm-v3.15.0-linux-riscv64.tar.gz.asc + node_id: RA_kwDOApspmc4KBY6H + size: 833 + state: uploaded + updated_at: "2024-05-15T20:56:07Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/168136327 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.15.0/helm-v3.15.0-linux-riscv64.tar.gz.sha256.asc + content_type: text/plain + created_at: "2024-05-15T20:56:06Z" + download_count: 0 + id: 168136323 + label: null + name: helm-v3.15.0-linux-riscv64.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4KBY6D + size: 833 + state: uploaded + updated_at: "2024-05-15T20:56:07Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/168136323 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.15.0/helm-v3.15.0-linux-riscv64.tar.gz.sha256sum.asc + content_type: text/plain + created_at: "2024-05-15T20:56:06Z" + download_count: 0 + id: 168136320 + label: null + name: helm-v3.15.0-linux-riscv64.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4KBY6A + size: 833 + state: uploaded + updated_at: "2024-05-15T20:56:07Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/168136320 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.15.0/helm-v3.15.0-linux-s390x.tar.gz.asc + content_type: text/plain + created_at: "2024-05-15T20:56:06Z" + download_count: 0 + id: 168136317 + label: null + name: helm-v3.15.0-linux-s390x.tar.gz.asc + node_id: RA_kwDOApspmc4KBY59 + size: 833 + state: uploaded + updated_at: "2024-05-15T20:56:06Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/168136317 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.15.0/helm-v3.15.0-linux-s390x.tar.gz.sha256.asc + content_type: text/plain + created_at: "2024-05-15T20:56:06Z" + download_count: 0 + id: 168136314 + label: null + name: helm-v3.15.0-linux-s390x.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4KBY56 + size: 833 + state: uploaded + updated_at: "2024-05-15T20:56:06Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/168136314 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.15.0/helm-v3.15.0-linux-s390x.tar.gz.sha256sum.asc + content_type: text/plain + created_at: "2024-05-15T20:56:06Z" + download_count: 0 + id: 168136311 + label: null + name: helm-v3.15.0-linux-s390x.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4KBY53 + size: 833 + state: uploaded + updated_at: "2024-05-15T20:56:06Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/168136311 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.15.0/helm-v3.15.0-windows-amd64.zip.asc + content_type: text/plain + created_at: "2024-05-15T20:56:05Z" + download_count: 0 + id: 168136308 + label: null + name: helm-v3.15.0-windows-amd64.zip.asc + node_id: RA_kwDOApspmc4KBY50 + size: 833 + state: uploaded + updated_at: "2024-05-15T20:56:06Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/168136308 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.15.0/helm-v3.15.0-windows-amd64.zip.sha256.asc + content_type: text/plain + created_at: "2024-05-15T20:56:05Z" + download_count: 0 + id: 168136305 + label: null + name: helm-v3.15.0-windows-amd64.zip.sha256.asc + node_id: RA_kwDOApspmc4KBY5x + size: 833 + state: uploaded + updated_at: "2024-05-15T20:56:05Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/168136305 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.15.0/helm-v3.15.0-windows-amd64.zip.sha256sum.asc + content_type: text/plain + created_at: "2024-05-15T20:56:04Z" + download_count: 0 + id: 168136297 + label: null + name: helm-v3.15.0-windows-amd64.zip.sha256sum.asc + node_id: RA_kwDOApspmc4KBY5p + size: 833 + state: uploaded + updated_at: "2024-05-15T20:56:05Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/168136297 + assets_url: https://api.github.com/repos/helm/helm/releases/155962807/assets + author: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + body: "Helm v3.15.0 is a feature release. This release, we focused on . Users are encouraged to upgrade for the best experience.\r\n\r\nThe + community keeps growing, and we'd love to see you there!\r\n\r\n- Join + the discussion in [Kubernetes Slack](https://kubernetes.slack.com):\r\n + \ - for questions and just to hang out\r\n - for discussing PRs, code, + and bugs\r\n- Hang out at the Public Developer Call: Thursday, 9:30 Pacific + via [Zoom](https://zoom.us/j/696660622)\r\n- Test, debug, and contribute + charts: [ArtifactHub/packages](https://artifacthub.io/packages/search?kind=0)\r\n\r\n## + Notable Changes\r\n\r\n- Opt-in to hiding secrets when running dry-run + for install and upgrade\r\n- Added robustness to wait checks\r\n\r\n## + Installation and Upgrading\r\n\r\nDownload Helm v3.15.0. The common platform + binaries are here:\r\n\r\n- [MacOS amd64](https://get.helm.sh/helm-v3.15.0-darwin-amd64.tar.gz) + ([checksum](https://get.helm.sh/helm-v3.15.0-darwin-amd64.tar.gz.sha256sum) + / ccaee03af72e5dc168ae9b9e3267e2b461b0ebb7a77849048f4567286158777d)\r\n- + [MacOS arm64](https://get.helm.sh/helm-v3.15.0-darwin-arm64.tar.gz) ([checksum](https://get.helm.sh/helm-v3.15.0-darwin-arm64.tar.gz.sha256sum) + / 020df10fd29b0791f39aa5719d2926a995f78c1a2a7487923ca26485a0565909)\r\n- + [Linux amd64](https://get.helm.sh/helm-v3.15.0-linux-amd64.tar.gz) ([checksum](https://get.helm.sh/helm-v3.15.0-linux-amd64.tar.gz.sha256sum) + / a74747ac40777b86d3ff6f1be201504bba65ca46cd68b5fe25d3c394d0dcf745)\r\n- + [Linux arm](https://get.helm.sh/helm-v3.15.0-linux-arm.tar.gz) ([checksum](https://get.helm.sh/helm-v3.15.0-linux-arm.tar.gz.sha256sum) + / 614d53ab1192667facce7e8d4e884ff067e5684199a7e5223e8808abc43e927f)\r\n- + [Linux arm64](https://get.helm.sh/helm-v3.15.0-linux-arm64.tar.gz) ([checksum](https://get.helm.sh/helm-v3.15.0-linux-arm64.tar.gz.sha256sum) + / c3b0281fca4c030548211dd6e9b032ee0a9fc53eab614f6acbaff631682ce808)\r\n- + [Linux i386](https://get.helm.sh/helm-v3.15.0-linux-386.tar.gz) ([checksum](https://get.helm.sh/helm-v3.15.0-linux-386.tar.gz.sha256sum) + / 8a267c7527e3c13602feea7432209c8931f6eecd4bff5ded398d70791c74a5b7)\r\n- + [Linux ppc64le](https://get.helm.sh/helm-v3.15.0-linux-ppc64le.tar.gz) + ([checksum](https://get.helm.sh/helm-v3.15.0-linux-ppc64le.tar.gz.sha256sum) + / bcec19cdad95cae99edce046ccd8090f275e63381ccb6accb4304819fc26e004)\r\n- + [Linux s390x](https://get.helm.sh/helm-v3.15.0-linux-s390x.tar.gz) ([checksum](https://get.helm.sh/helm-v3.15.0-linux-s390x.tar.gz.sha256sum) + / a3030533cceedaca4af8fb7661c7154c578ad770279bb6003e1ecd810c72077a)\r\n- + [Linux riscv64](https://get.helm.sh/helm-v3.15.0-linux-riscv64.tar.gz) + ([checksum](https://get.helm.sh/helm-v3.15.0-linux-riscv64.tar.gz.sha256sum) + / 468dc90d119b2faa91036747c559285a744ed7beb8b7d74b83878da6c13e0560)\r\n- + [Windows amd64](https://get.helm.sh/helm-v3.15.0-windows-amd64.zip) ([checksum](https://get.helm.sh/helm-v3.15.0-windows-amd64.zip.sha256sum) + / 23f0ee9fc93d325ddbc4dfdac97c83bc00c7784016541045756cf9abb36f21dc)\r\nThis + release was signed with `672C 657B E06B 4B30 969C 4A57 4614 49C2 5E36 + B98E ` and can be found at @mattfarina [keybase account](https://keybase.io/mattfarina). + Please use the attached signatures for verifying this release using `gpg`.\r\n\r\nThe + [Quickstart Guide](https://helm.sh/docs/intro/quickstart/) will get you + going from there. For **upgrade instructions** or detailed installation + notes, check the [install guide](https://helm.sh/docs/intro/install/). + You can also use a [script to install](https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3) + on any system with `bash`.\r\n\r\n## What's Next\r\n\r\n- 3.15.1 is the + next patch release and will be on June 12, 2024.\r\n- 3.16.0 is the next + feature release and will be on September 11, 2024.\r\n\r\n## Changelog\r\n\r\n- + Updating to k8s 1.30 c4e37b39dbb341cb3f716220df9f9d306d123a58 (Matt Farina)\r\n- + bump version to v3.15.0 d7afa3b6b432c09a02cd07342e908ba5bed34940 (Matt + Farina)\r\n- bump version to 774346777c5b311251d8252cd470d56bdd23a403 + (Matt Farina)\r\n- Fix namespace on kubeconfig error 214fb6eff393f1c17890d45e9eaee86f6b37ea17 + (Calvin Krist)\r\n- Update testdata PKI with keys that have validity until + 3393 (Fixes #12880) 1b75d48189c2484cb5904f7996933d8d85315adb (Dirk Müller)\r\n- + chore(deps): bump golang.org/x/net from 0.17.0 to 0.23.0 dac23c82ce3bc05b6e72a1571bea48e424494fb0 + (dependabot[bot])\r\n- chore(deps): bump github/codeql-action from 3.24.7 + to 3.24.10 167d57676d22ea10fa7869e6f85c6fe2e46b3292 (dependabot[bot])\r\n- + chore: remove repetitive words dd37787ffd25419cf5f76222e682fbba47d289eb + (deterclosed)\r\n- Modified how created annotation is populated based + on package creation time 0a69a0dea6b1dcebaaf5d5b67c9a56eade463a71 (Andrew + Block)\r\n- chore(deps): bump github.com/docker/docker aaaf1128d2dd2ce3e119472cae0bd9da3d62eb89 + (dependabot[bot])\r\n- chore(deps): bump google.golang.org/protobuf from + 1.31.0 to 1.33.0 7f53529a701830dd86d78e932e83e4f7a928e9df (dependabot[bot])\r\n- + Enabling hide secrets on install and upgrade dry run 25c473834e0cbb905fc8a524709fd4d5362dab11 + (Matt Farina)\r\n- chore(deps): bump github/codeql-action from 3.24.6 + to 3.24.7 ff94e9319104a58321444d7d4656917147058936 (dependabot[bot])\r\n- + Fixing all the linting errors d58d7b376265338e059ff11c71267b5a6cf504c3 + (Robert Sirchia)\r\n- Add a note about --dry-run displaying secrets a23dd9e3b756c12cfdaa1b2c3a023c92530c0d0a + (Matt Farina)\r\n- chore(deps): bump golang.org/x/term from 0.15.0 to + 0.18.0 275f2ab43b86072a601d036acc6d7eb2bb501b08 (dependabot[bot])\r\n- + Updating .gitignore 8b424baea1e40a352acf549395e6498e63ac0aa2 (Robert Sirchia)\r\n- + chore(deps): bump github/codeql-action from 3.24.5 to 3.24.6 e22d881495fcfee6b1c4afa1d12627f3e28b54e6 + (dependabot[bot])\r\n- chore(deps): bump github/codeql-action from 3.24.3 + to 3.24.5 4f200fa74f4b1bc8ad7261afb30ae7e2a8f0f546 (dependabot[bot])\r\n- + Some fixes 764557c470533fa57aad99f865c9ff75a64d4163 (Matt Farina)\r\n- + chore(deps): bump github/codeql-action from 3.23.1 to 3.24.3 5bc97b9c4eff3d2968d3c74c64b25052140558d6 + (dependabot[bot])\r\n- chore(deps): bump golangci/golangci-lint-action + from 3.7.0 to 4.0.0 e6db0ec933582a0de2f55f8f2f1ef693739eedc0 (dependabot[bot])\r\n- + add error messages 8d19bcb78aaeb489eba4ed1d68894e59c8f55876 (George Jenkins)\r\n- + Fix: Ignore alias validation error for index load 68294fdae0deba2464805067228790e025207ebd + (George Jenkins)\r\n- validation fix 8e6a5149d2e2e3beffa51d53048b2fed90d8c529 + (Matt Farina)\r\n- bug: add proxy support for oci getter 94c1deae6d5a43491c5a4e8444ecd8273a8122a1 + (Ricardo Maraschini)\r\n- chore(deps): bump actions/setup-go from 4.1.0 + to 5.0.0 cbab6d6227969435df516dcdfcc6d29808aff094 (dependabot[bot])\r\n- + chore(deps): bump github/codeql-action from 3.23.0 to 3.23.1 de332ae396e1414cdc6923456cbe8a4b3af74c4e + (dependabot[bot])\r\n- chore(deps): bump github.com/containerd/containerd + from 1.7.11 to 1.7.12 a2dd34b3f2fe4eb8350ba168fb0943cf4ac990f9 (dependabot[bot])\r\n- + Update architecture detection method 57a1bb80e5829f20125447b2734469d97858960c + (weidongkl)\r\n- chore(deps): bump github/codeql-action from 3.22.11 to + 3.23.0 8cab7c17f4163a5fc609f4a2f7fcdce796a4b870 (dependabot[bot])\r\n- + chore(deps): bump github.com/DATA-DOG/go-sqlmock from 1.5.0 to 1.5.2 5f9533fef733c514f24a6f33f130efa6ea775c58 + (dependabot[bot])\r\n- Improve release action 4790bb9bcc224abee8a41f0bd8cac5880f605877 + (George Jenkins)\r\n- chore(deps): bump actions/setup-go from 4.1.0 to + 5.0.0 f980ad319c12774787c89ffaaef0f7fea0633bb3 (dependabot[bot])\r\n- + Fix grammatical error c25736c894ed1058c75b68fca0094c8fd953e131 (Matt Carr)\r\n- + Updated for review comments d2cf8c66f1775783edbc150d1a509f58e769e75e (MichaelMorris)\r\n- + Add robustness to wait status checks fc74964f8a039ce209966b70fa7ba0fc7ea36a9e + (MichaelMorris)\r\n- refactor: create a helper for checking if a release + is uninstalled f908379f1f8e3d764b0a52dcba2d234490fc0ffc (Alex Petrov)\r\n- + fix: reinstall previously uninstalled chart with --keep-history 9e198fa89d3c798dec1012bb4dff7107e22700d7 + (Alex Petrov)\r\n" + created_at: "2024-05-15T20:22:33Z" + draft: false + html_url: https://github.com/helm/helm/releases/tag/v3.15.0 + id: 155962807 + mentions_count: 1 + name: Helm v3.15.0 + node_id: RE_kwDOApspmc4JS823 + prerelease: false + published_at: "2024-05-15T20:59:25Z" + tag_name: v3.15.0 + tarball_url: https://api.github.com/repos/helm/helm/tarball/v3.15.0 + target_commitish: release-3.15 + upload_url: https://uploads.github.com/repos/helm/helm/releases/155962807/assets{?name,label} + url: https://api.github.com/repos/helm/helm/releases/155962807 + zipball_url: https://api.github.com/repos/helm/helm/zipball/v3.15.0 + 3.15.1: + githubRelease: + assets: + - browser_download_url: https://github.com/helm/helm/releases/download/v3.15.1/helm-v3.15.1-darwin-amd64.tar.gz.asc + content_type: text/plain + created_at: "2024-05-23T15:59:10Z" + download_count: 0 + id: 169667038 + label: null + name: helm-v3.15.1-darwin-amd64.tar.gz.asc + node_id: RA_kwDOApspmc4KHOne + size: 833 + state: uploaded + updated_at: "2024-05-23T15:59:10Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/169667038 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.15.1/helm-v3.15.1-darwin-amd64.tar.gz.sha256.asc + content_type: text/plain + created_at: "2024-05-23T15:59:09Z" + download_count: 0 + id: 169667037 + label: null + name: helm-v3.15.1-darwin-amd64.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4KHOnd + size: 833 + state: uploaded + updated_at: "2024-05-23T15:59:10Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/169667037 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.15.1/helm-v3.15.1-darwin-amd64.tar.gz.sha256sum.asc + content_type: text/plain + created_at: "2024-05-23T15:59:09Z" + download_count: 0 + id: 169667036 + label: null + name: helm-v3.15.1-darwin-amd64.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4KHOnc + size: 833 + state: uploaded + updated_at: "2024-05-23T15:59:09Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/169667036 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.15.1/helm-v3.15.1-darwin-arm64.tar.gz.asc + content_type: text/plain + created_at: "2024-05-23T15:59:09Z" + download_count: 0 + id: 169667035 + label: null + name: helm-v3.15.1-darwin-arm64.tar.gz.asc + node_id: RA_kwDOApspmc4KHOnb + size: 833 + state: uploaded + updated_at: "2024-05-23T15:59:09Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/169667035 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.15.1/helm-v3.15.1-darwin-arm64.tar.gz.sha256.asc + content_type: text/plain + created_at: "2024-05-23T15:59:09Z" + download_count: 0 + id: 169667034 + label: null + name: helm-v3.15.1-darwin-arm64.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4KHOna + size: 833 + state: uploaded + updated_at: "2024-05-23T15:59:09Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/169667034 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.15.1/helm-v3.15.1-darwin-arm64.tar.gz.sha256sum.asc + content_type: text/plain + created_at: "2024-05-23T15:59:09Z" + download_count: 0 + id: 169667033 + label: null + name: helm-v3.15.1-darwin-arm64.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4KHOnZ + size: 833 + state: uploaded + updated_at: "2024-05-23T15:59:09Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/169667033 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.15.1/helm-v3.15.1-linux-386.tar.gz.asc + content_type: text/plain + created_at: "2024-05-23T15:59:08Z" + download_count: 0 + id: 169667032 + label: null + name: helm-v3.15.1-linux-386.tar.gz.asc + node_id: RA_kwDOApspmc4KHOnY + size: 833 + state: uploaded + updated_at: "2024-05-23T15:59:09Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/169667032 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.15.1/helm-v3.15.1-linux-386.tar.gz.sha256.asc + content_type: text/plain + created_at: "2024-05-23T15:59:08Z" + download_count: 0 + id: 169667031 + label: null + name: helm-v3.15.1-linux-386.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4KHOnX + size: 833 + state: uploaded + updated_at: "2024-05-23T15:59:08Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/169667031 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.15.1/helm-v3.15.1-linux-386.tar.gz.sha256sum.asc + content_type: text/plain + created_at: "2024-05-23T15:59:08Z" + download_count: 0 + id: 169667030 + label: null + name: helm-v3.15.1-linux-386.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4KHOnW + size: 833 + state: uploaded + updated_at: "2024-05-23T15:59:08Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/169667030 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.15.1/helm-v3.15.1-linux-amd64.tar.gz.asc + content_type: text/plain + created_at: "2024-05-23T15:59:08Z" + download_count: 0 + id: 169667029 + label: null + name: helm-v3.15.1-linux-amd64.tar.gz.asc + node_id: RA_kwDOApspmc4KHOnV + size: 833 + state: uploaded + updated_at: "2024-05-23T15:59:08Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/169667029 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.15.1/helm-v3.15.1-linux-amd64.tar.gz.sha256.asc + content_type: text/plain + created_at: "2024-05-23T15:59:07Z" + download_count: 0 + id: 169667028 + label: null + name: helm-v3.15.1-linux-amd64.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4KHOnU + size: 833 + state: uploaded + updated_at: "2024-05-23T15:59:08Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/169667028 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.15.1/helm-v3.15.1-linux-amd64.tar.gz.sha256sum.asc + content_type: text/plain + created_at: "2024-05-23T15:59:07Z" + download_count: 0 + id: 169667027 + label: null + name: helm-v3.15.1-linux-amd64.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4KHOnT + size: 833 + state: uploaded + updated_at: "2024-05-23T15:59:07Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/169667027 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.15.1/helm-v3.15.1-linux-arm.tar.gz.asc + content_type: text/plain + created_at: "2024-05-23T15:59:06Z" + download_count: 0 + id: 169667021 + label: null + name: helm-v3.15.1-linux-arm.tar.gz.asc + node_id: RA_kwDOApspmc4KHOnN + size: 833 + state: uploaded + updated_at: "2024-05-23T15:59:07Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/169667021 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.15.1/helm-v3.15.1-linux-arm.tar.gz.sha256.asc + content_type: text/plain + created_at: "2024-05-23T15:59:06Z" + download_count: 0 + id: 169667020 + label: null + name: helm-v3.15.1-linux-arm.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4KHOnM + size: 833 + state: uploaded + updated_at: "2024-05-23T15:59:06Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/169667020 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.15.1/helm-v3.15.1-linux-arm.tar.gz.sha256sum.asc + content_type: text/plain + created_at: "2024-05-23T15:59:06Z" + download_count: 0 + id: 169667019 + label: null + name: helm-v3.15.1-linux-arm.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4KHOnL + size: 833 + state: uploaded + updated_at: "2024-05-23T15:59:06Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/169667019 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.15.1/helm-v3.15.1-linux-arm64.tar.gz.asc + content_type: text/plain + created_at: "2024-05-23T15:59:07Z" + download_count: 0 + id: 169667026 + label: null + name: helm-v3.15.1-linux-arm64.tar.gz.asc + node_id: RA_kwDOApspmc4KHOnS + size: 833 + state: uploaded + updated_at: "2024-05-23T15:59:07Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/169667026 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.15.1/helm-v3.15.1-linux-arm64.tar.gz.sha256.asc + content_type: text/plain + created_at: "2024-05-23T15:59:07Z" + download_count: 0 + id: 169667023 + label: null + name: helm-v3.15.1-linux-arm64.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4KHOnP + size: 833 + state: uploaded + updated_at: "2024-05-23T15:59:07Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/169667023 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.15.1/helm-v3.15.1-linux-arm64.tar.gz.sha256sum.asc + content_type: text/plain + created_at: "2024-05-23T15:59:07Z" + download_count: 0 + id: 169667022 + label: null + name: helm-v3.15.1-linux-arm64.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4KHOnO + size: 833 + state: uploaded + updated_at: "2024-05-23T15:59:07Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/169667022 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.15.1/helm-v3.15.1-linux-ppc64le.tar.gz.asc + content_type: text/plain + created_at: "2024-05-23T15:59:06Z" + download_count: 0 + id: 169667017 + label: null + name: helm-v3.15.1-linux-ppc64le.tar.gz.asc + node_id: RA_kwDOApspmc4KHOnJ + size: 833 + state: uploaded + updated_at: "2024-05-23T15:59:06Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/169667017 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.15.1/helm-v3.15.1-linux-ppc64le.tar.gz.sha256.asc + content_type: text/plain + created_at: "2024-05-23T15:59:05Z" + download_count: 0 + id: 169667015 + label: null + name: helm-v3.15.1-linux-ppc64le.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4KHOnH + size: 833 + state: uploaded + updated_at: "2024-05-23T15:59:06Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/169667015 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.15.1/helm-v3.15.1-linux-ppc64le.tar.gz.sha256sum.asc + content_type: text/plain + created_at: "2024-05-23T15:59:05Z" + download_count: 0 + id: 169667014 + label: null + name: helm-v3.15.1-linux-ppc64le.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4KHOnG + size: 833 + state: uploaded + updated_at: "2024-05-23T15:59:05Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/169667014 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.15.1/helm-v3.15.1-linux-riscv64.tar.gz.asc + content_type: text/plain + created_at: "2024-05-23T15:59:05Z" + download_count: 0 + id: 169667013 + label: null + name: helm-v3.15.1-linux-riscv64.tar.gz.asc + node_id: RA_kwDOApspmc4KHOnF + size: 833 + state: uploaded + updated_at: "2024-05-23T15:59:05Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/169667013 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.15.1/helm-v3.15.1-linux-riscv64.tar.gz.sha256.asc + content_type: text/plain + created_at: "2024-05-23T15:59:05Z" + download_count: 0 + id: 169667011 + label: null + name: helm-v3.15.1-linux-riscv64.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4KHOnD + size: 833 + state: uploaded + updated_at: "2024-05-23T15:59:05Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/169667011 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.15.1/helm-v3.15.1-linux-riscv64.tar.gz.sha256sum.asc + content_type: text/plain + created_at: "2024-05-23T15:59:05Z" + download_count: 0 + id: 169667009 + label: null + name: helm-v3.15.1-linux-riscv64.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4KHOnB + size: 833 + state: uploaded + updated_at: "2024-05-23T15:59:05Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/169667009 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.15.1/helm-v3.15.1-linux-s390x.tar.gz.asc + content_type: text/plain + created_at: "2024-05-23T15:59:04Z" + download_count: 0 + id: 169667008 + label: null + name: helm-v3.15.1-linux-s390x.tar.gz.asc + node_id: RA_kwDOApspmc4KHOnA + size: 833 + state: uploaded + updated_at: "2024-05-23T15:59:05Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/169667008 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.15.1/helm-v3.15.1-linux-s390x.tar.gz.sha256.asc + content_type: text/plain + created_at: "2024-05-23T15:59:04Z" + download_count: 0 + id: 169667007 + label: null + name: helm-v3.15.1-linux-s390x.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4KHOm_ + size: 833 + state: uploaded + updated_at: "2024-05-23T15:59:04Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/169667007 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.15.1/helm-v3.15.1-linux-s390x.tar.gz.sha256sum.asc + content_type: text/plain + created_at: "2024-05-23T15:59:04Z" + download_count: 0 + id: 169667005 + label: null + name: helm-v3.15.1-linux-s390x.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4KHOm9 + size: 833 + state: uploaded + updated_at: "2024-05-23T15:59:04Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/169667005 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.15.1/helm-v3.15.1-windows-amd64.zip.asc + content_type: text/plain + created_at: "2024-05-23T15:59:04Z" + download_count: 0 + id: 169667001 + label: null + name: helm-v3.15.1-windows-amd64.zip.asc + node_id: RA_kwDOApspmc4KHOm5 + size: 833 + state: uploaded + updated_at: "2024-05-23T15:59:04Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/169667001 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.15.1/helm-v3.15.1-windows-amd64.zip.sha256.asc + content_type: text/plain + created_at: "2024-05-23T15:59:03Z" + download_count: 0 + id: 169666999 + label: null + name: helm-v3.15.1-windows-amd64.zip.sha256.asc + node_id: RA_kwDOApspmc4KHOm3 + size: 833 + state: uploaded + updated_at: "2024-05-23T15:59:04Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/169666999 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.15.1/helm-v3.15.1-windows-amd64.zip.sha256sum.asc + content_type: text/plain + created_at: "2024-05-23T15:59:03Z" + download_count: 0 + id: 169666998 + label: null + name: helm-v3.15.1-windows-amd64.zip.sha256sum.asc + node_id: RA_kwDOApspmc4KHOm2 + size: 833 + state: uploaded + updated_at: "2024-05-23T15:59:03Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/169666998 + assets_url: https://api.github.com/repos/helm/helm/releases/157162509/assets + author: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + body: "Helm v3.15.1 is a patch release. The Helm application source is the + same as 3.15.0. The 3.15.0 builds stated the wrong version when running + `helm version`. Instead of the release number it had the release candidate + version which pointed to the same revision of the source.\r\n\r\nThe community + keeps growing, and we'd love to see you there!\r\n\r\n- Join the discussion + in [Kubernetes Slack](https://kubernetes.slack.com):\r\n - for questions + and just to hang out\r\n - for discussing PRs, code, and bugs\r\n- Hang + out at the Public Developer Call: Thursday, 9:30 Pacific via [Zoom](https://zoom.us/j/696660622)\r\n- + Test, debug, and contribute charts: [ArtifactHub/packages](https://artifacthub.io/packages/search?kind=0)\r\n\r\n## + Installation and Upgrading\r\n\r\nDownload Helm v3.15.1. The common platform + binaries are here:\r\n\r\n- [MacOS amd64](https://get.helm.sh/helm-v3.15.1-darwin-amd64.tar.gz) + ([checksum](https://get.helm.sh/helm-v3.15.1-darwin-amd64.tar.gz.sha256sum) + / 5fdc60e090d183113f9fa0ae9dd9d12f0c1462b9ded286370f84e340f84bd676)\r\n- + [MacOS arm64](https://get.helm.sh/helm-v3.15.1-darwin-arm64.tar.gz) ([checksum](https://get.helm.sh/helm-v3.15.1-darwin-arm64.tar.gz.sha256sum) + / 4b04ede5ab9bb226c9b198c94ce12818f0b0e302193defd66970b45fc341f6e7)\r\n- + [Linux amd64](https://get.helm.sh/helm-v3.15.1-linux-amd64.tar.gz) ([checksum](https://get.helm.sh/helm-v3.15.1-linux-amd64.tar.gz.sha256sum) + / 7b20e7791c04ea71e7fe0cbe11f1a8be4a55a692898b57d9db28f3b0c1d52f11)\r\n- + [Linux arm](https://get.helm.sh/helm-v3.15.1-linux-arm.tar.gz) ([checksum](https://get.helm.sh/helm-v3.15.1-linux-arm.tar.gz.sha256sum) + / fa7a8b472c8f311ac618a231218511efeafad306781d11ad68976e0461074b0e)\r\n- + [Linux arm64](https://get.helm.sh/helm-v3.15.1-linux-arm64.tar.gz) ([checksum](https://get.helm.sh/helm-v3.15.1-linux-arm64.tar.gz.sha256sum) + / b4c5519b18f01dd2441f5e09497913dc1da1a1eec209033ae792a8d45b9e0e86)\r\n- + [Linux i386](https://get.helm.sh/helm-v3.15.1-linux-386.tar.gz) ([checksum](https://get.helm.sh/helm-v3.15.1-linux-386.tar.gz.sha256sum) + / 4f8cb966bac96a186f0790a7c4528dd0278664f82fba3643aa4b37f98cf9e76b)\r\n- + [Linux ppc64le](https://get.helm.sh/helm-v3.15.1-linux-ppc64le.tar.gz) + ([checksum](https://get.helm.sh/helm-v3.15.1-linux-ppc64le.tar.gz.sha256sum) + / 0bfe2ff8b29c1f26b0484261c0fe0d041188b2e1aa5da8e461e44083bbf655a3)\r\n- + [Linux s390x](https://get.helm.sh/helm-v3.15.1-linux-s390x.tar.gz) ([checksum](https://get.helm.sh/helm-v3.15.1-linux-s390x.tar.gz.sha256sum) + / 4a5314689787332d010ae782a6c00804fb83a53238f7ff7c9837c3f797ff1473)\r\n- + [Linux riscv64](https://get.helm.sh/helm-v3.15.1-linux-riscv64.tar.gz) + ([checksum](https://get.helm.sh/helm-v3.15.1-linux-riscv64.tar.gz.sha256sum) + / 1c49f1213c68649842c81e1806c518661aa2e466aa1c6bf1d0ac3710f554a563)\r\n- + [Windows amd64](https://get.helm.sh/helm-v3.15.1-windows-amd64.zip) ([checksum](https://get.helm.sh/helm-v3.15.1-windows-amd64.zip.sha256sum) + / 8ebe6d353f0fbc7e51861a676ba1c14af9efb3443ae2c78eb91946a756b93a9a)\r\n\r\nThis + release was signed with `672C 657B E06B 4B30 969C 4A57 4614 49C2 5E36 + B98E ` and can be found at @mattfarina [keybase account](https://keybase.io/mattfarina). + Please use the attached signatures for verifying this release using `gpg`.\r\n\r\nThe + [Quickstart Guide](https://helm.sh/docs/intro/quickstart/) will get you + going from there. For **upgrade instructions** or detailed installation + notes, check the [install guide](https://helm.sh/docs/intro/install/). + You can also use a [script to install](https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3) + on any system with `bash`.\r\n\r\n## What's Next\r\n\r\n- 3.15.2 is the + next patch release and will be on June 12, 2024.\r\n- 3.16.0 is the next + feature release and will be on September 11, 2024.\r\n\r\n## Changelog\r\n\r\n- + Fixing build issue where wrong version is used e211f2aa62992bd72586b395de50979e31231829 + (Matt Farina)" + created_at: "2024-05-23T14:45:11Z" + draft: false + html_url: https://github.com/helm/helm/releases/tag/v3.15.1 + id: 157162509 + mentions_count: 1 + name: Helm v3.15.1 + node_id: RE_kwDOApspmc4JXhwN + prerelease: false + published_at: "2024-05-23T16:01:32Z" + tag_name: v3.15.1 + tarball_url: https://api.github.com/repos/helm/helm/tarball/v3.15.1 + target_commitish: main + upload_url: https://uploads.github.com/repos/helm/helm/releases/157162509/assets{?name,label} + url: https://api.github.com/repos/helm/helm/releases/157162509 + zipball_url: https://api.github.com/repos/helm/helm/zipball/v3.15.1 + 3.15.2: + githubRelease: + assets: + - browser_download_url: https://github.com/helm/helm/releases/download/v3.15.2/helm-v3.15.2-darwin-amd64.tar.gz.asc + content_type: application/octet-stream + created_at: "2024-06-12T14:17:12Z" + download_count: 6 + id: 173366288 + label: null + name: helm-v3.15.2-darwin-amd64.tar.gz.asc + node_id: RA_kwDOApspmc4KVVwQ + size: 833 + state: uploaded + updated_at: "2024-06-12T14:17:12Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/173366288 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.15.2/helm-v3.15.2-darwin-amd64.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2024-06-12T14:17:11Z" + download_count: 6 + id: 173366287 + label: null + name: helm-v3.15.2-darwin-amd64.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4KVVwP + size: 833 + state: uploaded + updated_at: "2024-06-12T14:17:12Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/173366287 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.15.2/helm-v3.15.2-darwin-amd64.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2024-06-12T14:17:11Z" + download_count: 6 + id: 173366286 + label: null + name: helm-v3.15.2-darwin-amd64.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4KVVwO + size: 833 + state: uploaded + updated_at: "2024-06-12T14:17:11Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/173366286 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.15.2/helm-v3.15.2-darwin-arm64.tar.gz.asc + content_type: application/octet-stream + created_at: "2024-06-12T14:17:11Z" + download_count: 6 + id: 173366285 + label: null + name: helm-v3.15.2-darwin-arm64.tar.gz.asc + node_id: RA_kwDOApspmc4KVVwN + size: 833 + state: uploaded + updated_at: "2024-06-12T14:17:11Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/173366285 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.15.2/helm-v3.15.2-darwin-arm64.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2024-06-12T14:17:11Z" + download_count: 6 + id: 173366284 + label: null + name: helm-v3.15.2-darwin-arm64.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4KVVwM + size: 833 + state: uploaded + updated_at: "2024-06-12T14:17:11Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/173366284 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.15.2/helm-v3.15.2-darwin-arm64.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2024-06-12T14:17:11Z" + download_count: 6 + id: 173366283 + label: null + name: helm-v3.15.2-darwin-arm64.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4KVVwL + size: 833 + state: uploaded + updated_at: "2024-06-12T14:17:11Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/173366283 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.15.2/helm-v3.15.2-linux-386.tar.gz.asc + content_type: application/octet-stream + created_at: "2024-06-12T14:17:10Z" + download_count: 6 + id: 173366282 + label: null + name: helm-v3.15.2-linux-386.tar.gz.asc + node_id: RA_kwDOApspmc4KVVwK + size: 833 + state: uploaded + updated_at: "2024-06-12T14:17:11Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/173366282 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.15.2/helm-v3.15.2-linux-386.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2024-06-12T14:17:10Z" + download_count: 6 + id: 173366281 + label: null + name: helm-v3.15.2-linux-386.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4KVVwJ + size: 833 + state: uploaded + updated_at: "2024-06-12T14:17:10Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/173366281 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.15.2/helm-v3.15.2-linux-386.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2024-06-12T14:17:10Z" + download_count: 6 + id: 173366279 + label: null + name: helm-v3.15.2-linux-386.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4KVVwH + size: 833 + state: uploaded + updated_at: "2024-06-12T14:17:10Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/173366279 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.15.2/helm-v3.15.2-linux-amd64.tar.gz.asc + content_type: application/octet-stream + created_at: "2024-06-12T14:17:10Z" + download_count: 25 + id: 173366278 + label: null + name: helm-v3.15.2-linux-amd64.tar.gz.asc + node_id: RA_kwDOApspmc4KVVwG + size: 833 + state: uploaded + updated_at: "2024-06-12T14:17:10Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/173366278 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.15.2/helm-v3.15.2-linux-amd64.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2024-06-12T14:17:09Z" + download_count: 22 + id: 173366276 + label: null + name: helm-v3.15.2-linux-amd64.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4KVVwE + size: 833 + state: uploaded + updated_at: "2024-06-12T14:17:10Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/173366276 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.15.2/helm-v3.15.2-linux-amd64.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2024-06-12T14:17:09Z" + download_count: 6 + id: 173366275 + label: null + name: helm-v3.15.2-linux-amd64.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4KVVwD + size: 833 + state: uploaded + updated_at: "2024-06-12T14:17:09Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/173366275 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.15.2/helm-v3.15.2-linux-arm.tar.gz.asc + content_type: application/octet-stream + created_at: "2024-06-12T14:17:09Z" + download_count: 6 + id: 173366273 + label: null + name: helm-v3.15.2-linux-arm.tar.gz.asc + node_id: RA_kwDOApspmc4KVVwB + size: 833 + state: uploaded + updated_at: "2024-06-12T14:17:09Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/173366273 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.15.2/helm-v3.15.2-linux-arm.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2024-06-12T14:17:09Z" + download_count: 6 + id: 173366272 + label: null + name: helm-v3.15.2-linux-arm.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4KVVwA + size: 833 + state: uploaded + updated_at: "2024-06-12T14:17:09Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/173366272 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.15.2/helm-v3.15.2-linux-arm.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2024-06-12T14:17:09Z" + download_count: 6 + id: 173366270 + label: null + name: helm-v3.15.2-linux-arm.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4KVVv- + size: 833 + state: uploaded + updated_at: "2024-06-12T14:17:09Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/173366270 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.15.2/helm-v3.15.2-linux-arm64.tar.gz.asc + content_type: application/octet-stream + created_at: "2024-06-12T14:17:08Z" + download_count: 9 + id: 173366269 + label: null + name: helm-v3.15.2-linux-arm64.tar.gz.asc + node_id: RA_kwDOApspmc4KVVv9 + size: 833 + state: uploaded + updated_at: "2024-06-12T14:17:09Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/173366269 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.15.2/helm-v3.15.2-linux-arm64.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2024-06-12T14:17:08Z" + download_count: 9 + id: 173366268 + label: null + name: helm-v3.15.2-linux-arm64.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4KVVv8 + size: 833 + state: uploaded + updated_at: "2024-06-12T14:17:08Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/173366268 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.15.2/helm-v3.15.2-linux-arm64.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2024-06-12T14:17:08Z" + download_count: 6 + id: 173366267 + label: null + name: helm-v3.15.2-linux-arm64.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4KVVv7 + size: 833 + state: uploaded + updated_at: "2024-06-12T14:17:08Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/173366267 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.15.2/helm-v3.15.2-linux-ppc64le.tar.gz.asc + content_type: application/octet-stream + created_at: "2024-06-12T14:17:08Z" + download_count: 6 + id: 173366266 + label: null + name: helm-v3.15.2-linux-ppc64le.tar.gz.asc + node_id: RA_kwDOApspmc4KVVv6 + size: 833 + state: uploaded + updated_at: "2024-06-12T14:17:08Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/173366266 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.15.2/helm-v3.15.2-linux-ppc64le.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2024-06-12T14:17:07Z" + download_count: 6 + id: 173366264 + label: null + name: helm-v3.15.2-linux-ppc64le.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4KVVv4 + size: 833 + state: uploaded + updated_at: "2024-06-12T14:17:08Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/173366264 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.15.2/helm-v3.15.2-linux-ppc64le.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2024-06-12T14:17:07Z" + download_count: 6 + id: 173366263 + label: null + name: helm-v3.15.2-linux-ppc64le.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4KVVv3 + size: 833 + state: uploaded + updated_at: "2024-06-12T14:17:07Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/173366263 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.15.2/helm-v3.15.2-linux-riscv64.tar.gz.asc + content_type: application/octet-stream + created_at: "2024-06-12T14:17:07Z" + download_count: 6 + id: 173366261 + label: null + name: helm-v3.15.2-linux-riscv64.tar.gz.asc + node_id: RA_kwDOApspmc4KVVv1 + size: 833 + state: uploaded + updated_at: "2024-06-12T14:17:07Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/173366261 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.15.2/helm-v3.15.2-linux-riscv64.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2024-06-12T14:17:07Z" + download_count: 6 + id: 173366260 + label: null + name: helm-v3.15.2-linux-riscv64.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4KVVv0 + size: 833 + state: uploaded + updated_at: "2024-06-12T14:17:07Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/173366260 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.15.2/helm-v3.15.2-linux-riscv64.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2024-06-12T14:17:06Z" + download_count: 6 + id: 173366259 + label: null + name: helm-v3.15.2-linux-riscv64.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4KVVvz + size: 833 + state: uploaded + updated_at: "2024-06-12T14:17:07Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/173366259 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.15.2/helm-v3.15.2-linux-s390x.tar.gz.asc + content_type: application/octet-stream + created_at: "2024-06-12T14:17:06Z" + download_count: 6 + id: 173366258 + label: null + name: helm-v3.15.2-linux-s390x.tar.gz.asc + node_id: RA_kwDOApspmc4KVVvy + size: 833 + state: uploaded + updated_at: "2024-06-12T14:17:06Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/173366258 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.15.2/helm-v3.15.2-linux-s390x.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2024-06-12T14:17:06Z" + download_count: 6 + id: 173366257 + label: null + name: helm-v3.15.2-linux-s390x.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4KVVvx + size: 833 + state: uploaded + updated_at: "2024-06-12T14:17:06Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/173366257 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.15.2/helm-v3.15.2-linux-s390x.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2024-06-12T14:17:06Z" + download_count: 5 + id: 173366256 + label: null + name: helm-v3.15.2-linux-s390x.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4KVVvw + size: 833 + state: uploaded + updated_at: "2024-06-12T14:17:06Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/173366256 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.15.2/helm-v3.15.2-windows-amd64.zip.asc + content_type: application/octet-stream + created_at: "2024-06-12T14:17:06Z" + download_count: 6 + id: 173366255 + label: null + name: helm-v3.15.2-windows-amd64.zip.asc + node_id: RA_kwDOApspmc4KVVvv + size: 833 + state: uploaded + updated_at: "2024-06-12T14:17:06Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/173366255 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.15.2/helm-v3.15.2-windows-amd64.zip.sha256.asc + content_type: application/octet-stream + created_at: "2024-06-12T14:17:05Z" + download_count: 5 + id: 173366254 + label: null + name: helm-v3.15.2-windows-amd64.zip.sha256.asc + node_id: RA_kwDOApspmc4KVVvu + size: 833 + state: uploaded + updated_at: "2024-06-12T14:17:06Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/173366254 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.15.2/helm-v3.15.2-windows-amd64.zip.sha256sum.asc + content_type: application/octet-stream + created_at: "2024-06-12T14:17:05Z" + download_count: 5 + id: 173366252 + label: null + name: helm-v3.15.2-windows-amd64.zip.sha256sum.asc + node_id: RA_kwDOApspmc4KVVvs + size: 833 + state: uploaded + updated_at: "2024-06-12T14:17:05Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/173366252 + assets_url: https://api.github.com/repos/helm/helm/releases/160095435/assets + author: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + body: "Helm v3.15.2 is a security (patch) release. Users are strongly recommended + to update to this release.\r\n\r\nThe community keeps growing, and we'd + love to see you there!\r\n\r\n- Join the discussion in [Kubernetes Slack](https://kubernetes.slack.com):\r\n + \ - for questions and just to hang out\r\n - for discussing PRs, code, + and bugs\r\n- Hang out at the Public Developer Call: Thursday, 9:30 Pacific + via [Zoom](https://zoom.us/j/696660622)\r\n- Test, debug, and contribute + charts: [ArtifactHub/packages](https://artifacthub.io/packages/search?kind=0)\r\n\r\n## + Installation and Upgrading\r\n\r\nDownload Helm v3.15.2. The common platform + binaries are here:\r\n\r\n- [MacOS amd64](https://get.helm.sh/helm-v3.15.2-darwin-amd64.tar.gz) + ([checksum](https://get.helm.sh/helm-v3.15.2-darwin-amd64.tar.gz.sha256sum) + / e99a9266a5328cb575d81ef10247911f42d9e90c76ef6eef154c5c535565658b)\r\n- + [MacOS arm64](https://get.helm.sh/helm-v3.15.2-darwin-arm64.tar.gz) ([checksum](https://get.helm.sh/helm-v3.15.2-darwin-arm64.tar.gz.sha256sum) + / 30143dabc1da9d32c7d6c589fad04b1f1ecc73841393d5823fa21c5d7f5bf8f6)\r\n- + [Linux amd64](https://get.helm.sh/helm-v3.15.2-linux-amd64.tar.gz) ([checksum](https://get.helm.sh/helm-v3.15.2-linux-amd64.tar.gz.sha256sum) + / 2694b91c3e501cff57caf650e639604a274645f61af2ea4d601677b746b44fe2)\r\n- + [Linux arm](https://get.helm.sh/helm-v3.15.2-linux-arm.tar.gz) ([checksum](https://get.helm.sh/helm-v3.15.2-linux-arm.tar.gz.sha256sum) + / 2b28fda1d8c6f087011bc7ec820051a13409dadce8385529f306476632e24e85)\r\n- + [Linux arm64](https://get.helm.sh/helm-v3.15.2-linux-arm64.tar.gz) ([checksum](https://get.helm.sh/helm-v3.15.2-linux-arm64.tar.gz.sha256sum) + / adcf07b08484b52508e5cbc8b5f4b0b0db50342f7bc487ecd88b8948b680e6a7)\r\n- + [Linux i386](https://get.helm.sh/helm-v3.15.2-linux-386.tar.gz) ([checksum](https://get.helm.sh/helm-v3.15.2-linux-386.tar.gz.sha256sum) + / 8e0bb5a08c7c227a8e285026b6283726ddc0e1f406e2af4d4d600fa1dd85c21e)\r\n- + [Linux ppc64le](https://get.helm.sh/helm-v3.15.2-linux-ppc64le.tar.gz) + ([checksum](https://get.helm.sh/helm-v3.15.2-linux-ppc64le.tar.gz.sha256sum) + / 9d95528fb797f6429f7f9b6dee0cf87bf8c71f6470e1db4a51e844c169c285a3)\r\n- + [Linux s390x](https://get.helm.sh/helm-v3.15.2-linux-s390x.tar.gz) ([checksum](https://get.helm.sh/helm-v3.15.2-linux-s390x.tar.gz.sha256sum) + / 5b42bc3d08fd0ffaf4f9ed810f28464f52ec4ea431b809c7179071d76f3d6f16)\r\n- + [Linux riscv64](https://get.helm.sh/helm-v3.15.2-linux-riscv64.tar.gz) + ([checksum](https://get.helm.sh/helm-v3.15.2-linux-riscv64.tar.gz.sha256sum) + / 2998bae9971a55f862c21bff337c325cb6a44f28ef76e11bffc93d16989e11e6)\r\n- + [Windows amd64](https://get.helm.sh/helm-v3.15.2-windows-amd64.zip) ([checksum](https://get.helm.sh/helm-v3.15.2-windows-amd64.zip.sha256sum) + / cbf40b79fa2a7dbd6e24201f8660b56261d10d6e7b5cadc3ff78100fb45b3c69)\r\n\r\nThis + release was signed with `672C 657B E06B 4B30 969C 4A57 4614 49C2 5E36 + B98E ` and can be found at @mattfarina [keybase account](https://keybase.io/mattfarina). + Please use the attached signatures for verifying this release using `gpg`.\r\n\r\nThe + [Quickstart Guide](https://helm.sh/docs/intro/quickstart/) will get you + going from there. For **upgrade instructions** or detailed installation + notes, check the [install guide](https://helm.sh/docs/intro/install/). + You can also use a [script to install](https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3) + on any system with `bash`.\r\n\r\n## What's Next\r\n\r\n- 3.15.3 will + contain only bug fixes and be released on July 10, 2024.\r\n- 3.16.0 is + the next feature release and will be on September 11, 2024.\r\n\r\n## + Changelog\r\n\r\n- fix: wrong cli description 1a500d5625419a524fdae4b33de351cc4f58ec35 + (yyzxw)\r\n- fix typo in load_plugins.go 70b225c9abc014cfeb73f7c9f506b0e73e912b61 + (yxxhero)\r\n- fix docs of DeployedAll b3640f196a2cf77136ab01295bffe76fa184991d + (Daniel Strobusch)\r\n- Bump github.com/docker/docker 46e2ba0341d43e19493b2f90c86126da8ad8a64e + (dependabot[bot])\r\n- bump oras minor version fb311d331f66f7f9153b5d0c7aa07a77bc9528ca + (Austin Abro)\r\n- feat(load.go): add warning on requirements.lock 23552a7de6f45aacec47bc2bfe70de02b9d7ab70 + (Aaron U'Ren)\r\n" + created_at: "2024-06-12T13:45:05Z" + draft: false + html_url: https://github.com/helm/helm/releases/tag/v3.15.2 + id: 160095435 + mentions_count: 1 + name: Helm v3.15.2 + node_id: RE_kwDOApspmc4JitzL + prerelease: false + published_at: "2024-06-12T14:17:48Z" + reactions: + "+1": 1 + "-1": 0 + confused: 0 + eyes: 0 + heart: 0 + hooray: 0 + laugh: 0 + rocket: 1 + total_count: 2 + url: https://api.github.com/repos/helm/helm/releases/160095435/reactions + tag_name: v3.15.2 + tarball_url: https://api.github.com/repos/helm/helm/tarball/v3.15.2 + target_commitish: release-3.15 + upload_url: https://uploads.github.com/repos/helm/helm/releases/160095435/assets{?name,label} + url: https://api.github.com/repos/helm/helm/releases/160095435 + zipball_url: https://api.github.com/repos/helm/helm/zipball/v3.15.2 + 3.15.3: + githubRelease: + assets: + - browser_download_url: https://github.com/helm/helm/releases/download/v3.15.3/helm-v3.15.3-darwin-amd64.tar.gz.asc + content_type: application/octet-stream + created_at: "2024-07-10T19:41:28Z" + download_count: 1 + id: 178832120 + label: null + name: helm-v3.15.3-darwin-amd64.tar.gz.asc + node_id: RA_kwDOApspmc4KqML4 + size: 833 + state: uploaded + updated_at: "2024-07-10T19:41:29Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/178832120 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.15.3/helm-v3.15.3-darwin-amd64.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2024-07-10T19:41:29Z" + download_count: 1 + id: 178832121 + label: null + name: helm-v3.15.3-darwin-amd64.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4KqML5 + size: 833 + state: uploaded + updated_at: "2024-07-10T19:41:29Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/178832121 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.15.3/helm-v3.15.3-darwin-amd64.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2024-07-10T19:41:29Z" + download_count: 1 + id: 178832122 + label: null + name: helm-v3.15.3-darwin-amd64.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4KqML6 + size: 833 + state: uploaded + updated_at: "2024-07-10T19:41:29Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/178832122 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.15.3/helm-v3.15.3-darwin-arm64.tar.gz.asc + content_type: application/octet-stream + created_at: "2024-07-10T19:41:29Z" + download_count: 1 + id: 178832124 + label: null + name: helm-v3.15.3-darwin-arm64.tar.gz.asc + node_id: RA_kwDOApspmc4KqML8 + size: 833 + state: uploaded + updated_at: "2024-07-10T19:41:29Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/178832124 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.15.3/helm-v3.15.3-darwin-arm64.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2024-07-10T19:41:29Z" + download_count: 1 + id: 178832126 + label: null + name: helm-v3.15.3-darwin-arm64.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4KqML- + size: 833 + state: uploaded + updated_at: "2024-07-10T19:41:29Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/178832126 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.15.3/helm-v3.15.3-darwin-arm64.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2024-07-10T19:41:29Z" + download_count: 1 + id: 178832127 + label: null + name: helm-v3.15.3-darwin-arm64.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4KqML_ + size: 833 + state: uploaded + updated_at: "2024-07-10T19:41:30Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/178832127 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.15.3/helm-v3.15.3-linux-386.tar.gz.asc + content_type: application/octet-stream + created_at: "2024-07-10T19:41:30Z" + download_count: 1 + id: 178832129 + label: null + name: helm-v3.15.3-linux-386.tar.gz.asc + node_id: RA_kwDOApspmc4KqMMB + size: 833 + state: uploaded + updated_at: "2024-07-10T19:41:30Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/178832129 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.15.3/helm-v3.15.3-linux-386.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2024-07-10T19:41:30Z" + download_count: 1 + id: 178832130 + label: null + name: helm-v3.15.3-linux-386.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4KqMMC + size: 833 + state: uploaded + updated_at: "2024-07-10T19:41:30Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/178832130 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.15.3/helm-v3.15.3-linux-386.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2024-07-10T19:41:30Z" + download_count: 1 + id: 178832131 + label: null + name: helm-v3.15.3-linux-386.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4KqMMD + size: 833 + state: uploaded + updated_at: "2024-07-10T19:41:30Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/178832131 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.15.3/helm-v3.15.3-linux-amd64.tar.gz.asc + content_type: application/octet-stream + created_at: "2024-07-10T19:41:30Z" + download_count: 2 + id: 178832132 + label: null + name: helm-v3.15.3-linux-amd64.tar.gz.asc + node_id: RA_kwDOApspmc4KqMME + size: 833 + state: uploaded + updated_at: "2024-07-10T19:41:30Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/178832132 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.15.3/helm-v3.15.3-linux-amd64.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2024-07-10T19:41:30Z" + download_count: 2 + id: 178832133 + label: null + name: helm-v3.15.3-linux-amd64.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4KqMMF + size: 833 + state: uploaded + updated_at: "2024-07-10T19:41:31Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/178832133 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.15.3/helm-v3.15.3-linux-amd64.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2024-07-10T19:41:31Z" + download_count: 1 + id: 178832134 + label: null + name: helm-v3.15.3-linux-amd64.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4KqMMG + size: 833 + state: uploaded + updated_at: "2024-07-10T19:41:31Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/178832134 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.15.3/helm-v3.15.3-linux-arm.tar.gz.asc + content_type: application/octet-stream + created_at: "2024-07-10T19:41:31Z" + download_count: 1 + id: 178832135 + label: null + name: helm-v3.15.3-linux-arm.tar.gz.asc + node_id: RA_kwDOApspmc4KqMMH + size: 833 + state: uploaded + updated_at: "2024-07-10T19:41:31Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/178832135 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.15.3/helm-v3.15.3-linux-arm.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2024-07-10T19:41:31Z" + download_count: 1 + id: 178832136 + label: null + name: helm-v3.15.3-linux-arm.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4KqMMI + size: 833 + state: uploaded + updated_at: "2024-07-10T19:41:31Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/178832136 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.15.3/helm-v3.15.3-linux-arm.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2024-07-10T19:41:31Z" + download_count: 1 + id: 178832137 + label: null + name: helm-v3.15.3-linux-arm.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4KqMMJ + size: 833 + state: uploaded + updated_at: "2024-07-10T19:41:32Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/178832137 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.15.3/helm-v3.15.3-linux-arm64.tar.gz.asc + content_type: application/octet-stream + created_at: "2024-07-10T19:41:32Z" + download_count: 1 + id: 178832138 + label: null + name: helm-v3.15.3-linux-arm64.tar.gz.asc + node_id: RA_kwDOApspmc4KqMMK + size: 833 + state: uploaded + updated_at: "2024-07-10T19:41:32Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/178832138 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.15.3/helm-v3.15.3-linux-arm64.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2024-07-10T19:41:32Z" + download_count: 1 + id: 178832139 + label: null + name: helm-v3.15.3-linux-arm64.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4KqMML + size: 833 + state: uploaded + updated_at: "2024-07-10T19:41:32Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/178832139 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.15.3/helm-v3.15.3-linux-arm64.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2024-07-10T19:41:32Z" + download_count: 1 + id: 178832140 + label: null + name: helm-v3.15.3-linux-arm64.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4KqMMM + size: 833 + state: uploaded + updated_at: "2024-07-10T19:41:32Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/178832140 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.15.3/helm-v3.15.3-linux-ppc64le.tar.gz.asc + content_type: application/octet-stream + created_at: "2024-07-10T19:41:32Z" + download_count: 1 + id: 178832141 + label: null + name: helm-v3.15.3-linux-ppc64le.tar.gz.asc + node_id: RA_kwDOApspmc4KqMMN + size: 833 + state: uploaded + updated_at: "2024-07-10T19:41:32Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/178832141 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.15.3/helm-v3.15.3-linux-ppc64le.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2024-07-10T19:41:32Z" + download_count: 1 + id: 178832142 + label: null + name: helm-v3.15.3-linux-ppc64le.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4KqMMO + size: 833 + state: uploaded + updated_at: "2024-07-10T19:41:32Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/178832142 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.15.3/helm-v3.15.3-linux-ppc64le.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2024-07-10T19:41:32Z" + download_count: 1 + id: 178832143 + label: null + name: helm-v3.15.3-linux-ppc64le.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4KqMMP + size: 833 + state: uploaded + updated_at: "2024-07-10T19:41:33Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/178832143 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.15.3/helm-v3.15.3-linux-riscv64.tar.gz.asc + content_type: application/octet-stream + created_at: "2024-07-10T19:41:33Z" + download_count: 1 + id: 178832144 + label: null + name: helm-v3.15.3-linux-riscv64.tar.gz.asc + node_id: RA_kwDOApspmc4KqMMQ + size: 833 + state: uploaded + updated_at: "2024-07-10T19:41:33Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/178832144 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.15.3/helm-v3.15.3-linux-riscv64.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2024-07-10T19:41:33Z" + download_count: 1 + id: 178832145 + label: null + name: helm-v3.15.3-linux-riscv64.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4KqMMR + size: 833 + state: uploaded + updated_at: "2024-07-10T19:41:33Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/178832145 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.15.3/helm-v3.15.3-linux-riscv64.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2024-07-10T19:41:33Z" + download_count: 1 + id: 178832146 + label: null + name: helm-v3.15.3-linux-riscv64.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4KqMMS + size: 833 + state: uploaded + updated_at: "2024-07-10T19:41:33Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/178832146 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.15.3/helm-v3.15.3-linux-s390x.tar.gz.asc + content_type: application/octet-stream + created_at: "2024-07-10T19:41:33Z" + download_count: 1 + id: 178832147 + label: null + name: helm-v3.15.3-linux-s390x.tar.gz.asc + node_id: RA_kwDOApspmc4KqMMT + size: 833 + state: uploaded + updated_at: "2024-07-10T19:41:33Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/178832147 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.15.3/helm-v3.15.3-linux-s390x.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2024-07-10T19:41:33Z" + download_count: 1 + id: 178832148 + label: null + name: helm-v3.15.3-linux-s390x.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4KqMMU + size: 833 + state: uploaded + updated_at: "2024-07-10T19:41:34Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/178832148 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.15.3/helm-v3.15.3-linux-s390x.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2024-07-10T19:41:34Z" + download_count: 1 + id: 178832150 + label: null + name: helm-v3.15.3-linux-s390x.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4KqMMW + size: 833 + state: uploaded + updated_at: "2024-07-10T19:41:34Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/178832150 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.15.3/helm-v3.15.3-windows-amd64.zip.asc + content_type: application/octet-stream + created_at: "2024-07-10T19:41:34Z" + download_count: 1 + id: 178832151 + label: null + name: helm-v3.15.3-windows-amd64.zip.asc + node_id: RA_kwDOApspmc4KqMMX + size: 833 + state: uploaded + updated_at: "2024-07-10T19:41:34Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/178832151 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.15.3/helm-v3.15.3-windows-amd64.zip.sha256.asc + content_type: application/octet-stream + created_at: "2024-07-10T19:41:34Z" + download_count: 1 + id: 178832152 + label: null + name: helm-v3.15.3-windows-amd64.zip.sha256.asc + node_id: RA_kwDOApspmc4KqMMY + size: 833 + state: uploaded + updated_at: "2024-07-10T19:41:34Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/178832152 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.15.3/helm-v3.15.3-windows-amd64.zip.sha256sum.asc + content_type: application/octet-stream + created_at: "2024-07-10T19:41:34Z" + download_count: 1 + id: 178832153 + label: null + name: helm-v3.15.3-windows-amd64.zip.sha256sum.asc + node_id: RA_kwDOApspmc4KqMMZ + size: 833 + state: uploaded + updated_at: "2024-07-10T19:41:34Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + url: https://api.github.com/repos/helm/helm/releases/assets/178832153 + assets_url: https://api.github.com/repos/helm/helm/releases/164870658/assets + author: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + body: "Helm v3.15.3 is a patch release. Users are encouraged to upgrade + for the best experience. Users are encouraged to upgrade for the best + experience.\r\n\r\nThe community keeps growing, and we'd love to see you + there!\r\n\r\n- Join the discussion in [Kubernetes Slack](https://kubernetes.slack.com):\r\n + \ - for questions and just to hang out\r\n - for discussing PRs, code, + and bugs\r\n- Hang out at the Public Developer Call: Thursday, 9:30 Pacific + via [Zoom](https://zoom.us/j/696660622)\r\n- Test, debug, and contribute + charts: [ArtifactHub/packages](https://artifacthub.io/packages/search?kind=0)\r\n\r\n## + Installation and Upgrading\r\n\r\nDownload Helm v3.15.3. The common platform + binaries are here:\r\n\r\n- [MacOS amd64](https://get.helm.sh/helm-v3.15.3-darwin-amd64.tar.gz) + ([checksum](https://get.helm.sh/helm-v3.15.3-darwin-amd64.tar.gz.sha256sum) + / 68306cbd9808271cd95974328e4238c052c8495e09b0038828b65190491aeb9c)\r\n- + [MacOS arm64](https://get.helm.sh/helm-v3.15.3-darwin-arm64.tar.gz) ([checksum](https://get.helm.sh/helm-v3.15.3-darwin-arm64.tar.gz.sha256sum) + / 9ed53b19cfd935908c5269ba3e88028462fc4c249f85f937ae8cc04b6fe9cead)\r\n- + [Linux amd64](https://get.helm.sh/helm-v3.15.3-linux-amd64.tar.gz) ([checksum](https://get.helm.sh/helm-v3.15.3-linux-amd64.tar.gz.sha256sum) + / ad871aecb0c9fd96aa6702f6b79e87556c8998c2e714a4959bf71ee31282ac9c)\r\n- + [Linux arm](https://get.helm.sh/helm-v3.15.3-linux-arm.tar.gz) ([checksum](https://get.helm.sh/helm-v3.15.3-linux-arm.tar.gz.sha256sum) + / 77a9c9699c836dd34fca3d9e783f9e70e0ddbe1a4b44aa13fac82f6193da452f)\r\n- + [Linux arm64](https://get.helm.sh/helm-v3.15.3-linux-arm64.tar.gz) ([checksum](https://get.helm.sh/helm-v3.15.3-linux-arm64.tar.gz.sha256sum) + / bd57697305ba46fef3299b50168a34faa777dd2cf5b43b50df92cca7ed118cce)\r\n- + [Linux i386](https://get.helm.sh/helm-v3.15.3-linux-386.tar.gz) ([checksum](https://get.helm.sh/helm-v3.15.3-linux-386.tar.gz.sha256sum) + / 60ee9fb18b3ecfee96cd680ff2a5dcab7f61b7c522efe0c7fc7a7e2c2577157c)\r\n- + [Linux ppc64le](https://get.helm.sh/helm-v3.15.3-linux-ppc64le.tar.gz) + ([checksum](https://get.helm.sh/helm-v3.15.3-linux-ppc64le.tar.gz.sha256sum) + / fac86a8a0515e1f4593d6288426c99f2b3edac946b7f118fcfe03e4a09523f25)\r\n- + [Linux s390x](https://get.helm.sh/helm-v3.15.3-linux-s390x.tar.gz) ([checksum](https://get.helm.sh/helm-v3.15.3-linux-s390x.tar.gz.sha256sum) + / 5de47bc4fbae5a4d06d26c71f935334e5576954eed5c8ccef677607b59371c8e)\r\n- + [Linux riscv64](https://get.helm.sh/helm-v3.15.3-linux-riscv64.tar.gz) + ([checksum](https://get.helm.sh/helm-v3.15.3-linux-riscv64.tar.gz.sha256sum) + / 096f773146abc7ef7348e32e74b7c27633bf063e117644bc9e0b75c50c9954e4)\r\n- + [Windows amd64](https://get.helm.sh/helm-v3.15.3-windows-amd64.zip) ([checksum](https://get.helm.sh/helm-v3.15.3-windows-amd64.zip.sha256sum) + / fd857635bbb38b20a91731e5d084c2e21503b0f797b153e3246de01676819f23)\r\n\r\nThis + release was signed with `672C 657B E06B 4B30 969C 4A57 4614 49C2 5E36 + B98E ` and can be found at @mattfarina [keybase account](https://keybase.io/mattfarina). + Please use the attached signatures for verifying this release using `gpg`.\r\n\r\nThe + [Quickstart Guide](https://helm.sh/docs/intro/quickstart/) will get you + going from there. For **upgrade instructions** or detailed installation + notes, check the [install guide](https://helm.sh/docs/intro/install/). + You can also use a [script to install](https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3) + on any system with `bash`.\r\n\r\n## What's Next\r\n\r\n- 3.15.4 will + contain only bug fixes and be released on August 14, 2024.\r\n- 3.16.0 + is the next feature release and will be on September 11, 2024.\r\n\r\n## + Changelog\r\n\r\n- fix(helm): Use burst limit setting for discovery 3bb50bbbdd9c946ba9989fbe4fb4104766302a64 + (Evan Foster)\r\n- fixed dependency_update_test.go f440d3b19ed772502b85ade33f7ee6bf4a35c85c + (Suleiman Dibirov)\r\n- fix(dependencyBuild): prevent race condition in + concurrent helm dependency f262d80d30bd7c13f2ffe9719d23035adcbc7ede (Suleiman + Dibirov)\r\n- fix: respect proxy envvars on helm install/upgrade 7413819bb9c481707efa58b111ff0b85829b79f9 + (Sidharth Menon)\r\n- Merge pull request #13085 from alex-kattathra-johnson/issue-12961 + eb4cf6051e5b97d48baf5b306ca1aaea1c33c2ae (Joe Julian)" + created_at: "2024-07-10T19:23:30Z" + draft: false + html_url: https://github.com/helm/helm/releases/tag/v3.15.3 + id: 164870658 + mentions_count: 1 + name: Helm v3.15.3 + node_id: RE_kwDOApspmc4J07oC + prerelease: false + published_at: "2024-07-10T19:41:53Z" + tag_name: v3.15.3 + tarball_url: https://api.github.com/repos/helm/helm/tarball/v3.15.3 + target_commitish: release-3.15 + upload_url: https://uploads.github.com/repos/helm/helm/releases/164870658/assets{?name,label} + url: https://api.github.com/repos/helm/helm/releases/164870658 + zipball_url: https://api.github.com/repos/helm/helm/zipball/v3.15.3 + 3.16.4: + githubRelease: + assets: + - browser_download_url: https://github.com/helm/helm/releases/download/v3.16.4/helm-v3.16.4-darwin-amd64.tar.gz.asc + content_type: application/octet-stream + created_at: "2024-12-16T18:52:18Z" + download_count: 280 + id: 213749302 + label: null + name: helm-v3.16.4-darwin-amd64.tar.gz.asc + node_id: RA_kwDOApspmc4MvY42 + size: 833 + state: uploaded + updated_at: "2024-12-16T18:52:19Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/213749302 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.16.4/helm-v3.16.4-darwin-amd64.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2024-12-16T18:52:19Z" + download_count: 131 + id: 213749303 + label: null + name: helm-v3.16.4-darwin-amd64.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4MvY43 + size: 833 + state: uploaded + updated_at: "2024-12-16T18:52:19Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/213749303 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.16.4/helm-v3.16.4-darwin-amd64.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2024-12-16T18:52:19Z" + download_count: 134 + id: 213749304 + label: null + name: helm-v3.16.4-darwin-amd64.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4MvY44 + size: 833 + state: uploaded + updated_at: "2024-12-16T18:52:19Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/213749304 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.16.4/helm-v3.16.4-darwin-arm64.tar.gz.asc + content_type: application/octet-stream + created_at: "2024-12-16T18:52:19Z" + download_count: 155 + id: 213749306 + label: null + name: helm-v3.16.4-darwin-arm64.tar.gz.asc + node_id: RA_kwDOApspmc4MvY46 + size: 833 + state: uploaded + updated_at: "2024-12-16T18:52:19Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/213749306 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.16.4/helm-v3.16.4-darwin-arm64.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2024-12-16T18:52:19Z" + download_count: 115 + id: 213749307 + label: null + name: helm-v3.16.4-darwin-arm64.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4MvY47 + size: 833 + state: uploaded + updated_at: "2024-12-16T18:52:20Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/213749307 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.16.4/helm-v3.16.4-darwin-arm64.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2024-12-16T18:52:20Z" + download_count: 117 + id: 213749308 + label: null + name: helm-v3.16.4-darwin-arm64.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4MvY48 + size: 833 + state: uploaded + updated_at: "2024-12-16T18:52:20Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/213749308 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.16.4/helm-v3.16.4-linux-386.tar.gz.asc + content_type: application/octet-stream + created_at: "2024-12-16T18:52:20Z" + download_count: 239 + id: 213749309 + label: null + name: helm-v3.16.4-linux-386.tar.gz.asc + node_id: RA_kwDOApspmc4MvY49 + size: 833 + state: uploaded + updated_at: "2024-12-16T18:52:20Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/213749309 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.16.4/helm-v3.16.4-linux-386.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2024-12-16T18:52:20Z" + download_count: 135 + id: 213749310 + label: null + name: helm-v3.16.4-linux-386.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4MvY4- + size: 833 + state: uploaded + updated_at: "2024-12-16T18:52:20Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/213749310 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.16.4/helm-v3.16.4-linux-386.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2024-12-16T18:52:20Z" + download_count: 138 + id: 213749311 + label: null + name: helm-v3.16.4-linux-386.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4MvY4_ + size: 833 + state: uploaded + updated_at: "2024-12-16T18:52:20Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/213749311 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.16.4/helm-v3.16.4-linux-amd64.tar.gz.asc + content_type: application/octet-stream + created_at: "2024-12-16T18:52:20Z" + download_count: 8489 + id: 213749312 + label: null + name: helm-v3.16.4-linux-amd64.tar.gz.asc + node_id: RA_kwDOApspmc4MvY5A + size: 833 + state: uploaded + updated_at: "2024-12-16T18:52:20Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/213749312 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.16.4/helm-v3.16.4-linux-amd64.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2024-12-16T18:52:20Z" + download_count: 7531 + id: 213749313 + label: null + name: helm-v3.16.4-linux-amd64.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4MvY5B + size: 833 + state: uploaded + updated_at: "2024-12-16T18:52:21Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/213749313 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.16.4/helm-v3.16.4-linux-amd64.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2024-12-16T18:52:21Z" + download_count: 438 + id: 213749314 + label: null + name: helm-v3.16.4-linux-amd64.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4MvY5C + size: 833 + state: uploaded + updated_at: "2024-12-16T18:52:21Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/213749314 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.16.4/helm-v3.16.4-linux-arm.tar.gz.asc + content_type: application/octet-stream + created_at: "2024-12-16T18:52:21Z" + download_count: 126 + id: 213749315 + label: null + name: helm-v3.16.4-linux-arm.tar.gz.asc + node_id: RA_kwDOApspmc4MvY5D + size: 833 + state: uploaded + updated_at: "2024-12-16T18:52:21Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/213749315 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.16.4/helm-v3.16.4-linux-arm.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2024-12-16T18:52:21Z" + download_count: 120 + id: 213749317 + label: null + name: helm-v3.16.4-linux-arm.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4MvY5F + size: 833 + state: uploaded + updated_at: "2024-12-16T18:52:21Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/213749317 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.16.4/helm-v3.16.4-linux-arm.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2024-12-16T18:52:21Z" + download_count: 121 + id: 213749319 + label: null + name: helm-v3.16.4-linux-arm.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4MvY5H + size: 833 + state: uploaded + updated_at: "2024-12-16T18:52:21Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/213749319 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.16.4/helm-v3.16.4-linux-arm64.tar.gz.asc + content_type: application/octet-stream + created_at: "2024-12-16T18:52:21Z" + download_count: 1754 + id: 213749321 + label: null + name: helm-v3.16.4-linux-arm64.tar.gz.asc + node_id: RA_kwDOApspmc4MvY5J + size: 833 + state: uploaded + updated_at: "2024-12-16T18:52:21Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/213749321 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.16.4/helm-v3.16.4-linux-arm64.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2024-12-16T18:52:21Z" + download_count: 1710 + id: 213749322 + label: null + name: helm-v3.16.4-linux-arm64.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4MvY5K + size: 833 + state: uploaded + updated_at: "2024-12-16T18:52:22Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/213749322 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.16.4/helm-v3.16.4-linux-arm64.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2024-12-16T18:52:22Z" + download_count: 112 + id: 213749323 + label: null + name: helm-v3.16.4-linux-arm64.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4MvY5L + size: 833 + state: uploaded + updated_at: "2024-12-16T18:52:22Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/213749323 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.16.4/helm-v3.16.4-linux-ppc64le.tar.gz.asc + content_type: application/octet-stream + created_at: "2024-12-16T18:52:22Z" + download_count: 119 + id: 213749326 + label: null + name: helm-v3.16.4-linux-ppc64le.tar.gz.asc + node_id: RA_kwDOApspmc4MvY5O + size: 833 + state: uploaded + updated_at: "2024-12-16T18:52:22Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/213749326 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.16.4/helm-v3.16.4-linux-ppc64le.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2024-12-16T18:52:22Z" + download_count: 119 + id: 213749327 + label: null + name: helm-v3.16.4-linux-ppc64le.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4MvY5P + size: 833 + state: uploaded + updated_at: "2024-12-16T18:52:22Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/213749327 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.16.4/helm-v3.16.4-linux-ppc64le.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2024-12-16T18:52:22Z" + download_count: 122 + id: 213749328 + label: null + name: helm-v3.16.4-linux-ppc64le.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4MvY5Q + size: 833 + state: uploaded + updated_at: "2024-12-16T18:52:22Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/213749328 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.16.4/helm-v3.16.4-linux-riscv64.tar.gz.asc + content_type: application/octet-stream + created_at: "2024-12-16T18:52:22Z" + download_count: 125 + id: 213749329 + label: null + name: helm-v3.16.4-linux-riscv64.tar.gz.asc + node_id: RA_kwDOApspmc4MvY5R + size: 833 + state: uploaded + updated_at: "2024-12-16T18:52:23Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/213749329 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.16.4/helm-v3.16.4-linux-riscv64.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2024-12-16T18:52:23Z" + download_count: 122 + id: 213749330 + label: null + name: helm-v3.16.4-linux-riscv64.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4MvY5S + size: 833 + state: uploaded + updated_at: "2024-12-16T18:52:23Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/213749330 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.16.4/helm-v3.16.4-linux-riscv64.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2024-12-16T18:52:23Z" + download_count: 124 + id: 213749331 + label: null + name: helm-v3.16.4-linux-riscv64.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4MvY5T + size: 833 + state: uploaded + updated_at: "2024-12-16T18:52:23Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/213749331 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.16.4/helm-v3.16.4-linux-s390x.tar.gz.asc + content_type: application/octet-stream + created_at: "2024-12-16T18:52:23Z" + download_count: 122 + id: 213749332 + label: null + name: helm-v3.16.4-linux-s390x.tar.gz.asc + node_id: RA_kwDOApspmc4MvY5U + size: 833 + state: uploaded + updated_at: "2024-12-16T18:52:23Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/213749332 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.16.4/helm-v3.16.4-linux-s390x.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2024-12-16T18:52:23Z" + download_count: 120 + id: 213749333 + label: null + name: helm-v3.16.4-linux-s390x.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4MvY5V + size: 833 + state: uploaded + updated_at: "2024-12-16T18:52:23Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/213749333 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.16.4/helm-v3.16.4-linux-s390x.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2024-12-16T18:52:23Z" + download_count: 121 + id: 213749334 + label: null + name: helm-v3.16.4-linux-s390x.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4MvY5W + size: 833 + state: uploaded + updated_at: "2024-12-16T18:52:23Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/213749334 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.16.4/helm-v3.16.4-windows-amd64.zip.asc + content_type: application/octet-stream + created_at: "2024-12-16T18:52:23Z" + download_count: 317 + id: 213749335 + label: null + name: helm-v3.16.4-windows-amd64.zip.asc + node_id: RA_kwDOApspmc4MvY5X + size: 833 + state: uploaded + updated_at: "2024-12-16T18:52:24Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/213749335 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.16.4/helm-v3.16.4-windows-amd64.zip.sha256.asc + content_type: application/octet-stream + created_at: "2024-12-16T18:52:24Z" + download_count: 178 + id: 213749337 + label: null + name: helm-v3.16.4-windows-amd64.zip.sha256.asc + node_id: RA_kwDOApspmc4MvY5Z + size: 833 + state: uploaded + updated_at: "2024-12-16T18:52:24Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/213749337 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.16.4/helm-v3.16.4-windows-amd64.zip.sha256sum.asc + content_type: application/octet-stream + created_at: "2024-12-16T18:52:24Z" + download_count: 142 + id: 213749339 + label: null + name: helm-v3.16.4-windows-amd64.zip.sha256sum.asc + node_id: RA_kwDOApspmc4MvY5b + size: 833 + state: uploaded + updated_at: "2024-12-16T18:52:24Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/213749339 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.16.4/helm-v3.16.4-windows-arm64.zip.asc + content_type: application/octet-stream + created_at: "2024-12-16T18:52:24Z" + download_count: 156 + id: 213749341 + label: null + name: helm-v3.16.4-windows-arm64.zip.asc + node_id: RA_kwDOApspmc4MvY5d + size: 833 + state: uploaded + updated_at: "2024-12-16T18:52:24Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/213749341 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.16.4/helm-v3.16.4-windows-arm64.zip.sha256.asc + content_type: application/octet-stream + created_at: "2024-12-16T18:52:24Z" + download_count: 117 + id: 213749344 + label: null + name: helm-v3.16.4-windows-arm64.zip.sha256.asc + node_id: RA_kwDOApspmc4MvY5g + size: 833 + state: uploaded + updated_at: "2024-12-16T18:52:24Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/213749344 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.16.4/helm-v3.16.4-windows-arm64.zip.sha256sum.asc + content_type: application/octet-stream + created_at: "2024-12-16T18:52:24Z" + download_count: 114 + id: 213749345 + label: null + name: helm-v3.16.4-windows-arm64.zip.sha256sum.asc + node_id: RA_kwDOApspmc4MvY5h + size: 833 + state: uploaded + updated_at: "2024-12-16T18:52:25Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/213749345 + assets_url: https://api.github.com/repos/helm/helm/releases/191017899/assets + author: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + body: "Helm v3.16.4 is a patch release. Users are encouraged to upgrade + for the best experience. Users are encouraged to upgrade for the best + experience.\r\n\r\nThe community keeps growing, and we'd love to see you + there!\r\n\r\n- Join the discussion in [Kubernetes Slack](https://kubernetes.slack.com):\r\n + \ - for questions and just to hang out\r\n - for discussing PRs, code, + and bugs\r\n- Hang out at the Public Developer Call: Thursday, 9:30 Pacific + via [Zoom](https://zoom.us/j/696660622)\r\n- Test, debug, and contribute + charts: [ArtifactHub/packages](https://artifacthub.io/packages/search?kind=0)\r\n\r\n## + Installation and Upgrading\r\n\r\nDownload Helm v3.16.4. The common platform + binaries are here:\r\n\r\n- [MacOS amd64](https://get.helm.sh/helm-v3.16.4-darwin-amd64.tar.gz) + ([checksum](https://get.helm.sh/helm-v3.16.4-darwin-amd64.tar.gz.sha256sum) + / 8dc25671120a4af197afe7ad9041fb8e1dd71bc01e5ef73dba1139cbc9e9f44b)\r\n- + [MacOS arm64](https://get.helm.sh/helm-v3.16.4-darwin-arm64.tar.gz) ([checksum](https://get.helm.sh/helm-v3.16.4-darwin-arm64.tar.gz.sha256sum) + / e2442d8f05d53d84c39b869bc5fe5affad247ee2f4c706a040919c146edb1f94)\r\n- + [Linux amd64](https://get.helm.sh/helm-v3.16.4-linux-amd64.tar.gz) ([checksum](https://get.helm.sh/helm-v3.16.4-linux-amd64.tar.gz.sha256sum) + / fc307327959aa38ed8f9f7e66d45492bb022a66c3e5da6063958254b9767d179)\r\n- + [Linux arm](https://get.helm.sh/helm-v3.16.4-linux-arm.tar.gz) ([checksum](https://get.helm.sh/helm-v3.16.4-linux-arm.tar.gz.sha256sum) + / 432e774d1087d3773737888d384c62477b399227662b42cbf0c32e95e6e72556)\r\n- + [Linux arm64](https://get.helm.sh/helm-v3.16.4-linux-arm64.tar.gz) ([checksum](https://get.helm.sh/helm-v3.16.4-linux-arm64.tar.gz.sha256sum) + / d3f8f15b3d9ec8c8678fbf3280c3e5902efabe5912e2f9fcf29107efbc8ead69)\r\n- + [Linux i386](https://get.helm.sh/helm-v3.16.4-linux-386.tar.gz) ([checksum](https://get.helm.sh/helm-v3.16.4-linux-386.tar.gz.sha256sum) + / 6022b34e165a5196827043c77bcd1fa28ef48109b3a4af46e8660ddb0a6c44e0)\r\n- + [Linux ppc64le](https://get.helm.sh/helm-v3.16.4-linux-ppc64le.tar.gz) + ([checksum](https://get.helm.sh/helm-v3.16.4-linux-ppc64le.tar.gz.sha256sum) + / 0ba4375a6dcf6117a8e7729fbed36d9220f8ad98dbc7aabc16186f22917caead)\r\n- + [Linux s390x](https://get.helm.sh/helm-v3.16.4-linux-s390x.tar.gz) ([checksum](https://get.helm.sh/helm-v3.16.4-linux-s390x.tar.gz.sha256sum) + / 10b88dc2afd97267feba8283d58dcb1c937defb7df8de152c86b60aaece47d59)\r\n- + [Linux riscv64](https://get.helm.sh/helm-v3.16.4-linux-riscv64.tar.gz) + ([checksum](https://get.helm.sh/helm-v3.16.4-linux-riscv64.tar.gz.sha256sum) + / e733c727de7644cfeb25b094e1f0a56c53a7cb437c93c992aa92e6c7b9f6af93)\r\n- + [Windows amd64](https://get.helm.sh/helm-v3.16.4-windows-amd64.zip) ([checksum](https://get.helm.sh/helm-v3.16.4-windows-amd64.zip.sha256sum) + / 9bb114c12e530a7129fd3d78fc1784e813dd7a6e29e5f9b5af8bc83fd1066d36)\r\n- + [Windows arm64](https://get.helm.sh/helm-v3.16.4-windows-arm64.zip) ([checksum](https://get.helm.sh/helm-v3.16.4-windows-arm64.zip.sha256sum) + / a4afeee93031920ec08b7e880c859a159bcd222837a81196cadaeb42408ad0b3)\r\n\r\nThis + release was signed with `672C 657B E06B 4B30 969C 4A57 4614 49C2 5E36 + B98E ` and can be found at @mattfarina [keybase account](https://keybase.io/mattfarina). + Please use the attached signatures for verifying this release using `gpg`.\r\n\r\nThe + [Quickstart Guide](https://helm.sh/docs/intro/quickstart/) will get you + going from there. For **upgrade instructions** or detailed installation + notes, check the [install guide](https://helm.sh/docs/intro/install/). + You can also use a [script to install](https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3) + on any system with `bash`.\r\n\r\n## What's Next\r\n\r\n- 3.17.0 is the + next feature release and will be on January 15, 2025\r\n\r\n## Changelog\r\n\r\n- + Bump golang.org/x/crypto from 0.30.0 to 0.31.0 7877b45b63f95635153b29a42c0c2f4273ec45ca + (dependabot[bot])\r\n- Bump the k8s-io group with 7 updates 848e586c27f05d84bc19d082f395098aba0b7619 + (dependabot[bot])\r\n" + created_at: "2024-12-16T18:35:51Z" + draft: false + html_url: https://github.com/helm/helm/releases/tag/v3.16.4 + id: 191017899 + mentions_count: 1 + name: Helm v3.16.4 + node_id: RE_kwDOApspmc4LYrOr + prerelease: false + published_at: "2024-12-16T18:53:38Z" + reactions: + "+1": 0 + "-1": 0 + confused: 0 + eyes: 0 + heart: 0 + hooray: 0 + laugh: 2 + rocket: 1 + total_count: 3 + url: https://api.github.com/repos/helm/helm/releases/191017899/reactions + tag_name: v3.16.4 + tarball_url: https://api.github.com/repos/helm/helm/tarball/v3.16.4 + target_commitish: main + upload_url: https://uploads.github.com/repos/helm/helm/releases/191017899/assets{?name,label} + url: https://api.github.com/repos/helm/helm/releases/191017899 + zipball_url: https://api.github.com/repos/helm/helm/zipball/v3.16.4 + 3.17.0: + githubRelease: + assets: + - browser_download_url: https://github.com/helm/helm/releases/download/v3.17.0/helm-v3.17.0-darwin-amd64.tar.gz.asc + content_type: text/plain + created_at: "2025-01-15T21:55:03Z" + download_count: 0 + id: 220726911 + label: null + name: helm-v3.17.0-darwin-amd64.tar.gz.asc + node_id: RA_kwDOApspmc4NKAZ_ + size: 833 + state: uploaded + updated_at: "2025-01-15T21:55:03Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/407675?v=4 + events_url: https://api.github.com/users/scottrigby/events{/privacy} + followers_url: https://api.github.com/users/scottrigby/followers + following_url: https://api.github.com/users/scottrigby/following{/other_user} + gists_url: https://api.github.com/users/scottrigby/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/scottrigby + id: 407675 + login: scottrigby + node_id: MDQ6VXNlcjQwNzY3NQ== + organizations_url: https://api.github.com/users/scottrigby/orgs + received_events_url: https://api.github.com/users/scottrigby/received_events + repos_url: https://api.github.com/users/scottrigby/repos + site_admin: false + starred_url: https://api.github.com/users/scottrigby/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/scottrigby/subscriptions + type: User + url: https://api.github.com/users/scottrigby + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/220726911 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.17.0/helm-v3.17.0-darwin-amd64.tar.gz.sha256.asc + content_type: text/plain + created_at: "2025-01-15T21:55:03Z" + download_count: 0 + id: 220726912 + label: null + name: helm-v3.17.0-darwin-amd64.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4NKAaA + size: 833 + state: uploaded + updated_at: "2025-01-15T21:55:03Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/407675?v=4 + events_url: https://api.github.com/users/scottrigby/events{/privacy} + followers_url: https://api.github.com/users/scottrigby/followers + following_url: https://api.github.com/users/scottrigby/following{/other_user} + gists_url: https://api.github.com/users/scottrigby/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/scottrigby + id: 407675 + login: scottrigby + node_id: MDQ6VXNlcjQwNzY3NQ== + organizations_url: https://api.github.com/users/scottrigby/orgs + received_events_url: https://api.github.com/users/scottrigby/received_events + repos_url: https://api.github.com/users/scottrigby/repos + site_admin: false + starred_url: https://api.github.com/users/scottrigby/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/scottrigby/subscriptions + type: User + url: https://api.github.com/users/scottrigby + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/220726912 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.17.0/helm-v3.17.0-darwin-amd64.tar.gz.sha256sum.asc + content_type: text/plain + created_at: "2025-01-15T21:55:03Z" + download_count: 0 + id: 220726913 + label: null + name: helm-v3.17.0-darwin-amd64.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4NKAaB + size: 833 + state: uploaded + updated_at: "2025-01-15T21:55:03Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/407675?v=4 + events_url: https://api.github.com/users/scottrigby/events{/privacy} + followers_url: https://api.github.com/users/scottrigby/followers + following_url: https://api.github.com/users/scottrigby/following{/other_user} + gists_url: https://api.github.com/users/scottrigby/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/scottrigby + id: 407675 + login: scottrigby + node_id: MDQ6VXNlcjQwNzY3NQ== + organizations_url: https://api.github.com/users/scottrigby/orgs + received_events_url: https://api.github.com/users/scottrigby/received_events + repos_url: https://api.github.com/users/scottrigby/repos + site_admin: false + starred_url: https://api.github.com/users/scottrigby/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/scottrigby/subscriptions + type: User + url: https://api.github.com/users/scottrigby + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/220726913 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.17.0/helm-v3.17.0-darwin-arm64.tar.gz.asc + content_type: text/plain + created_at: "2025-01-15T21:55:03Z" + download_count: 0 + id: 220726914 + label: null + name: helm-v3.17.0-darwin-arm64.tar.gz.asc + node_id: RA_kwDOApspmc4NKAaC + size: 833 + state: uploaded + updated_at: "2025-01-15T21:55:04Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/407675?v=4 + events_url: https://api.github.com/users/scottrigby/events{/privacy} + followers_url: https://api.github.com/users/scottrigby/followers + following_url: https://api.github.com/users/scottrigby/following{/other_user} + gists_url: https://api.github.com/users/scottrigby/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/scottrigby + id: 407675 + login: scottrigby + node_id: MDQ6VXNlcjQwNzY3NQ== + organizations_url: https://api.github.com/users/scottrigby/orgs + received_events_url: https://api.github.com/users/scottrigby/received_events + repos_url: https://api.github.com/users/scottrigby/repos + site_admin: false + starred_url: https://api.github.com/users/scottrigby/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/scottrigby/subscriptions + type: User + url: https://api.github.com/users/scottrigby + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/220726914 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.17.0/helm-v3.17.0-darwin-arm64.tar.gz.sha256.asc + content_type: text/plain + created_at: "2025-01-15T21:55:04Z" + download_count: 0 + id: 220726917 + label: null + name: helm-v3.17.0-darwin-arm64.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4NKAaF + size: 833 + state: uploaded + updated_at: "2025-01-15T21:55:04Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/407675?v=4 + events_url: https://api.github.com/users/scottrigby/events{/privacy} + followers_url: https://api.github.com/users/scottrigby/followers + following_url: https://api.github.com/users/scottrigby/following{/other_user} + gists_url: https://api.github.com/users/scottrigby/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/scottrigby + id: 407675 + login: scottrigby + node_id: MDQ6VXNlcjQwNzY3NQ== + organizations_url: https://api.github.com/users/scottrigby/orgs + received_events_url: https://api.github.com/users/scottrigby/received_events + repos_url: https://api.github.com/users/scottrigby/repos + site_admin: false + starred_url: https://api.github.com/users/scottrigby/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/scottrigby/subscriptions + type: User + url: https://api.github.com/users/scottrigby + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/220726917 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.17.0/helm-v3.17.0-darwin-arm64.tar.gz.sha256sum.asc + content_type: text/plain + created_at: "2025-01-15T21:55:04Z" + download_count: 0 + id: 220726918 + label: null + name: helm-v3.17.0-darwin-arm64.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4NKAaG + size: 833 + state: uploaded + updated_at: "2025-01-15T21:55:04Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/407675?v=4 + events_url: https://api.github.com/users/scottrigby/events{/privacy} + followers_url: https://api.github.com/users/scottrigby/followers + following_url: https://api.github.com/users/scottrigby/following{/other_user} + gists_url: https://api.github.com/users/scottrigby/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/scottrigby + id: 407675 + login: scottrigby + node_id: MDQ6VXNlcjQwNzY3NQ== + organizations_url: https://api.github.com/users/scottrigby/orgs + received_events_url: https://api.github.com/users/scottrigby/received_events + repos_url: https://api.github.com/users/scottrigby/repos + site_admin: false + starred_url: https://api.github.com/users/scottrigby/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/scottrigby/subscriptions + type: User + url: https://api.github.com/users/scottrigby + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/220726918 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.17.0/helm-v3.17.0-linux-386.tar.gz.asc + content_type: text/plain + created_at: "2025-01-15T21:55:04Z" + download_count: 0 + id: 220726919 + label: null + name: helm-v3.17.0-linux-386.tar.gz.asc + node_id: RA_kwDOApspmc4NKAaH + size: 833 + state: uploaded + updated_at: "2025-01-15T21:55:04Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/407675?v=4 + events_url: https://api.github.com/users/scottrigby/events{/privacy} + followers_url: https://api.github.com/users/scottrigby/followers + following_url: https://api.github.com/users/scottrigby/following{/other_user} + gists_url: https://api.github.com/users/scottrigby/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/scottrigby + id: 407675 + login: scottrigby + node_id: MDQ6VXNlcjQwNzY3NQ== + organizations_url: https://api.github.com/users/scottrigby/orgs + received_events_url: https://api.github.com/users/scottrigby/received_events + repos_url: https://api.github.com/users/scottrigby/repos + site_admin: false + starred_url: https://api.github.com/users/scottrigby/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/scottrigby/subscriptions + type: User + url: https://api.github.com/users/scottrigby + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/220726919 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.17.0/helm-v3.17.0-linux-386.tar.gz.sha256.asc + content_type: text/plain + created_at: "2025-01-15T21:55:04Z" + download_count: 0 + id: 220726921 + label: null + name: helm-v3.17.0-linux-386.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4NKAaJ + size: 833 + state: uploaded + updated_at: "2025-01-15T21:55:04Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/407675?v=4 + events_url: https://api.github.com/users/scottrigby/events{/privacy} + followers_url: https://api.github.com/users/scottrigby/followers + following_url: https://api.github.com/users/scottrigby/following{/other_user} + gists_url: https://api.github.com/users/scottrigby/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/scottrigby + id: 407675 + login: scottrigby + node_id: MDQ6VXNlcjQwNzY3NQ== + organizations_url: https://api.github.com/users/scottrigby/orgs + received_events_url: https://api.github.com/users/scottrigby/received_events + repos_url: https://api.github.com/users/scottrigby/repos + site_admin: false + starred_url: https://api.github.com/users/scottrigby/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/scottrigby/subscriptions + type: User + url: https://api.github.com/users/scottrigby + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/220726921 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.17.0/helm-v3.17.0-linux-386.tar.gz.sha256sum.asc + content_type: text/plain + created_at: "2025-01-15T21:55:04Z" + download_count: 0 + id: 220726922 + label: null + name: helm-v3.17.0-linux-386.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4NKAaK + size: 833 + state: uploaded + updated_at: "2025-01-15T21:55:04Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/407675?v=4 + events_url: https://api.github.com/users/scottrigby/events{/privacy} + followers_url: https://api.github.com/users/scottrigby/followers + following_url: https://api.github.com/users/scottrigby/following{/other_user} + gists_url: https://api.github.com/users/scottrigby/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/scottrigby + id: 407675 + login: scottrigby + node_id: MDQ6VXNlcjQwNzY3NQ== + organizations_url: https://api.github.com/users/scottrigby/orgs + received_events_url: https://api.github.com/users/scottrigby/received_events + repos_url: https://api.github.com/users/scottrigby/repos + site_admin: false + starred_url: https://api.github.com/users/scottrigby/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/scottrigby/subscriptions + type: User + url: https://api.github.com/users/scottrigby + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/220726922 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.17.0/helm-v3.17.0-linux-amd64.tar.gz.asc + content_type: text/plain + created_at: "2025-01-15T21:55:04Z" + download_count: 0 + id: 220726924 + label: null + name: helm-v3.17.0-linux-amd64.tar.gz.asc + node_id: RA_kwDOApspmc4NKAaM + size: 833 + state: uploaded + updated_at: "2025-01-15T21:55:04Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/407675?v=4 + events_url: https://api.github.com/users/scottrigby/events{/privacy} + followers_url: https://api.github.com/users/scottrigby/followers + following_url: https://api.github.com/users/scottrigby/following{/other_user} + gists_url: https://api.github.com/users/scottrigby/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/scottrigby + id: 407675 + login: scottrigby + node_id: MDQ6VXNlcjQwNzY3NQ== + organizations_url: https://api.github.com/users/scottrigby/orgs + received_events_url: https://api.github.com/users/scottrigby/received_events + repos_url: https://api.github.com/users/scottrigby/repos + site_admin: false + starred_url: https://api.github.com/users/scottrigby/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/scottrigby/subscriptions + type: User + url: https://api.github.com/users/scottrigby + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/220726924 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.17.0/helm-v3.17.0-linux-amd64.tar.gz.sha256.asc + content_type: text/plain + created_at: "2025-01-15T21:55:04Z" + download_count: 0 + id: 220726926 + label: null + name: helm-v3.17.0-linux-amd64.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4NKAaO + size: 833 + state: uploaded + updated_at: "2025-01-15T21:55:05Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/407675?v=4 + events_url: https://api.github.com/users/scottrigby/events{/privacy} + followers_url: https://api.github.com/users/scottrigby/followers + following_url: https://api.github.com/users/scottrigby/following{/other_user} + gists_url: https://api.github.com/users/scottrigby/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/scottrigby + id: 407675 + login: scottrigby + node_id: MDQ6VXNlcjQwNzY3NQ== + organizations_url: https://api.github.com/users/scottrigby/orgs + received_events_url: https://api.github.com/users/scottrigby/received_events + repos_url: https://api.github.com/users/scottrigby/repos + site_admin: false + starred_url: https://api.github.com/users/scottrigby/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/scottrigby/subscriptions + type: User + url: https://api.github.com/users/scottrigby + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/220726926 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.17.0/helm-v3.17.0-linux-amd64.tar.gz.sha256sum.asc + content_type: text/plain + created_at: "2025-01-15T21:55:05Z" + download_count: 0 + id: 220726927 + label: null + name: helm-v3.17.0-linux-amd64.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4NKAaP + size: 833 + state: uploaded + updated_at: "2025-01-15T21:55:05Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/407675?v=4 + events_url: https://api.github.com/users/scottrigby/events{/privacy} + followers_url: https://api.github.com/users/scottrigby/followers + following_url: https://api.github.com/users/scottrigby/following{/other_user} + gists_url: https://api.github.com/users/scottrigby/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/scottrigby + id: 407675 + login: scottrigby + node_id: MDQ6VXNlcjQwNzY3NQ== + organizations_url: https://api.github.com/users/scottrigby/orgs + received_events_url: https://api.github.com/users/scottrigby/received_events + repos_url: https://api.github.com/users/scottrigby/repos + site_admin: false + starred_url: https://api.github.com/users/scottrigby/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/scottrigby/subscriptions + type: User + url: https://api.github.com/users/scottrigby + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/220726927 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.17.0/helm-v3.17.0-linux-arm.tar.gz.asc + content_type: text/plain + created_at: "2025-01-15T21:55:05Z" + download_count: 0 + id: 220726928 + label: null + name: helm-v3.17.0-linux-arm.tar.gz.asc + node_id: RA_kwDOApspmc4NKAaQ + size: 833 + state: uploaded + updated_at: "2025-01-15T21:55:05Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/407675?v=4 + events_url: https://api.github.com/users/scottrigby/events{/privacy} + followers_url: https://api.github.com/users/scottrigby/followers + following_url: https://api.github.com/users/scottrigby/following{/other_user} + gists_url: https://api.github.com/users/scottrigby/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/scottrigby + id: 407675 + login: scottrigby + node_id: MDQ6VXNlcjQwNzY3NQ== + organizations_url: https://api.github.com/users/scottrigby/orgs + received_events_url: https://api.github.com/users/scottrigby/received_events + repos_url: https://api.github.com/users/scottrigby/repos + site_admin: false + starred_url: https://api.github.com/users/scottrigby/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/scottrigby/subscriptions + type: User + url: https://api.github.com/users/scottrigby + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/220726928 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.17.0/helm-v3.17.0-linux-arm.tar.gz.sha256.asc + content_type: text/plain + created_at: "2025-01-15T21:55:05Z" + download_count: 0 + id: 220726930 + label: null + name: helm-v3.17.0-linux-arm.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4NKAaS + size: 833 + state: uploaded + updated_at: "2025-01-15T21:55:05Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/407675?v=4 + events_url: https://api.github.com/users/scottrigby/events{/privacy} + followers_url: https://api.github.com/users/scottrigby/followers + following_url: https://api.github.com/users/scottrigby/following{/other_user} + gists_url: https://api.github.com/users/scottrigby/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/scottrigby + id: 407675 + login: scottrigby + node_id: MDQ6VXNlcjQwNzY3NQ== + organizations_url: https://api.github.com/users/scottrigby/orgs + received_events_url: https://api.github.com/users/scottrigby/received_events + repos_url: https://api.github.com/users/scottrigby/repos + site_admin: false + starred_url: https://api.github.com/users/scottrigby/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/scottrigby/subscriptions + type: User + url: https://api.github.com/users/scottrigby + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/220726930 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.17.0/helm-v3.17.0-linux-arm.tar.gz.sha256sum.asc + content_type: text/plain + created_at: "2025-01-15T21:55:05Z" + download_count: 0 + id: 220726931 + label: null + name: helm-v3.17.0-linux-arm.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4NKAaT + size: 833 + state: uploaded + updated_at: "2025-01-15T21:55:05Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/407675?v=4 + events_url: https://api.github.com/users/scottrigby/events{/privacy} + followers_url: https://api.github.com/users/scottrigby/followers + following_url: https://api.github.com/users/scottrigby/following{/other_user} + gists_url: https://api.github.com/users/scottrigby/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/scottrigby + id: 407675 + login: scottrigby + node_id: MDQ6VXNlcjQwNzY3NQ== + organizations_url: https://api.github.com/users/scottrigby/orgs + received_events_url: https://api.github.com/users/scottrigby/received_events + repos_url: https://api.github.com/users/scottrigby/repos + site_admin: false + starred_url: https://api.github.com/users/scottrigby/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/scottrigby/subscriptions + type: User + url: https://api.github.com/users/scottrigby + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/220726931 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.17.0/helm-v3.17.0-linux-arm64.tar.gz.asc + content_type: text/plain + created_at: "2025-01-15T21:55:05Z" + download_count: 0 + id: 220726932 + label: null + name: helm-v3.17.0-linux-arm64.tar.gz.asc + node_id: RA_kwDOApspmc4NKAaU + size: 833 + state: uploaded + updated_at: "2025-01-15T21:55:05Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/407675?v=4 + events_url: https://api.github.com/users/scottrigby/events{/privacy} + followers_url: https://api.github.com/users/scottrigby/followers + following_url: https://api.github.com/users/scottrigby/following{/other_user} + gists_url: https://api.github.com/users/scottrigby/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/scottrigby + id: 407675 + login: scottrigby + node_id: MDQ6VXNlcjQwNzY3NQ== + organizations_url: https://api.github.com/users/scottrigby/orgs + received_events_url: https://api.github.com/users/scottrigby/received_events + repos_url: https://api.github.com/users/scottrigby/repos + site_admin: false + starred_url: https://api.github.com/users/scottrigby/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/scottrigby/subscriptions + type: User + url: https://api.github.com/users/scottrigby + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/220726932 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.17.0/helm-v3.17.0-linux-arm64.tar.gz.sha256.asc + content_type: text/plain + created_at: "2025-01-15T21:55:05Z" + download_count: 0 + id: 220726934 + label: null + name: helm-v3.17.0-linux-arm64.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4NKAaW + size: 833 + state: uploaded + updated_at: "2025-01-15T21:55:06Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/407675?v=4 + events_url: https://api.github.com/users/scottrigby/events{/privacy} + followers_url: https://api.github.com/users/scottrigby/followers + following_url: https://api.github.com/users/scottrigby/following{/other_user} + gists_url: https://api.github.com/users/scottrigby/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/scottrigby + id: 407675 + login: scottrigby + node_id: MDQ6VXNlcjQwNzY3NQ== + organizations_url: https://api.github.com/users/scottrigby/orgs + received_events_url: https://api.github.com/users/scottrigby/received_events + repos_url: https://api.github.com/users/scottrigby/repos + site_admin: false + starred_url: https://api.github.com/users/scottrigby/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/scottrigby/subscriptions + type: User + url: https://api.github.com/users/scottrigby + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/220726934 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.17.0/helm-v3.17.0-linux-arm64.tar.gz.sha256sum.asc + content_type: text/plain + created_at: "2025-01-15T21:55:06Z" + download_count: 0 + id: 220726935 + label: null + name: helm-v3.17.0-linux-arm64.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4NKAaX + size: 833 + state: uploaded + updated_at: "2025-01-15T21:55:06Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/407675?v=4 + events_url: https://api.github.com/users/scottrigby/events{/privacy} + followers_url: https://api.github.com/users/scottrigby/followers + following_url: https://api.github.com/users/scottrigby/following{/other_user} + gists_url: https://api.github.com/users/scottrigby/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/scottrigby + id: 407675 + login: scottrigby + node_id: MDQ6VXNlcjQwNzY3NQ== + organizations_url: https://api.github.com/users/scottrigby/orgs + received_events_url: https://api.github.com/users/scottrigby/received_events + repos_url: https://api.github.com/users/scottrigby/repos + site_admin: false + starred_url: https://api.github.com/users/scottrigby/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/scottrigby/subscriptions + type: User + url: https://api.github.com/users/scottrigby + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/220726935 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.17.0/helm-v3.17.0-linux-ppc64le.tar.gz.asc + content_type: text/plain + created_at: "2025-01-15T21:55:06Z" + download_count: 0 + id: 220726936 + label: null + name: helm-v3.17.0-linux-ppc64le.tar.gz.asc + node_id: RA_kwDOApspmc4NKAaY + size: 833 + state: uploaded + updated_at: "2025-01-15T21:55:06Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/407675?v=4 + events_url: https://api.github.com/users/scottrigby/events{/privacy} + followers_url: https://api.github.com/users/scottrigby/followers + following_url: https://api.github.com/users/scottrigby/following{/other_user} + gists_url: https://api.github.com/users/scottrigby/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/scottrigby + id: 407675 + login: scottrigby + node_id: MDQ6VXNlcjQwNzY3NQ== + organizations_url: https://api.github.com/users/scottrigby/orgs + received_events_url: https://api.github.com/users/scottrigby/received_events + repos_url: https://api.github.com/users/scottrigby/repos + site_admin: false + starred_url: https://api.github.com/users/scottrigby/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/scottrigby/subscriptions + type: User + url: https://api.github.com/users/scottrigby + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/220726936 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.17.0/helm-v3.17.0-linux-ppc64le.tar.gz.sha256.asc + content_type: text/plain + created_at: "2025-01-15T21:55:06Z" + download_count: 0 + id: 220726938 + label: null + name: helm-v3.17.0-linux-ppc64le.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4NKAaa + size: 833 + state: uploaded + updated_at: "2025-01-15T21:55:06Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/407675?v=4 + events_url: https://api.github.com/users/scottrigby/events{/privacy} + followers_url: https://api.github.com/users/scottrigby/followers + following_url: https://api.github.com/users/scottrigby/following{/other_user} + gists_url: https://api.github.com/users/scottrigby/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/scottrigby + id: 407675 + login: scottrigby + node_id: MDQ6VXNlcjQwNzY3NQ== + organizations_url: https://api.github.com/users/scottrigby/orgs + received_events_url: https://api.github.com/users/scottrigby/received_events + repos_url: https://api.github.com/users/scottrigby/repos + site_admin: false + starred_url: https://api.github.com/users/scottrigby/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/scottrigby/subscriptions + type: User + url: https://api.github.com/users/scottrigby + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/220726938 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.17.0/helm-v3.17.0-linux-ppc64le.tar.gz.sha256sum.asc + content_type: text/plain + created_at: "2025-01-15T21:55:06Z" + download_count: 0 + id: 220726939 + label: null + name: helm-v3.17.0-linux-ppc64le.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4NKAab + size: 833 + state: uploaded + updated_at: "2025-01-15T21:55:06Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/407675?v=4 + events_url: https://api.github.com/users/scottrigby/events{/privacy} + followers_url: https://api.github.com/users/scottrigby/followers + following_url: https://api.github.com/users/scottrigby/following{/other_user} + gists_url: https://api.github.com/users/scottrigby/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/scottrigby + id: 407675 + login: scottrigby + node_id: MDQ6VXNlcjQwNzY3NQ== + organizations_url: https://api.github.com/users/scottrigby/orgs + received_events_url: https://api.github.com/users/scottrigby/received_events + repos_url: https://api.github.com/users/scottrigby/repos + site_admin: false + starred_url: https://api.github.com/users/scottrigby/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/scottrigby/subscriptions + type: User + url: https://api.github.com/users/scottrigby + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/220726939 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.17.0/helm-v3.17.0-linux-riscv64.tar.gz.asc + content_type: text/plain + created_at: "2025-01-15T21:55:06Z" + download_count: 0 + id: 220726940 + label: null + name: helm-v3.17.0-linux-riscv64.tar.gz.asc + node_id: RA_kwDOApspmc4NKAac + size: 833 + state: uploaded + updated_at: "2025-01-15T21:55:06Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/407675?v=4 + events_url: https://api.github.com/users/scottrigby/events{/privacy} + followers_url: https://api.github.com/users/scottrigby/followers + following_url: https://api.github.com/users/scottrigby/following{/other_user} + gists_url: https://api.github.com/users/scottrigby/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/scottrigby + id: 407675 + login: scottrigby + node_id: MDQ6VXNlcjQwNzY3NQ== + organizations_url: https://api.github.com/users/scottrigby/orgs + received_events_url: https://api.github.com/users/scottrigby/received_events + repos_url: https://api.github.com/users/scottrigby/repos + site_admin: false + starred_url: https://api.github.com/users/scottrigby/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/scottrigby/subscriptions + type: User + url: https://api.github.com/users/scottrigby + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/220726940 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.17.0/helm-v3.17.0-linux-riscv64.tar.gz.sha256.asc + content_type: text/plain + created_at: "2025-01-15T21:55:06Z" + download_count: 0 + id: 220726941 + label: null + name: helm-v3.17.0-linux-riscv64.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4NKAad + size: 833 + state: uploaded + updated_at: "2025-01-15T21:55:06Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/407675?v=4 + events_url: https://api.github.com/users/scottrigby/events{/privacy} + followers_url: https://api.github.com/users/scottrigby/followers + following_url: https://api.github.com/users/scottrigby/following{/other_user} + gists_url: https://api.github.com/users/scottrigby/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/scottrigby + id: 407675 + login: scottrigby + node_id: MDQ6VXNlcjQwNzY3NQ== + organizations_url: https://api.github.com/users/scottrigby/orgs + received_events_url: https://api.github.com/users/scottrigby/received_events + repos_url: https://api.github.com/users/scottrigby/repos + site_admin: false + starred_url: https://api.github.com/users/scottrigby/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/scottrigby/subscriptions + type: User + url: https://api.github.com/users/scottrigby + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/220726941 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.17.0/helm-v3.17.0-linux-riscv64.tar.gz.sha256sum.asc + content_type: text/plain + created_at: "2025-01-15T21:55:06Z" + download_count: 0 + id: 220726944 + label: null + name: helm-v3.17.0-linux-riscv64.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4NKAag + size: 833 + state: uploaded + updated_at: "2025-01-15T21:55:07Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/407675?v=4 + events_url: https://api.github.com/users/scottrigby/events{/privacy} + followers_url: https://api.github.com/users/scottrigby/followers + following_url: https://api.github.com/users/scottrigby/following{/other_user} + gists_url: https://api.github.com/users/scottrigby/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/scottrigby + id: 407675 + login: scottrigby + node_id: MDQ6VXNlcjQwNzY3NQ== + organizations_url: https://api.github.com/users/scottrigby/orgs + received_events_url: https://api.github.com/users/scottrigby/received_events + repos_url: https://api.github.com/users/scottrigby/repos + site_admin: false + starred_url: https://api.github.com/users/scottrigby/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/scottrigby/subscriptions + type: User + url: https://api.github.com/users/scottrigby + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/220726944 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.17.0/helm-v3.17.0-linux-s390x.tar.gz.asc + content_type: text/plain + created_at: "2025-01-15T21:55:07Z" + download_count: 0 + id: 220726945 + label: null + name: helm-v3.17.0-linux-s390x.tar.gz.asc + node_id: RA_kwDOApspmc4NKAah + size: 833 + state: uploaded + updated_at: "2025-01-15T21:55:07Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/407675?v=4 + events_url: https://api.github.com/users/scottrigby/events{/privacy} + followers_url: https://api.github.com/users/scottrigby/followers + following_url: https://api.github.com/users/scottrigby/following{/other_user} + gists_url: https://api.github.com/users/scottrigby/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/scottrigby + id: 407675 + login: scottrigby + node_id: MDQ6VXNlcjQwNzY3NQ== + organizations_url: https://api.github.com/users/scottrigby/orgs + received_events_url: https://api.github.com/users/scottrigby/received_events + repos_url: https://api.github.com/users/scottrigby/repos + site_admin: false + starred_url: https://api.github.com/users/scottrigby/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/scottrigby/subscriptions + type: User + url: https://api.github.com/users/scottrigby + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/220726945 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.17.0/helm-v3.17.0-linux-s390x.tar.gz.sha256.asc + content_type: text/plain + created_at: "2025-01-15T21:55:07Z" + download_count: 0 + id: 220726946 + label: null + name: helm-v3.17.0-linux-s390x.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4NKAai + size: 833 + state: uploaded + updated_at: "2025-01-15T21:55:07Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/407675?v=4 + events_url: https://api.github.com/users/scottrigby/events{/privacy} + followers_url: https://api.github.com/users/scottrigby/followers + following_url: https://api.github.com/users/scottrigby/following{/other_user} + gists_url: https://api.github.com/users/scottrigby/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/scottrigby + id: 407675 + login: scottrigby + node_id: MDQ6VXNlcjQwNzY3NQ== + organizations_url: https://api.github.com/users/scottrigby/orgs + received_events_url: https://api.github.com/users/scottrigby/received_events + repos_url: https://api.github.com/users/scottrigby/repos + site_admin: false + starred_url: https://api.github.com/users/scottrigby/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/scottrigby/subscriptions + type: User + url: https://api.github.com/users/scottrigby + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/220726946 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.17.0/helm-v3.17.0-linux-s390x.tar.gz.sha256sum.asc + content_type: text/plain + created_at: "2025-01-15T21:55:07Z" + download_count: 0 + id: 220726947 + label: null + name: helm-v3.17.0-linux-s390x.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4NKAaj + size: 833 + state: uploaded + updated_at: "2025-01-15T21:55:07Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/407675?v=4 + events_url: https://api.github.com/users/scottrigby/events{/privacy} + followers_url: https://api.github.com/users/scottrigby/followers + following_url: https://api.github.com/users/scottrigby/following{/other_user} + gists_url: https://api.github.com/users/scottrigby/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/scottrigby + id: 407675 + login: scottrigby + node_id: MDQ6VXNlcjQwNzY3NQ== + organizations_url: https://api.github.com/users/scottrigby/orgs + received_events_url: https://api.github.com/users/scottrigby/received_events + repos_url: https://api.github.com/users/scottrigby/repos + site_admin: false + starred_url: https://api.github.com/users/scottrigby/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/scottrigby/subscriptions + type: User + url: https://api.github.com/users/scottrigby + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/220726947 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.17.0/helm-v3.17.0-windows-amd64.zip.asc + content_type: text/plain + created_at: "2025-01-15T21:55:07Z" + download_count: 0 + id: 220726948 + label: null + name: helm-v3.17.0-windows-amd64.zip.asc + node_id: RA_kwDOApspmc4NKAak + size: 833 + state: uploaded + updated_at: "2025-01-15T21:55:07Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/407675?v=4 + events_url: https://api.github.com/users/scottrigby/events{/privacy} + followers_url: https://api.github.com/users/scottrigby/followers + following_url: https://api.github.com/users/scottrigby/following{/other_user} + gists_url: https://api.github.com/users/scottrigby/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/scottrigby + id: 407675 + login: scottrigby + node_id: MDQ6VXNlcjQwNzY3NQ== + organizations_url: https://api.github.com/users/scottrigby/orgs + received_events_url: https://api.github.com/users/scottrigby/received_events + repos_url: https://api.github.com/users/scottrigby/repos + site_admin: false + starred_url: https://api.github.com/users/scottrigby/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/scottrigby/subscriptions + type: User + url: https://api.github.com/users/scottrigby + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/220726948 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.17.0/helm-v3.17.0-windows-amd64.zip.sha256.asc + content_type: text/plain + created_at: "2025-01-15T21:55:07Z" + download_count: 0 + id: 220726949 + label: null + name: helm-v3.17.0-windows-amd64.zip.sha256.asc + node_id: RA_kwDOApspmc4NKAal + size: 833 + state: uploaded + updated_at: "2025-01-15T21:55:07Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/407675?v=4 + events_url: https://api.github.com/users/scottrigby/events{/privacy} + followers_url: https://api.github.com/users/scottrigby/followers + following_url: https://api.github.com/users/scottrigby/following{/other_user} + gists_url: https://api.github.com/users/scottrigby/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/scottrigby + id: 407675 + login: scottrigby + node_id: MDQ6VXNlcjQwNzY3NQ== + organizations_url: https://api.github.com/users/scottrigby/orgs + received_events_url: https://api.github.com/users/scottrigby/received_events + repos_url: https://api.github.com/users/scottrigby/repos + site_admin: false + starred_url: https://api.github.com/users/scottrigby/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/scottrigby/subscriptions + type: User + url: https://api.github.com/users/scottrigby + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/220726949 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.17.0/helm-v3.17.0-windows-amd64.zip.sha256sum.asc + content_type: text/plain + created_at: "2025-01-15T21:55:07Z" + download_count: 0 + id: 220726950 + label: null + name: helm-v3.17.0-windows-amd64.zip.sha256sum.asc + node_id: RA_kwDOApspmc4NKAam + size: 833 + state: uploaded + updated_at: "2025-01-15T21:55:07Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/407675?v=4 + events_url: https://api.github.com/users/scottrigby/events{/privacy} + followers_url: https://api.github.com/users/scottrigby/followers + following_url: https://api.github.com/users/scottrigby/following{/other_user} + gists_url: https://api.github.com/users/scottrigby/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/scottrigby + id: 407675 + login: scottrigby + node_id: MDQ6VXNlcjQwNzY3NQ== + organizations_url: https://api.github.com/users/scottrigby/orgs + received_events_url: https://api.github.com/users/scottrigby/received_events + repos_url: https://api.github.com/users/scottrigby/repos + site_admin: false + starred_url: https://api.github.com/users/scottrigby/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/scottrigby/subscriptions + type: User + url: https://api.github.com/users/scottrigby + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/220726950 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.17.0/helm-v3.17.0-windows-arm64.zip.asc + content_type: text/plain + created_at: "2025-01-15T21:55:07Z" + download_count: 0 + id: 220726952 + label: null + name: helm-v3.17.0-windows-arm64.zip.asc + node_id: RA_kwDOApspmc4NKAao + size: 833 + state: uploaded + updated_at: "2025-01-15T21:55:08Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/407675?v=4 + events_url: https://api.github.com/users/scottrigby/events{/privacy} + followers_url: https://api.github.com/users/scottrigby/followers + following_url: https://api.github.com/users/scottrigby/following{/other_user} + gists_url: https://api.github.com/users/scottrigby/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/scottrigby + id: 407675 + login: scottrigby + node_id: MDQ6VXNlcjQwNzY3NQ== + organizations_url: https://api.github.com/users/scottrigby/orgs + received_events_url: https://api.github.com/users/scottrigby/received_events + repos_url: https://api.github.com/users/scottrigby/repos + site_admin: false + starred_url: https://api.github.com/users/scottrigby/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/scottrigby/subscriptions + type: User + url: https://api.github.com/users/scottrigby + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/220726952 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.17.0/helm-v3.17.0-windows-arm64.zip.sha256.asc + content_type: text/plain + created_at: "2025-01-15T21:55:08Z" + download_count: 0 + id: 220726954 + label: null + name: helm-v3.17.0-windows-arm64.zip.sha256.asc + node_id: RA_kwDOApspmc4NKAaq + size: 833 + state: uploaded + updated_at: "2025-01-15T21:55:08Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/407675?v=4 + events_url: https://api.github.com/users/scottrigby/events{/privacy} + followers_url: https://api.github.com/users/scottrigby/followers + following_url: https://api.github.com/users/scottrigby/following{/other_user} + gists_url: https://api.github.com/users/scottrigby/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/scottrigby + id: 407675 + login: scottrigby + node_id: MDQ6VXNlcjQwNzY3NQ== + organizations_url: https://api.github.com/users/scottrigby/orgs + received_events_url: https://api.github.com/users/scottrigby/received_events + repos_url: https://api.github.com/users/scottrigby/repos + site_admin: false + starred_url: https://api.github.com/users/scottrigby/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/scottrigby/subscriptions + type: User + url: https://api.github.com/users/scottrigby + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/220726954 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.17.0/helm-v3.17.0-windows-arm64.zip.sha256sum.asc + content_type: text/plain + created_at: "2025-01-15T21:55:08Z" + download_count: 0 + id: 220726955 + label: null + name: helm-v3.17.0-windows-arm64.zip.sha256sum.asc + node_id: RA_kwDOApspmc4NKAar + size: 833 + state: uploaded + updated_at: "2025-01-15T21:55:08Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/407675?v=4 + events_url: https://api.github.com/users/scottrigby/events{/privacy} + followers_url: https://api.github.com/users/scottrigby/followers + following_url: https://api.github.com/users/scottrigby/following{/other_user} + gists_url: https://api.github.com/users/scottrigby/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/scottrigby + id: 407675 + login: scottrigby + node_id: MDQ6VXNlcjQwNzY3NQ== + organizations_url: https://api.github.com/users/scottrigby/orgs + received_events_url: https://api.github.com/users/scottrigby/received_events + repos_url: https://api.github.com/users/scottrigby/repos + site_admin: false + starred_url: https://api.github.com/users/scottrigby/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/scottrigby/subscriptions + type: User + url: https://api.github.com/users/scottrigby + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/220726955 + assets_url: https://api.github.com/repos/helm/helm/releases/195010125/assets + author: + avatar_url: https://avatars.githubusercontent.com/u/407675?v=4 + events_url: https://api.github.com/users/scottrigby/events{/privacy} + followers_url: https://api.github.com/users/scottrigby/followers + following_url: https://api.github.com/users/scottrigby/following{/other_user} + gists_url: https://api.github.com/users/scottrigby/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/scottrigby + id: 407675 + login: scottrigby + node_id: MDQ6VXNlcjQwNzY3NQ== + organizations_url: https://api.github.com/users/scottrigby/orgs + received_events_url: https://api.github.com/users/scottrigby/received_events + repos_url: https://api.github.com/users/scottrigby/repos + site_admin: false + starred_url: https://api.github.com/users/scottrigby/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/scottrigby/subscriptions + type: User + url: https://api.github.com/users/scottrigby + user_view_type: public + body: "Helm v3.17.0 is a feature release. Users are encouraged to upgrade + for the best experience.\r\n\r\nThe community keeps growing, and we'd + love to see you there!\r\n\r\n- Join the discussion in [Kubernetes Slack](https://kubernetes.slack.com):\r\n + \ - for questions and just to hang out\r\n - for discussing PRs, code, + and bugs\r\n- Hang out at the Public Developer Call: Thursday, 9:30 Pacific + via [Zoom](https://zoom.us/j/696660622)\r\n- Test, debug, and contribute + charts: [ArtifactHub/packages](https://artifacthub.io/packages/search?kind=0)\r\n\r\n## + Notable Changes\r\n\r\n- Allow pulling and installation by OCI digest\r\n- + Annotations and dependencies are now in chart metadata output\r\n- New + --take-ownership flag for install and upgrade commands\r\n- SDK: Authorizer + and registry authorizer are now configurable\r\n- Removed the Kubernetes + configuration file permissions check\r\n- Added username/password to helm + push and dependency build/update subcommands\r\n- Added `toYamlPretty` + template function\r\n\r\n## Installation and Upgrading\r\n\r\nDownload + Helm v3.17.0. The common platform binaries are here:\r\n\r\n- [MacOS amd64](https://get.helm.sh/helm-v3.17.0-darwin-amd64.tar.gz) + ([checksum](https://get.helm.sh/helm-v3.17.0-darwin-amd64.tar.gz.sha256sum) + / 0d5fd51cf51eb4b9712d52ecd8f2a3cd865680595cca57db38ee01802bd466ea)\r\n- + [MacOS arm64](https://get.helm.sh/helm-v3.17.0-darwin-arm64.tar.gz) ([checksum](https://get.helm.sh/helm-v3.17.0-darwin-arm64.tar.gz.sha256sum) + / 5db292c69ba756ddbf139abb623b02860feef15c7f1a4ea69b77715b9165a261)\r\n- + [Linux amd64](https://get.helm.sh/helm-v3.17.0-linux-amd64.tar.gz) ([checksum](https://get.helm.sh/helm-v3.17.0-linux-amd64.tar.gz.sha256sum) + / fb5d12662fde6eeff36ac4ccacbf3abed96b0ee2de07afdde4edb14e613aee24)\r\n- + [Linux arm](https://get.helm.sh/helm-v3.17.0-linux-arm.tar.gz) ([checksum](https://get.helm.sh/helm-v3.17.0-linux-arm.tar.gz.sha256sum) + / a388478049bf4ad440fa394f28421aa43cec3631ba197a8203c485edbec3e3fe)\r\n- + [Linux arm64](https://get.helm.sh/helm-v3.17.0-linux-arm64.tar.gz) ([checksum](https://get.helm.sh/helm-v3.17.0-linux-arm64.tar.gz.sha256sum) + / c4d4be8e80082b7eaa411e3e231d62cf05d01cddfef59b0d01006a7901e11ee4)\r\n- + [Linux i386](https://get.helm.sh/helm-v3.17.0-linux-386.tar.gz) ([checksum](https://get.helm.sh/helm-v3.17.0-linux-386.tar.gz.sha256sum) + / af89be03bb15175cd27573b48f4b9621e08982ab7788dd36e073baac988d6b2e)\r\n- + [Linux ppc64le](https://get.helm.sh/helm-v3.17.0-linux-ppc64le.tar.gz) + ([checksum](https://get.helm.sh/helm-v3.17.0-linux-ppc64le.tar.gz.sha256sum) + / 32833acf72b240e9ca78a3eac630a0ba420e073b02df3030c369a287b8bdc769)\r\n- + [Linux s390x](https://get.helm.sh/helm-v3.17.0-linux-s390x.tar.gz) ([checksum](https://get.helm.sh/helm-v3.17.0-linux-s390x.tar.gz.sha256sum) + / 4b002d673ef35d78843c45cc169faf1040eec75937f19fccce41d2074f459653)\r\n- + [Linux riscv64](https://get.helm.sh/helm-v3.17.0-linux-riscv64.tar.gz) + ([checksum](https://get.helm.sh/helm-v3.17.0-linux-riscv64.tar.gz.sha256sum) + / 38297aca2046fd13f2e0415ecc9cdb006f4008b286467f5f217187647dbbab5b)\r\n- + [Windows amd64](https://get.helm.sh/helm-v3.17.0-windows-amd64.zip) ([checksum](https://get.helm.sh/helm-v3.17.0-windows-amd64.zip.sha256sum) + / 0625e51437107991922f76adbec4a4f12a4438942182677399ab758a3ec8bdc5)\r\n- + [Windows arm64](https://get.helm.sh/helm-v3.17.0-windows-arm64.zip) ([checksum](https://get.helm.sh/helm-v3.17.0-windows-arm64.zip.sha256sum) + / 5fd16dde353aa5909562f127befea8db3879ecf63050fea3fb106ff8bfdd1a9c)\r\n\r\nThis + release was signed with 208D D36E D5BB 3745 A167 43A4 C7C6 FBB5 B91C 1155 + \ and can be found at @r6by [keybase account](https://keybase.io/r6by). + Please use the attached signatures for verifying this release using gpg.\r\n\r\nThe + [Quickstart Guide](https://helm.sh/docs/intro/quickstart/) will get you + going from there. For **upgrade instructions** or detailed installation + notes, check the [install guide](https://helm.sh/docs/intro/install/). + You can also use a [script to install](https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3) + on any system with `bash`.\r\n\r\n## What's Next\r\n\r\n- 3.17.1 is the + next patch release and will be on February 12, 2025\r\n- 3.18.0 is the + next minor release and will be on May 14, 2025\r\n\r\n## Changelog\r\n\r\n- + bump version to v3.17.0 301108edc7ac2a8ba79e4ebf5701b0b6ce6a31e4 (Matt + Farina)\r\n- fix: make ORAS reference private 949b2e604067a43797c640db4d6ed69af7aa3e5b + (Terry Howe)\r\n- fix: issue with helm template and oci chart aba95b9cb4827fe932e5eebabd55513333543d7c + (Terry Howe)\r\n- feat: allow installation by OCI digest c3e5217d85f37ba6adb570c3f2ff78dc7dfb343c + (Terry Howe)\r\n- Bump the k8s-io group with 7 updates 33a0ee7b9ac19d5578ef315cb4c220fe5ab069f1 + (dependabot[bot])\r\n- Upgrade golang.org/x/net to v0.33.0 to address + CVE-2024-45338 79993d2e5bb05a1eba5978353db084f1ca9cb7ac (cx)\r\n- Update + golangci-lint version 037c18af3521c78cff41cfb84db01fb5847a98fb (Matt Farina)\r\n- + Update to Go 1.23 9f620b857a30ab377473ae626d68f3b3125ac928 (Matt Farina)\r\n- + ref(create): don't render empty resource fields ba180a3b6a82c8ae279e6cd51df78004c9de8a40 + (dnskr)\r\n- Add annotations and dependencies to get metadata output The + output of helm get metadata includes a subset of the fields contained + in the chart.Metadata struct. This change adds the values of the annotations + field and the dependencies field to the output. 7321579092a5e84258c2f295031f175971700abe + (Niladri Halder)\r\n- Run `build-test` action on `dev-v3` branch 2042f7d35ab5bdd7a2090c8ed9b1e0881cc18aa2 + (George Jenkins)\r\n- Fix dev-v3 from take ownership changes a3a9e4f6432f7732f2e802962b8cea19c34817b8 + (Matt Farina)\r\n- Bump github.com/rubenv/sql-migrate from 1.7.0 to 1.7.1 + c7cd1772c788c4ea84f2912479484da477d07195 (dependabot[bot])\r\n- Bump github.com/cyphar/filepath-securejoin + from 0.3.4 to 0.3.6 ca61226c0313de9bdbc6a3db25ebc6c3d7086428 (dependabot[bot])\r\n- + Bump github.com/stretchr/testify from 1.9.0 to 1.10.0 9421fac58f190bd1aca4b411614aed6098d5ed4a + (dependabot[bot])\r\n- Bump github.com/containerd/containerd from 1.7.23 + to 1.7.24 562eb54fff03c9e8199500b78102ce6e00aa21b2 (dependabot[bot])\r\n- + Bump golang.org/x/crypto from 0.30.0 to 0.31.0 6ba4c6e000395403952c83668e47991139b656ad + (dependabot[bot])\r\n- Bump the k8s-io group with 7 updates ac162584190b898a12620b8b9a28a98a4c1e395b + (dependabot[bot])\r\n- fix test output edf7b66ae92b16f84d86fb98bc1508d66be7bcfb + (Mayank Shah)\r\n- fix test b9d58a19f1fdb58da7cb84370e60bcd29cc534f6 (Mayank + Shah)\r\n- fix upgrade 2541e465c402002a973682918ac8ee14bc8d7784 (Mayank + Shah)\r\n- Shadow ORAS remote.Client interface c40cf00a06b85d36856e0113733d385f38e02789 + (George Jenkins)\r\n- Make the authorizer and registry authorizer configurable + 3c2ab912637234635a614cbc34b349fa21db7cc0 (Ryan Nowak)\r\n- Rename CAFile + to CaFile for consistency 7a22dd28d13b02c6cd15bea19c35825f4f420caf (Evans + Mungai)\r\n- Update cmd/helm/upgrade.go 885e938793203383abb9331b4a0662df85d2cbeb + (Mayank Shah)\r\n- Update cmd/helm/install.go 7efa2862ad48be335b5e2346f53db36bfe7bbcb2 + (Mayank Shah)\r\n- Add --take-ownership flag for install and upgrade commands + c3a5f27c7742991a81c6bbc7bb8e15478f68a20d (Mayank Shah)\r\n- Adding CI + for dev-v3 branch b5a83ea8214b84cbe845319943ad641d91d02867 (Matt Farina)\r\n- + Bump golang.org/x/crypto from 0.28.0 to 0.29.0 a2d289f569786ab5ae81277c5d12cc83ce8aab41 + (dependabot[bot])\r\n- fix: fix label name e4062e7e000f54f6251c233329ef04f5d0799d59 + (wangjingcun)\r\n- Updating subchart load error to be more descriptive + 6f2f7d4781752325ef8cd94d59caa73509ceeb84 (Taylor Jasko)\r\n- Add tests + to `helm/pkg/kube/client_test.go` to cover `wait.go` 9fd943b481ef7ca8126e78787b06ed0e2e854331 + (Alex Johnson)\r\n- Fix typo in pkg/lint/rules/chartfile_test.go 0cc78c6ac34790698d66d419f22531040a3bf738 + (Zach Burgess)\r\n- Increasing the size of the runner used for releases. + 029e98324163aa7fd505bb8aab37337ef84d5830 (Matt Farina)\r\n- fix(hooks): + correct hooks delete order f4f4a6b81fbdb90412bd906fa5458482e94625bd (Suleiman + Dibirov)\r\n- Allow tests to run on loong64 a51ea6ec73f69c59ae13e228f27b006ad6efc54b + (Tianle Xu)\r\n- Bump actions/checkout from 4.2.1 to 4.2.2 f983342597dc5fc02bb3874956452186c3a7457a + (dependabot[bot])\r\n- Bump actions/setup-go from 5.0.2 to 5.1.0 c867af8e11c51af1aa00d1b2a56f0514fbf59e90 + (dependabot[bot])\r\n- chore: fix some function names in comment de9e138ec172c823788554f65710d103b9ac2388 + (wangjingcun)\r\n- Bump the k8s-io group with 7 updates e4304bd758aeaa8a620ed8b251e054617f2dfe1b + (dependabot[bot])\r\n- removing duplicate empty test 7e6b34d7dda28fa63b59ffdf6325cdf763dadf16 + (Robert Sirchia)\r\n- fixing unit test as per Matt 16a4e37f20910caa8830c223235a065029b8e8cb + (Robert Sirchia)\r\n- Ensure test fails without causing panic bdaa93b969f246119c4fd14267d286b041fb8f7f + (Evans Mungai)\r\n- Fix failing tests 3c4d0bb06138713bd009b3daf34f34a18a0850d7 + (Evans Mungai)\r\n- Remove unnecessary function arguments d25b0d9056fe1d7ff60280aa1c19f1771d687b9d + (Evans Mungai)\r\n- chore: Check tar is installed install script 3a5805ea7e8aa385cce278e0026656baa68fa83d + (Evans Mungai)\r\n- adding more unit test a205af755e4ab33109ebd728e4f58840c606029d + (Robert Sirchia)\r\n- Cleanup redundant GO11MODULE 4a15cc3385ade513ce28ca0c9f44440dab9627e2 + (George Jenkins)\r\n- adding test coverage for ready.go 999b85145aaa0c300dab69cdd7742699cf873ab2 + (Robert Sirchia)\r\n- fix(helm): Retry Conflict error for createResource, + deleteResource 79a1f2c80117cc4d9db7c48d80a7fc76d3d479ca (Andreas Karis)\r\n- + minor spelling fix ca584648ee3776591d4d438c7a2d67310d35c424 (Jon Olsson)\r\n- + Bump github.com/containerd/containerd from 1.7.12 to 1.7.23 fe4d0d94da4e7f75f2f22f8449860c82756eb336 + (dependabot[bot])\r\n- Reorder triage ids 8b85934ec3a8cc41b21ff8f87f7f69f6f7553938 + (Evans Mungai)\r\n- chore: Add Evans to OWNERS file 75c124ade1f4ccdfa0e9faeca4d2e9df19195a73 + (Evans Mungai)\r\n- Bump github.com/cyphar/filepath-securejoin from 0.3.1 + to 0.3.4 b45680c762228cd15bd82a3b6f4bc1b14a4893e9 (dependabot[bot])\r\n- + chore(deps): bump actions/stale from 3.0.14 to 9.0.0 140a376539dd52d8a0c1609da478adc26439aa23 + (dependabot[bot])\r\n- chore: Make retryingRoundTripper type public ab3c589809a163cb4227063c04da706e3a60ca2a + (Luis Davim)\r\n- Bump actions/checkout from 4.2.0 to 4.2.1 d517450a11ce7ce51445c34d354669895bd44bae + (dependabot[bot])\r\n- Doc: add Flox as an installation option. 30de3bbdc2b11172aa0028871ba9a7256c2f5b4c + (Bryan Honof)\r\n- Move jdolitsky to emeritus 076bb1fbd0296a69a701ac6c2ca704c1eba446cd + (Josh Dolitsky)\r\n- verbs f5fcae8356046a7b4861d231a2427dbf6e96b08c (George + Jenkins)\r\n- fix: Use chart archive modifed time for OCI push 02ef83fe28f123c57bdb3893740d64a63a01be22 + (George Jenkins)\r\n- Bump golang.org/x/crypto from 0.27.0 to 0.28.0 4c54d15a86677659143c4c734b412454f99a3917 + (dependabot[bot])\r\n- Revering change unrelated to issue #13176 cdbef2b7d1862e6fe4253e39740afbc5ec405679 + (ricardo.bartels@telekom.de)\r\n- Bump golangci/golangci-lint-action from + 6.1.0 to 6.1.1 9e192b28ebadaea39bbfe7b35ab439c05b31e13b (dependabot[bot])\r\n- + updating owners file 36f0b42de383ad2de553291ee899531737e3f313 (Robert + Sirchia)\r\n- Bump the k8s-io group with 7 updates d5df06728363ac9c83d06e80fb3516c0714aa4d4 + (dependabot[bot])\r\n- Bump golang/govulncheck-action from 1.0.3 to 1.0.4 + 79257331c2ac1cccd142a0acbed230e7306e9e87 (dependabot[bot])\r\n- Move gjenkins + to maintainer 9c36d1f7b567c93348b6e2ecd4611a8742b26bfb (George Jenkins)\r\n- + Bump actions/checkout from 4.1.7 to 4.2.0 2cd8d54c83f7e8c7970d0876bb3d226f383be7d4 + (dependabot[bot])\r\n- fix: add missing formatChartName call de18ac16027201bb201c4cfe8736202d9feda8cd + (Terry Howe)\r\n- Update history.go 4735f2be9b7669e4f7a1bdf4a6dc4522c4bdfe64 + (myeunee)\r\n- adding toplevel permissions to workflows missing them a8750f4ce991b0aa3e40116091171afa5d359fed + (Robert Sirchia)\r\n- add strvals fuzzer from cncf-fuzzing b203cc17c85e47134dc553ec731e4ae5f21d7596 + (Adam Korczynski)\r\n- add chart fuzz tests e432f39ea727875284e578a380e176b61075cfb9 + (Adam Korczynski)\r\n- Remove the Kubernetes configuration file permissions + check 49cb14a15ce9299a4c5cf2a51c4b97982276caba (Yarden Shoham)\r\n- Grammar + fixes ef85fa7f2ddc0a7a810007e283846c123f486748 (Nathan Baulch)\r\n- Fix + typos ff9dd262e394a48b689e3e1a33456dc18a1f4f47 (Nathan Baulch)\r\n- removing + testing trigger from govulncheck action 62069eb7b511e7480fd16271e5f0c5ce3455a3c6 + (Robert Sirchia)\r\n- adding top-level permissions 114db17898f942cff6529c4ac1075e66f8e3b5fe + (Robert Sirchia)\r\n- Fixing the action trigger 8642225be3ef801bca594f320240ed0218dd3166 + (Robert Sirchia)\r\n- testing permissing for codeql 5217ea8f18341c167e95f2fd01378edac4ba38f7 + (Robert Sirchia)\r\n- Bump ossf/scorecard-action from 2.3.1 to 2.4.0 9134b9edabb522a701429eb973b0b341e51f0b07 + (dependabot[bot])\r\n- Bump actions/checkout from 4.1.1 to 4.1.7 144e7b0287bdc6a61f92580f511db961f23ed22c + (dependabot[bot])\r\n- fix: fix testchart lint errors ddead08eb8e7e3fbbdbb6d40938dda36905789af + (Rui Chen)\r\n- adding check-latest:true 611fae3d7dbc4a0b48ea01739b5e67692911adc4 + (Robert Sirchia)\r\n- Revert \"Improve helm dependency update performance\" + c81bd8912e67177f7941714098e762a88f04c430 (Matt Farina)\r\n- bumping version + to 1.22.7 e7b25bab6ff40ff3dcdeb498e6d74d1484a19215 (Robert Sirchia)\r\n- + Add New Relic a55c0b457d902af20ca0bb0da52a8cfa36ce6f7e (Calvin A. Allen)\r\n- + Update ADOPTERS.md 2b6f76c44e1eebcd90f89970aebd7b1c184a53d4 (Richard Hooper)\r\n- + Bump github.com/BurntSushi/toml from 1.3.2 to 1.4.0 06afebbedb40dfc837fcd23fded30ff986e0ace5 + (dependabot[bot])\r\n- Bump golang.org/x/crypto from 0.26.0 to 0.27.0 + 9f6925eb7fd74604ad23f1386b7382eed2b05b1d (dependabot[bot])\r\n- refectoring + to ONE GH action 5326d79d3e38449c85d8e1c951596a8616b3e2bc (Robert Sirchia)\r\n- + adding new lines at the end of each files d91188159e925672714a4ab634eceacb8d2a849c + (Robert Sirchia)\r\n- changing the trigger file 1aa640fe1d093cf8cb3a68825a5479c98d86f32a + (Robert Sirchia)\r\n- removing line break used for testing 0eae854a8562f3c13dd89481d2568ea0e6391f01 + (Robert Sirchia)\r\n- adding a line break to test the GH trigger 438221fbe3073df6e7bbf6473ab8e4e3763bcf6d + (Robert Sirchia)\r\n- changing trigger file from go.sum to go.mod 3ef6dd40367009230f136f549dc90464f090e770 + (Robert Sirchia)\r\n- removing govulncheck from build-test 5f15f53e2eb70973c82a606d67de98e859dff147 + (Robert Sirchia)\r\n- adding new workflows for govulncheck 4df7d5628b776a33f096516c89db7761de714b21 + (Robert Sirchia)\r\n- bump version to v3.16.0 d644da620521170086f024112bfa9439463fc995 + (Matt Farina)\r\n- Bump github.com/gofrs/flock from 0.8.1 to 0.12.1 a77ad1a4a2cd3efe9f119d43b76f77792c163a6d + (dependabot[bot])\r\n- adding a new line at the end of the file as per + the request of the maintainers 88fa81ecb6cc11fd9aae95994bbb531da82e4d26 + (Robert Sirchia)\r\n- restoring the original triggers that were removed + for testing 76b9d962f0633da44dd7afe466985b9bc67e39d0 (Robert Sirchia)\r\n- + moving govulncheck to a seperate job 38dd4a7fea06885510355bfaef5641a8a82073f4 + (Robert Sirchia)\r\n- removing specific go version for govulncheck 1ad6af92870acccae47f6bd25c2596baa2969e27 + (Robert Sirchia)\r\n- updating go version for govulncheck e46e0ddb9809485bf506e61b8720ff80e668b408 + (Robert Sirchia)\r\n- fixing directory for go-packages 6757f8a81b5f874633bf6138999dac13ed5e550b + (Robert Sirchia)\r\n- changing the triggers to test this GH actions 031b34458eca2832e7f402f4207e5a2da0c0f86d + (Robert Sirchia)\r\n- Adding in workflow_call to test GH Actions 7e3df4baafd58eefe960761be36bf2e1ecb36c83 + (Robert Sirchia)\r\n- adding workflow_dispatch to test b351fdce994b04084029cccb07f846ff723b274c + (Robert Sirchia)\r\n- adding govulncheck 67617290d4b826be94c829a95d909b216db2dfd5 + (Robert Sirchia)\r\n- fix: fixed the token-permission and pinned-dependencies + issue b4caed94cd8e725d8c29c241dfd01c69aba95b33 (harshitasao)\r\n- docs(repo_index): + explicitly state that the result is written to the directory passed in + a71eaeaf5223128727ba275a3e5f3d0e0c3e59e4 (Rauno Viskus)\r\n- Added the + scorecard github action and its badge ae17dea00da07e4447c392f26920935291305efd + (harshitasao)\r\n- Revert CAFile rename breaking change 0687961da4f708cd69c5cbde0f446b989671f0a5 + (Evans Mungai)\r\n- kube/client: add to global client-go scheme in init + func b9bdeca93bf8d6e46b79ba4f4bcb029de3ec1a90 (Dr. Stefan Schimanski)\r\n- + adds tests for handling of Helm index with broken chart versions #13176 + af13b0d8dca846ea27df3a21a4e37829e3b81654 (ricardo.bartels@telekom.de)\r\n- + improves handling of Helm index with broken helm chart versions #13176 + 154b47755403f5d9e13fdabdca62aff7b25a5acf (ricardo.bartels@telekom.de)\r\n- + Add username/password to package subcommand 12d8d28534644f1cad8be2c57c7d52e07f7b27c9 + (Evans Mungai)\r\n- Run go fmt 0ad80e3b58e7c4be56a0378bbd0b0a4cebd799a0 + (Evans Mungai)\r\n- Add username/password to dependency build/update subcommands + 837ae4242cb58a96ed0129db3ca7fa1ff7a33ab5 (Evans Mungai)\r\n- Add username/password + to push subcommand 7672a1700d4dd85ae9885c8e443d673ef1d898ce (Evans Mungai)\r\n- + Update ADOPTERS.md e0751f34a755eed73cc88cdb8ba085d18e431a87 (Nick Josevski)\r\n- + ISSUE-9507: TEST server with varied Accept Header 3c39705212ae9800f6cc2d1996f877611c0d601d + (Matt Clegg)\r\n- ISSUE-9507: ADD `application/gzip,application/octet-stream` + accept header when downloading chart fff3547f9c81a918dfcf3c34fad094323a5905b5 + (Matt Clegg)\r\n- test(create): Test to check deprecated resource templates + 9c0b4c81211732e9f2866ecc08e3a0a147f80b62 (Bhargav Ravuri)\r\n- added sprintf + solution and found other possible overflow occurences ab640a71771f470861da46754dda668885f144f7 + (Trenton VanderWert)\r\n- changed Iota to FormatInt to allow int64 value + preventing 2038 overflow 4a45342887abd2868536abc5ffdc8a711b8cfb87 (Trenton + VanderWert)\r\n- fix(helm): pass down username/password CLI parameters + to OCI registry clients dc158f6208782b888fc5be6d23d8991042cf9f9c (Evans + Mungai)\r\n- Added `toYamlPretty` template function 73f1dcc1d9408504cd47f7efe1d04b277cf952b3 + (Fred Heinecke)\r\n- test(pkg/engine): add tests for TOML parsing 266ab5af0524bd42a2a7dcd80fd792f3f9574b5b + (Dominik Müller)\r\n- feat(pkg/engine): add TOML parsing functionality + f550eda6e98e585cc66f8c7181531ca4a62ccf55 (Dominik Müller)" + created_at: "2025-01-15T21:19:42Z" + draft: false + html_url: https://github.com/helm/helm/releases/tag/v3.17.0 + id: 195010125 + mentions_count: 1 + name: Helm v3.17.0 + node_id: RE_kwDOApspmc4Ln55N + prerelease: false + published_at: "2025-01-15T21:55:26Z" + tag_name: v3.17.0 + tarball_url: https://api.github.com/repos/helm/helm/tarball/v3.17.0 + target_commitish: main + upload_url: https://uploads.github.com/repos/helm/helm/releases/195010125/assets{?name,label} + url: https://api.github.com/repos/helm/helm/releases/195010125 + zipball_url: https://api.github.com/repos/helm/helm/zipball/v3.17.0 + 3.17.1: + githubRelease: + assets: + - browser_download_url: https://github.com/helm/helm/releases/download/v3.17.1/helm-v3.17.1-darwin-amd64.tar.gz.asc + content_type: application/octet-stream + created_at: "2025-02-12T20:59:54Z" + download_count: 0 + id: 228608725 + label: null + name: helm-v3.17.1-darwin-amd64.tar.gz.asc + node_id: RA_kwDOApspmc4NoErV + size: 833 + state: uploaded + updated_at: "2025-02-12T20:59:54Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/13884882?v=4 + events_url: https://api.github.com/users/robertsirc/events{/privacy} + followers_url: https://api.github.com/users/robertsirc/followers + following_url: https://api.github.com/users/robertsirc/following{/other_user} + gists_url: https://api.github.com/users/robertsirc/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/robertsirc + id: 13884882 + login: robertsirc + node_id: MDQ6VXNlcjEzODg0ODgy + organizations_url: https://api.github.com/users/robertsirc/orgs + received_events_url: https://api.github.com/users/robertsirc/received_events + repos_url: https://api.github.com/users/robertsirc/repos + site_admin: false + starred_url: https://api.github.com/users/robertsirc/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/robertsirc/subscriptions + type: User + url: https://api.github.com/users/robertsirc + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/228608725 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.17.1/helm-v3.17.1-darwin-amd64.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2025-02-12T20:59:54Z" + download_count: 0 + id: 228608724 + label: null + name: helm-v3.17.1-darwin-amd64.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4NoErU + size: 833 + state: uploaded + updated_at: "2025-02-12T20:59:54Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/13884882?v=4 + events_url: https://api.github.com/users/robertsirc/events{/privacy} + followers_url: https://api.github.com/users/robertsirc/followers + following_url: https://api.github.com/users/robertsirc/following{/other_user} + gists_url: https://api.github.com/users/robertsirc/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/robertsirc + id: 13884882 + login: robertsirc + node_id: MDQ6VXNlcjEzODg0ODgy + organizations_url: https://api.github.com/users/robertsirc/orgs + received_events_url: https://api.github.com/users/robertsirc/received_events + repos_url: https://api.github.com/users/robertsirc/repos + site_admin: false + starred_url: https://api.github.com/users/robertsirc/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/robertsirc/subscriptions + type: User + url: https://api.github.com/users/robertsirc + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/228608724 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.17.1/helm-v3.17.1-darwin-amd64.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2025-02-12T20:59:54Z" + download_count: 0 + id: 228608723 + label: null + name: helm-v3.17.1-darwin-amd64.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4NoErT + size: 833 + state: uploaded + updated_at: "2025-02-12T20:59:54Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/13884882?v=4 + events_url: https://api.github.com/users/robertsirc/events{/privacy} + followers_url: https://api.github.com/users/robertsirc/followers + following_url: https://api.github.com/users/robertsirc/following{/other_user} + gists_url: https://api.github.com/users/robertsirc/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/robertsirc + id: 13884882 + login: robertsirc + node_id: MDQ6VXNlcjEzODg0ODgy + organizations_url: https://api.github.com/users/robertsirc/orgs + received_events_url: https://api.github.com/users/robertsirc/received_events + repos_url: https://api.github.com/users/robertsirc/repos + site_admin: false + starred_url: https://api.github.com/users/robertsirc/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/robertsirc/subscriptions + type: User + url: https://api.github.com/users/robertsirc + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/228608723 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.17.1/helm-v3.17.1-darwin-arm64.tar.gz.asc + content_type: application/octet-stream + created_at: "2025-02-12T20:59:54Z" + download_count: 0 + id: 228608722 + label: null + name: helm-v3.17.1-darwin-arm64.tar.gz.asc + node_id: RA_kwDOApspmc4NoErS + size: 833 + state: uploaded + updated_at: "2025-02-12T20:59:54Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/13884882?v=4 + events_url: https://api.github.com/users/robertsirc/events{/privacy} + followers_url: https://api.github.com/users/robertsirc/followers + following_url: https://api.github.com/users/robertsirc/following{/other_user} + gists_url: https://api.github.com/users/robertsirc/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/robertsirc + id: 13884882 + login: robertsirc + node_id: MDQ6VXNlcjEzODg0ODgy + organizations_url: https://api.github.com/users/robertsirc/orgs + received_events_url: https://api.github.com/users/robertsirc/received_events + repos_url: https://api.github.com/users/robertsirc/repos + site_admin: false + starred_url: https://api.github.com/users/robertsirc/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/robertsirc/subscriptions + type: User + url: https://api.github.com/users/robertsirc + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/228608722 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.17.1/helm-v3.17.1-darwin-arm64.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2025-02-12T20:59:54Z" + download_count: 0 + id: 228608721 + label: null + name: helm-v3.17.1-darwin-arm64.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4NoErR + size: 833 + state: uploaded + updated_at: "2025-02-12T20:59:54Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/13884882?v=4 + events_url: https://api.github.com/users/robertsirc/events{/privacy} + followers_url: https://api.github.com/users/robertsirc/followers + following_url: https://api.github.com/users/robertsirc/following{/other_user} + gists_url: https://api.github.com/users/robertsirc/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/robertsirc + id: 13884882 + login: robertsirc + node_id: MDQ6VXNlcjEzODg0ODgy + organizations_url: https://api.github.com/users/robertsirc/orgs + received_events_url: https://api.github.com/users/robertsirc/received_events + repos_url: https://api.github.com/users/robertsirc/repos + site_admin: false + starred_url: https://api.github.com/users/robertsirc/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/robertsirc/subscriptions + type: User + url: https://api.github.com/users/robertsirc + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/228608721 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.17.1/helm-v3.17.1-darwin-arm64.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2025-02-12T20:59:53Z" + download_count: 0 + id: 228608720 + label: null + name: helm-v3.17.1-darwin-arm64.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4NoErQ + size: 833 + state: uploaded + updated_at: "2025-02-12T20:59:54Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/13884882?v=4 + events_url: https://api.github.com/users/robertsirc/events{/privacy} + followers_url: https://api.github.com/users/robertsirc/followers + following_url: https://api.github.com/users/robertsirc/following{/other_user} + gists_url: https://api.github.com/users/robertsirc/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/robertsirc + id: 13884882 + login: robertsirc + node_id: MDQ6VXNlcjEzODg0ODgy + organizations_url: https://api.github.com/users/robertsirc/orgs + received_events_url: https://api.github.com/users/robertsirc/received_events + repos_url: https://api.github.com/users/robertsirc/repos + site_admin: false + starred_url: https://api.github.com/users/robertsirc/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/robertsirc/subscriptions + type: User + url: https://api.github.com/users/robertsirc + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/228608720 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.17.1/helm-v3.17.1-linux-386.tar.gz.asc + content_type: application/octet-stream + created_at: "2025-02-12T20:59:53Z" + download_count: 0 + id: 228608718 + label: null + name: helm-v3.17.1-linux-386.tar.gz.asc + node_id: RA_kwDOApspmc4NoErO + size: 833 + state: uploaded + updated_at: "2025-02-12T20:59:53Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/13884882?v=4 + events_url: https://api.github.com/users/robertsirc/events{/privacy} + followers_url: https://api.github.com/users/robertsirc/followers + following_url: https://api.github.com/users/robertsirc/following{/other_user} + gists_url: https://api.github.com/users/robertsirc/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/robertsirc + id: 13884882 + login: robertsirc + node_id: MDQ6VXNlcjEzODg0ODgy + organizations_url: https://api.github.com/users/robertsirc/orgs + received_events_url: https://api.github.com/users/robertsirc/received_events + repos_url: https://api.github.com/users/robertsirc/repos + site_admin: false + starred_url: https://api.github.com/users/robertsirc/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/robertsirc/subscriptions + type: User + url: https://api.github.com/users/robertsirc + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/228608718 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.17.1/helm-v3.17.1-linux-386.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2025-02-12T20:59:53Z" + download_count: 0 + id: 228608715 + label: null + name: helm-v3.17.1-linux-386.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4NoErL + size: 833 + state: uploaded + updated_at: "2025-02-12T20:59:53Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/13884882?v=4 + events_url: https://api.github.com/users/robertsirc/events{/privacy} + followers_url: https://api.github.com/users/robertsirc/followers + following_url: https://api.github.com/users/robertsirc/following{/other_user} + gists_url: https://api.github.com/users/robertsirc/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/robertsirc + id: 13884882 + login: robertsirc + node_id: MDQ6VXNlcjEzODg0ODgy + organizations_url: https://api.github.com/users/robertsirc/orgs + received_events_url: https://api.github.com/users/robertsirc/received_events + repos_url: https://api.github.com/users/robertsirc/repos + site_admin: false + starred_url: https://api.github.com/users/robertsirc/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/robertsirc/subscriptions + type: User + url: https://api.github.com/users/robertsirc + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/228608715 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.17.1/helm-v3.17.1-linux-386.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2025-02-12T20:59:53Z" + download_count: 0 + id: 228608714 + label: null + name: helm-v3.17.1-linux-386.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4NoErK + size: 833 + state: uploaded + updated_at: "2025-02-12T20:59:53Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/13884882?v=4 + events_url: https://api.github.com/users/robertsirc/events{/privacy} + followers_url: https://api.github.com/users/robertsirc/followers + following_url: https://api.github.com/users/robertsirc/following{/other_user} + gists_url: https://api.github.com/users/robertsirc/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/robertsirc + id: 13884882 + login: robertsirc + node_id: MDQ6VXNlcjEzODg0ODgy + organizations_url: https://api.github.com/users/robertsirc/orgs + received_events_url: https://api.github.com/users/robertsirc/received_events + repos_url: https://api.github.com/users/robertsirc/repos + site_admin: false + starred_url: https://api.github.com/users/robertsirc/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/robertsirc/subscriptions + type: User + url: https://api.github.com/users/robertsirc + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/228608714 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.17.1/helm-v3.17.1-linux-amd64.tar.gz.asc + content_type: application/octet-stream + created_at: "2025-02-12T20:59:53Z" + download_count: 0 + id: 228608713 + label: null + name: helm-v3.17.1-linux-amd64.tar.gz.asc + node_id: RA_kwDOApspmc4NoErJ + size: 833 + state: uploaded + updated_at: "2025-02-12T20:59:53Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/13884882?v=4 + events_url: https://api.github.com/users/robertsirc/events{/privacy} + followers_url: https://api.github.com/users/robertsirc/followers + following_url: https://api.github.com/users/robertsirc/following{/other_user} + gists_url: https://api.github.com/users/robertsirc/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/robertsirc + id: 13884882 + login: robertsirc + node_id: MDQ6VXNlcjEzODg0ODgy + organizations_url: https://api.github.com/users/robertsirc/orgs + received_events_url: https://api.github.com/users/robertsirc/received_events + repos_url: https://api.github.com/users/robertsirc/repos + site_admin: false + starred_url: https://api.github.com/users/robertsirc/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/robertsirc/subscriptions + type: User + url: https://api.github.com/users/robertsirc + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/228608713 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.17.1/helm-v3.17.1-linux-amd64.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2025-02-12T20:59:52Z" + download_count: 0 + id: 228608711 + label: null + name: helm-v3.17.1-linux-amd64.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4NoErH + size: 833 + state: uploaded + updated_at: "2025-02-12T20:59:53Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/13884882?v=4 + events_url: https://api.github.com/users/robertsirc/events{/privacy} + followers_url: https://api.github.com/users/robertsirc/followers + following_url: https://api.github.com/users/robertsirc/following{/other_user} + gists_url: https://api.github.com/users/robertsirc/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/robertsirc + id: 13884882 + login: robertsirc + node_id: MDQ6VXNlcjEzODg0ODgy + organizations_url: https://api.github.com/users/robertsirc/orgs + received_events_url: https://api.github.com/users/robertsirc/received_events + repos_url: https://api.github.com/users/robertsirc/repos + site_admin: false + starred_url: https://api.github.com/users/robertsirc/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/robertsirc/subscriptions + type: User + url: https://api.github.com/users/robertsirc + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/228608711 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.17.1/helm-v3.17.1-linux-amd64.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2025-02-12T20:59:52Z" + download_count: 0 + id: 228608709 + label: null + name: helm-v3.17.1-linux-amd64.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4NoErF + size: 833 + state: uploaded + updated_at: "2025-02-12T20:59:52Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/13884882?v=4 + events_url: https://api.github.com/users/robertsirc/events{/privacy} + followers_url: https://api.github.com/users/robertsirc/followers + following_url: https://api.github.com/users/robertsirc/following{/other_user} + gists_url: https://api.github.com/users/robertsirc/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/robertsirc + id: 13884882 + login: robertsirc + node_id: MDQ6VXNlcjEzODg0ODgy + organizations_url: https://api.github.com/users/robertsirc/orgs + received_events_url: https://api.github.com/users/robertsirc/received_events + repos_url: https://api.github.com/users/robertsirc/repos + site_admin: false + starred_url: https://api.github.com/users/robertsirc/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/robertsirc/subscriptions + type: User + url: https://api.github.com/users/robertsirc + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/228608709 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.17.1/helm-v3.17.1-linux-arm.tar.gz.asc + content_type: application/octet-stream + created_at: "2025-02-12T20:59:52Z" + download_count: 0 + id: 228608708 + label: null + name: helm-v3.17.1-linux-arm.tar.gz.asc + node_id: RA_kwDOApspmc4NoErE + size: 833 + state: uploaded + updated_at: "2025-02-12T20:59:52Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/13884882?v=4 + events_url: https://api.github.com/users/robertsirc/events{/privacy} + followers_url: https://api.github.com/users/robertsirc/followers + following_url: https://api.github.com/users/robertsirc/following{/other_user} + gists_url: https://api.github.com/users/robertsirc/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/robertsirc + id: 13884882 + login: robertsirc + node_id: MDQ6VXNlcjEzODg0ODgy + organizations_url: https://api.github.com/users/robertsirc/orgs + received_events_url: https://api.github.com/users/robertsirc/received_events + repos_url: https://api.github.com/users/robertsirc/repos + site_admin: false + starred_url: https://api.github.com/users/robertsirc/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/robertsirc/subscriptions + type: User + url: https://api.github.com/users/robertsirc + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/228608708 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.17.1/helm-v3.17.1-linux-arm.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2025-02-12T20:59:52Z" + download_count: 0 + id: 228608707 + label: null + name: helm-v3.17.1-linux-arm.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4NoErD + size: 833 + state: uploaded + updated_at: "2025-02-12T20:59:52Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/13884882?v=4 + events_url: https://api.github.com/users/robertsirc/events{/privacy} + followers_url: https://api.github.com/users/robertsirc/followers + following_url: https://api.github.com/users/robertsirc/following{/other_user} + gists_url: https://api.github.com/users/robertsirc/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/robertsirc + id: 13884882 + login: robertsirc + node_id: MDQ6VXNlcjEzODg0ODgy + organizations_url: https://api.github.com/users/robertsirc/orgs + received_events_url: https://api.github.com/users/robertsirc/received_events + repos_url: https://api.github.com/users/robertsirc/repos + site_admin: false + starred_url: https://api.github.com/users/robertsirc/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/robertsirc/subscriptions + type: User + url: https://api.github.com/users/robertsirc + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/228608707 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.17.1/helm-v3.17.1-linux-arm.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2025-02-12T20:59:52Z" + download_count: 0 + id: 228608704 + label: null + name: helm-v3.17.1-linux-arm.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4NoErA + size: 833 + state: uploaded + updated_at: "2025-02-12T20:59:52Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/13884882?v=4 + events_url: https://api.github.com/users/robertsirc/events{/privacy} + followers_url: https://api.github.com/users/robertsirc/followers + following_url: https://api.github.com/users/robertsirc/following{/other_user} + gists_url: https://api.github.com/users/robertsirc/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/robertsirc + id: 13884882 + login: robertsirc + node_id: MDQ6VXNlcjEzODg0ODgy + organizations_url: https://api.github.com/users/robertsirc/orgs + received_events_url: https://api.github.com/users/robertsirc/received_events + repos_url: https://api.github.com/users/robertsirc/repos + site_admin: false + starred_url: https://api.github.com/users/robertsirc/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/robertsirc/subscriptions + type: User + url: https://api.github.com/users/robertsirc + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/228608704 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.17.1/helm-v3.17.1-linux-arm64.tar.gz.asc + content_type: application/octet-stream + created_at: "2025-02-12T20:59:52Z" + download_count: 0 + id: 228608702 + label: null + name: helm-v3.17.1-linux-arm64.tar.gz.asc + node_id: RA_kwDOApspmc4NoEq- + size: 833 + state: uploaded + updated_at: "2025-02-12T20:59:52Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/13884882?v=4 + events_url: https://api.github.com/users/robertsirc/events{/privacy} + followers_url: https://api.github.com/users/robertsirc/followers + following_url: https://api.github.com/users/robertsirc/following{/other_user} + gists_url: https://api.github.com/users/robertsirc/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/robertsirc + id: 13884882 + login: robertsirc + node_id: MDQ6VXNlcjEzODg0ODgy + organizations_url: https://api.github.com/users/robertsirc/orgs + received_events_url: https://api.github.com/users/robertsirc/received_events + repos_url: https://api.github.com/users/robertsirc/repos + site_admin: false + starred_url: https://api.github.com/users/robertsirc/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/robertsirc/subscriptions + type: User + url: https://api.github.com/users/robertsirc + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/228608702 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.17.1/helm-v3.17.1-linux-arm64.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2025-02-12T20:59:51Z" + download_count: 0 + id: 228608700 + label: null + name: helm-v3.17.1-linux-arm64.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4NoEq8 + size: 833 + state: uploaded + updated_at: "2025-02-12T20:59:52Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/13884882?v=4 + events_url: https://api.github.com/users/robertsirc/events{/privacy} + followers_url: https://api.github.com/users/robertsirc/followers + following_url: https://api.github.com/users/robertsirc/following{/other_user} + gists_url: https://api.github.com/users/robertsirc/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/robertsirc + id: 13884882 + login: robertsirc + node_id: MDQ6VXNlcjEzODg0ODgy + organizations_url: https://api.github.com/users/robertsirc/orgs + received_events_url: https://api.github.com/users/robertsirc/received_events + repos_url: https://api.github.com/users/robertsirc/repos + site_admin: false + starred_url: https://api.github.com/users/robertsirc/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/robertsirc/subscriptions + type: User + url: https://api.github.com/users/robertsirc + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/228608700 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.17.1/helm-v3.17.1-linux-arm64.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2025-02-12T20:59:51Z" + download_count: 0 + id: 228608698 + label: null + name: helm-v3.17.1-linux-arm64.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4NoEq6 + size: 833 + state: uploaded + updated_at: "2025-02-12T20:59:51Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/13884882?v=4 + events_url: https://api.github.com/users/robertsirc/events{/privacy} + followers_url: https://api.github.com/users/robertsirc/followers + following_url: https://api.github.com/users/robertsirc/following{/other_user} + gists_url: https://api.github.com/users/robertsirc/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/robertsirc + id: 13884882 + login: robertsirc + node_id: MDQ6VXNlcjEzODg0ODgy + organizations_url: https://api.github.com/users/robertsirc/orgs + received_events_url: https://api.github.com/users/robertsirc/received_events + repos_url: https://api.github.com/users/robertsirc/repos + site_admin: false + starred_url: https://api.github.com/users/robertsirc/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/robertsirc/subscriptions + type: User + url: https://api.github.com/users/robertsirc + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/228608698 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.17.1/helm-v3.17.1-linux-ppc64le.tar.gz.asc + content_type: application/octet-stream + created_at: "2025-02-12T20:59:51Z" + download_count: 0 + id: 228608697 + label: null + name: helm-v3.17.1-linux-ppc64le.tar.gz.asc + node_id: RA_kwDOApspmc4NoEq5 + size: 833 + state: uploaded + updated_at: "2025-02-12T20:59:51Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/13884882?v=4 + events_url: https://api.github.com/users/robertsirc/events{/privacy} + followers_url: https://api.github.com/users/robertsirc/followers + following_url: https://api.github.com/users/robertsirc/following{/other_user} + gists_url: https://api.github.com/users/robertsirc/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/robertsirc + id: 13884882 + login: robertsirc + node_id: MDQ6VXNlcjEzODg0ODgy + organizations_url: https://api.github.com/users/robertsirc/orgs + received_events_url: https://api.github.com/users/robertsirc/received_events + repos_url: https://api.github.com/users/robertsirc/repos + site_admin: false + starred_url: https://api.github.com/users/robertsirc/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/robertsirc/subscriptions + type: User + url: https://api.github.com/users/robertsirc + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/228608697 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.17.1/helm-v3.17.1-linux-ppc64le.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2025-02-12T20:59:51Z" + download_count: 0 + id: 228608694 + label: null + name: helm-v3.17.1-linux-ppc64le.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4NoEq2 + size: 833 + state: uploaded + updated_at: "2025-02-12T20:59:51Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/13884882?v=4 + events_url: https://api.github.com/users/robertsirc/events{/privacy} + followers_url: https://api.github.com/users/robertsirc/followers + following_url: https://api.github.com/users/robertsirc/following{/other_user} + gists_url: https://api.github.com/users/robertsirc/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/robertsirc + id: 13884882 + login: robertsirc + node_id: MDQ6VXNlcjEzODg0ODgy + organizations_url: https://api.github.com/users/robertsirc/orgs + received_events_url: https://api.github.com/users/robertsirc/received_events + repos_url: https://api.github.com/users/robertsirc/repos + site_admin: false + starred_url: https://api.github.com/users/robertsirc/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/robertsirc/subscriptions + type: User + url: https://api.github.com/users/robertsirc + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/228608694 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.17.1/helm-v3.17.1-linux-ppc64le.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2025-02-12T20:59:51Z" + download_count: 0 + id: 228608693 + label: null + name: helm-v3.17.1-linux-ppc64le.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4NoEq1 + size: 833 + state: uploaded + updated_at: "2025-02-12T20:59:51Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/13884882?v=4 + events_url: https://api.github.com/users/robertsirc/events{/privacy} + followers_url: https://api.github.com/users/robertsirc/followers + following_url: https://api.github.com/users/robertsirc/following{/other_user} + gists_url: https://api.github.com/users/robertsirc/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/robertsirc + id: 13884882 + login: robertsirc + node_id: MDQ6VXNlcjEzODg0ODgy + organizations_url: https://api.github.com/users/robertsirc/orgs + received_events_url: https://api.github.com/users/robertsirc/received_events + repos_url: https://api.github.com/users/robertsirc/repos + site_admin: false + starred_url: https://api.github.com/users/robertsirc/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/robertsirc/subscriptions + type: User + url: https://api.github.com/users/robertsirc + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/228608693 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.17.1/helm-v3.17.1-linux-riscv64.tar.gz.asc + content_type: application/octet-stream + created_at: "2025-02-12T20:59:51Z" + download_count: 0 + id: 228608692 + label: null + name: helm-v3.17.1-linux-riscv64.tar.gz.asc + node_id: RA_kwDOApspmc4NoEq0 + size: 833 + state: uploaded + updated_at: "2025-02-12T20:59:51Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/13884882?v=4 + events_url: https://api.github.com/users/robertsirc/events{/privacy} + followers_url: https://api.github.com/users/robertsirc/followers + following_url: https://api.github.com/users/robertsirc/following{/other_user} + gists_url: https://api.github.com/users/robertsirc/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/robertsirc + id: 13884882 + login: robertsirc + node_id: MDQ6VXNlcjEzODg0ODgy + organizations_url: https://api.github.com/users/robertsirc/orgs + received_events_url: https://api.github.com/users/robertsirc/received_events + repos_url: https://api.github.com/users/robertsirc/repos + site_admin: false + starred_url: https://api.github.com/users/robertsirc/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/robertsirc/subscriptions + type: User + url: https://api.github.com/users/robertsirc + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/228608692 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.17.1/helm-v3.17.1-linux-riscv64.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2025-02-12T20:59:50Z" + download_count: 0 + id: 228608690 + label: null + name: helm-v3.17.1-linux-riscv64.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4NoEqy + size: 833 + state: uploaded + updated_at: "2025-02-12T20:59:51Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/13884882?v=4 + events_url: https://api.github.com/users/robertsirc/events{/privacy} + followers_url: https://api.github.com/users/robertsirc/followers + following_url: https://api.github.com/users/robertsirc/following{/other_user} + gists_url: https://api.github.com/users/robertsirc/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/robertsirc + id: 13884882 + login: robertsirc + node_id: MDQ6VXNlcjEzODg0ODgy + organizations_url: https://api.github.com/users/robertsirc/orgs + received_events_url: https://api.github.com/users/robertsirc/received_events + repos_url: https://api.github.com/users/robertsirc/repos + site_admin: false + starred_url: https://api.github.com/users/robertsirc/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/robertsirc/subscriptions + type: User + url: https://api.github.com/users/robertsirc + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/228608690 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.17.1/helm-v3.17.1-linux-riscv64.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2025-02-12T20:59:50Z" + download_count: 0 + id: 228608688 + label: null + name: helm-v3.17.1-linux-riscv64.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4NoEqw + size: 833 + state: uploaded + updated_at: "2025-02-12T20:59:50Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/13884882?v=4 + events_url: https://api.github.com/users/robertsirc/events{/privacy} + followers_url: https://api.github.com/users/robertsirc/followers + following_url: https://api.github.com/users/robertsirc/following{/other_user} + gists_url: https://api.github.com/users/robertsirc/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/robertsirc + id: 13884882 + login: robertsirc + node_id: MDQ6VXNlcjEzODg0ODgy + organizations_url: https://api.github.com/users/robertsirc/orgs + received_events_url: https://api.github.com/users/robertsirc/received_events + repos_url: https://api.github.com/users/robertsirc/repos + site_admin: false + starred_url: https://api.github.com/users/robertsirc/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/robertsirc/subscriptions + type: User + url: https://api.github.com/users/robertsirc + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/228608688 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.17.1/helm-v3.17.1-linux-s390x.tar.gz.asc + content_type: application/octet-stream + created_at: "2025-02-12T20:59:50Z" + download_count: 0 + id: 228608687 + label: null + name: helm-v3.17.1-linux-s390x.tar.gz.asc + node_id: RA_kwDOApspmc4NoEqv + size: 833 + state: uploaded + updated_at: "2025-02-12T20:59:50Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/13884882?v=4 + events_url: https://api.github.com/users/robertsirc/events{/privacy} + followers_url: https://api.github.com/users/robertsirc/followers + following_url: https://api.github.com/users/robertsirc/following{/other_user} + gists_url: https://api.github.com/users/robertsirc/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/robertsirc + id: 13884882 + login: robertsirc + node_id: MDQ6VXNlcjEzODg0ODgy + organizations_url: https://api.github.com/users/robertsirc/orgs + received_events_url: https://api.github.com/users/robertsirc/received_events + repos_url: https://api.github.com/users/robertsirc/repos + site_admin: false + starred_url: https://api.github.com/users/robertsirc/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/robertsirc/subscriptions + type: User + url: https://api.github.com/users/robertsirc + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/228608687 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.17.1/helm-v3.17.1-linux-s390x.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2025-02-12T20:59:50Z" + download_count: 0 + id: 228608686 + label: null + name: helm-v3.17.1-linux-s390x.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4NoEqu + size: 833 + state: uploaded + updated_at: "2025-02-12T20:59:50Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/13884882?v=4 + events_url: https://api.github.com/users/robertsirc/events{/privacy} + followers_url: https://api.github.com/users/robertsirc/followers + following_url: https://api.github.com/users/robertsirc/following{/other_user} + gists_url: https://api.github.com/users/robertsirc/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/robertsirc + id: 13884882 + login: robertsirc + node_id: MDQ6VXNlcjEzODg0ODgy + organizations_url: https://api.github.com/users/robertsirc/orgs + received_events_url: https://api.github.com/users/robertsirc/received_events + repos_url: https://api.github.com/users/robertsirc/repos + site_admin: false + starred_url: https://api.github.com/users/robertsirc/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/robertsirc/subscriptions + type: User + url: https://api.github.com/users/robertsirc + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/228608686 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.17.1/helm-v3.17.1-linux-s390x.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2025-02-12T20:59:50Z" + download_count: 0 + id: 228608684 + label: null + name: helm-v3.17.1-linux-s390x.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4NoEqs + size: 833 + state: uploaded + updated_at: "2025-02-12T20:59:50Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/13884882?v=4 + events_url: https://api.github.com/users/robertsirc/events{/privacy} + followers_url: https://api.github.com/users/robertsirc/followers + following_url: https://api.github.com/users/robertsirc/following{/other_user} + gists_url: https://api.github.com/users/robertsirc/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/robertsirc + id: 13884882 + login: robertsirc + node_id: MDQ6VXNlcjEzODg0ODgy + organizations_url: https://api.github.com/users/robertsirc/orgs + received_events_url: https://api.github.com/users/robertsirc/received_events + repos_url: https://api.github.com/users/robertsirc/repos + site_admin: false + starred_url: https://api.github.com/users/robertsirc/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/robertsirc/subscriptions + type: User + url: https://api.github.com/users/robertsirc + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/228608684 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.17.1/helm-v3.17.1-windows-amd64.zip.asc + content_type: application/octet-stream + created_at: "2025-02-12T20:59:49Z" + download_count: 0 + id: 228608681 + label: null + name: helm-v3.17.1-windows-amd64.zip.asc + node_id: RA_kwDOApspmc4NoEqp + size: 833 + state: uploaded + updated_at: "2025-02-12T20:59:50Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/13884882?v=4 + events_url: https://api.github.com/users/robertsirc/events{/privacy} + followers_url: https://api.github.com/users/robertsirc/followers + following_url: https://api.github.com/users/robertsirc/following{/other_user} + gists_url: https://api.github.com/users/robertsirc/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/robertsirc + id: 13884882 + login: robertsirc + node_id: MDQ6VXNlcjEzODg0ODgy + organizations_url: https://api.github.com/users/robertsirc/orgs + received_events_url: https://api.github.com/users/robertsirc/received_events + repos_url: https://api.github.com/users/robertsirc/repos + site_admin: false + starred_url: https://api.github.com/users/robertsirc/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/robertsirc/subscriptions + type: User + url: https://api.github.com/users/robertsirc + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/228608681 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.17.1/helm-v3.17.1-windows-amd64.zip.sha256.asc + content_type: application/octet-stream + created_at: "2025-02-12T20:59:49Z" + download_count: 0 + id: 228608680 + label: null + name: helm-v3.17.1-windows-amd64.zip.sha256.asc + node_id: RA_kwDOApspmc4NoEqo + size: 833 + state: uploaded + updated_at: "2025-02-12T20:59:49Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/13884882?v=4 + events_url: https://api.github.com/users/robertsirc/events{/privacy} + followers_url: https://api.github.com/users/robertsirc/followers + following_url: https://api.github.com/users/robertsirc/following{/other_user} + gists_url: https://api.github.com/users/robertsirc/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/robertsirc + id: 13884882 + login: robertsirc + node_id: MDQ6VXNlcjEzODg0ODgy + organizations_url: https://api.github.com/users/robertsirc/orgs + received_events_url: https://api.github.com/users/robertsirc/received_events + repos_url: https://api.github.com/users/robertsirc/repos + site_admin: false + starred_url: https://api.github.com/users/robertsirc/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/robertsirc/subscriptions + type: User + url: https://api.github.com/users/robertsirc + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/228608680 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.17.1/helm-v3.17.1-windows-amd64.zip.sha256sum.asc + content_type: application/octet-stream + created_at: "2025-02-12T20:59:49Z" + download_count: 0 + id: 228608677 + label: null + name: helm-v3.17.1-windows-amd64.zip.sha256sum.asc + node_id: RA_kwDOApspmc4NoEql + size: 833 + state: uploaded + updated_at: "2025-02-12T20:59:49Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/13884882?v=4 + events_url: https://api.github.com/users/robertsirc/events{/privacy} + followers_url: https://api.github.com/users/robertsirc/followers + following_url: https://api.github.com/users/robertsirc/following{/other_user} + gists_url: https://api.github.com/users/robertsirc/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/robertsirc + id: 13884882 + login: robertsirc + node_id: MDQ6VXNlcjEzODg0ODgy + organizations_url: https://api.github.com/users/robertsirc/orgs + received_events_url: https://api.github.com/users/robertsirc/received_events + repos_url: https://api.github.com/users/robertsirc/repos + site_admin: false + starred_url: https://api.github.com/users/robertsirc/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/robertsirc/subscriptions + type: User + url: https://api.github.com/users/robertsirc + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/228608677 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.17.1/helm-v3.17.1-windows-arm64.zip.asc + content_type: application/octet-stream + created_at: "2025-02-12T20:59:49Z" + download_count: 0 + id: 228608672 + label: null + name: helm-v3.17.1-windows-arm64.zip.asc + node_id: RA_kwDOApspmc4NoEqg + size: 833 + state: uploaded + updated_at: "2025-02-12T20:59:49Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/13884882?v=4 + events_url: https://api.github.com/users/robertsirc/events{/privacy} + followers_url: https://api.github.com/users/robertsirc/followers + following_url: https://api.github.com/users/robertsirc/following{/other_user} + gists_url: https://api.github.com/users/robertsirc/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/robertsirc + id: 13884882 + login: robertsirc + node_id: MDQ6VXNlcjEzODg0ODgy + organizations_url: https://api.github.com/users/robertsirc/orgs + received_events_url: https://api.github.com/users/robertsirc/received_events + repos_url: https://api.github.com/users/robertsirc/repos + site_admin: false + starred_url: https://api.github.com/users/robertsirc/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/robertsirc/subscriptions + type: User + url: https://api.github.com/users/robertsirc + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/228608672 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.17.1/helm-v3.17.1-windows-arm64.zip.sha256.asc + content_type: application/octet-stream + created_at: "2025-02-12T20:59:49Z" + download_count: 0 + id: 228608670 + label: null + name: helm-v3.17.1-windows-arm64.zip.sha256.asc + node_id: RA_kwDOApspmc4NoEqe + size: 833 + state: uploaded + updated_at: "2025-02-12T20:59:49Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/13884882?v=4 + events_url: https://api.github.com/users/robertsirc/events{/privacy} + followers_url: https://api.github.com/users/robertsirc/followers + following_url: https://api.github.com/users/robertsirc/following{/other_user} + gists_url: https://api.github.com/users/robertsirc/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/robertsirc + id: 13884882 + login: robertsirc + node_id: MDQ6VXNlcjEzODg0ODgy + organizations_url: https://api.github.com/users/robertsirc/orgs + received_events_url: https://api.github.com/users/robertsirc/received_events + repos_url: https://api.github.com/users/robertsirc/repos + site_admin: false + starred_url: https://api.github.com/users/robertsirc/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/robertsirc/subscriptions + type: User + url: https://api.github.com/users/robertsirc + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/228608670 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.17.1/helm-v3.17.1-windows-arm64.zip.sha256sum.asc + content_type: application/octet-stream + created_at: "2025-02-12T20:59:49Z" + download_count: 0 + id: 228608669 + label: null + name: helm-v3.17.1-windows-arm64.zip.sha256sum.asc + node_id: RA_kwDOApspmc4NoEqd + size: 833 + state: uploaded + updated_at: "2025-02-12T20:59:49Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/13884882?v=4 + events_url: https://api.github.com/users/robertsirc/events{/privacy} + followers_url: https://api.github.com/users/robertsirc/followers + following_url: https://api.github.com/users/robertsirc/following{/other_user} + gists_url: https://api.github.com/users/robertsirc/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/robertsirc + id: 13884882 + login: robertsirc + node_id: MDQ6VXNlcjEzODg0ODgy + organizations_url: https://api.github.com/users/robertsirc/orgs + received_events_url: https://api.github.com/users/robertsirc/received_events + repos_url: https://api.github.com/users/robertsirc/repos + site_admin: false + starred_url: https://api.github.com/users/robertsirc/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/robertsirc/subscriptions + type: User + url: https://api.github.com/users/robertsirc + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/228608669 + assets_url: https://api.github.com/repos/helm/helm/releases/199963961/assets + author: + avatar_url: https://avatars.githubusercontent.com/u/13884882?v=4 + events_url: https://api.github.com/users/robertsirc/events{/privacy} + followers_url: https://api.github.com/users/robertsirc/followers + following_url: https://api.github.com/users/robertsirc/following{/other_user} + gists_url: https://api.github.com/users/robertsirc/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/robertsirc + id: 13884882 + login: robertsirc + node_id: MDQ6VXNlcjEzODg0ODgy + organizations_url: https://api.github.com/users/robertsirc/orgs + received_events_url: https://api.github.com/users/robertsirc/received_events + repos_url: https://api.github.com/users/robertsirc/repos + site_admin: false + starred_url: https://api.github.com/users/robertsirc/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/robertsirc/subscriptions + type: User + url: https://api.github.com/users/robertsirc + user_view_type: public + body: "Helm v3.17.1 is a patch release. Users are encouraged to upgrade + for the best experience. Users are encouraged to upgrade for the best + experience.\r\n\r\nThe community keeps growing, and we'd love to see you + there!\r\n\r\n- Join the discussion in [Kubernetes Slack](https://kubernetes.slack.com):\r\n + \ - for questions and just to hang out\r\n - for discussing PRs, code, + and bugs\r\n- Hang out at the Public Developer Call: Thursday, 9:30 Pacific + via [Zoom](https://zoom.us/j/696660622)\r\n- Test, debug, and contribute + charts: [ArtifactHub/packages](https://artifacthub.io/packages/search?kind=0)\r\n\r\n## + Installation and Upgrading\r\n\r\nDownload Helm v3.17.1. The common platform + binaries are here:\r\n\r\n- [MacOS amd64](https://get.helm.sh/helm-v3.17.1-darwin-amd64.tar.gz) + ([checksum](https://get.helm.sh/helm-v3.17.1-darwin-amd64.tar.gz.sha256sum) + / aba59ba9511971a71943b5c76f15d52ace1681197bb3f71ed1f0b15caceacb2c)\r\n- + [MacOS arm64](https://get.helm.sh/helm-v3.17.1-darwin-arm64.tar.gz) ([checksum](https://get.helm.sh/helm-v3.17.1-darwin-arm64.tar.gz.sha256sum) + / b823a213d8d7937222becc63d9c7bb3d15a090e7ecd1f70f3a583ed39657e21b)\r\n- + [Linux amd64](https://get.helm.sh/helm-v3.17.1-linux-amd64.tar.gz) ([checksum](https://get.helm.sh/helm-v3.17.1-linux-amd64.tar.gz.sha256sum) + / 3b66f3cd28409f29832b1b35b43d9922959a32d795003149707fea84cbcd4469)\r\n- + [Linux arm](https://get.helm.sh/helm-v3.17.1-linux-arm.tar.gz) ([checksum](https://get.helm.sh/helm-v3.17.1-linux-arm.tar.gz.sha256sum) + / 1dc5ed54350f4f7ae87441e878be4f4fd9b727a86b11b1d20b1001358c83bed3)\r\n- + [Linux arm64](https://get.helm.sh/helm-v3.17.1-linux-arm64.tar.gz) ([checksum](https://get.helm.sh/helm-v3.17.1-linux-arm64.tar.gz.sha256sum) + / c86c9b23602d4abbfae39d9634e25ab1d0ea6c4c16c5b154113efe316a402547)\r\n- + [Linux i386](https://get.helm.sh/helm-v3.17.1-linux-386.tar.gz) ([checksum](https://get.helm.sh/helm-v3.17.1-linux-386.tar.gz.sha256sum) + / b972562a1171673db2892f000248b2540ddcd6f76850ec152852a8e9ce7972cb)\r\n- + [Linux ppc64le](https://get.helm.sh/helm-v3.17.1-linux-ppc64le.tar.gz) + ([checksum](https://get.helm.sh/helm-v3.17.1-linux-ppc64le.tar.gz.sha256sum) + / 4223394f3fca82a7f8e8d083caf6faf0ee0639d8f235071334579237078a2c2e)\r\n- + [Linux s390x](https://get.helm.sh/helm-v3.17.1-linux-s390x.tar.gz) ([checksum](https://get.helm.sh/helm-v3.17.1-linux-s390x.tar.gz.sha256sum) + / fe47e5ee8abd6baef01bb1c4fc995343121bf5fc7dead1f67e97484a441ba9e8)\r\n- + [Linux riscv64](https://get.helm.sh/helm-v3.17.1-linux-riscv64.tar.gz) + ([checksum](https://get.helm.sh/helm-v3.17.1-linux-riscv64.tar.gz.sha256sum) + / cf174b1ff83032255f798278152c637d01dd1d1533fd77915ab751d8cf4191a7)\r\n- + [Windows amd64](https://get.helm.sh/helm-v3.17.1-windows-amd64.zip) ([checksum](https://get.helm.sh/helm-v3.17.1-windows-amd64.zip.sha256sum) + / 08281ee6d4d272835ff10c510b8b39736d112d9cb89dfbc853fe83913fbe48d0)\r\n- + [Windows arm64](https://get.helm.sh/helm-v3.17.1-windows-arm64.zip) ([checksum](https://get.helm.sh/helm-v3.17.1-windows-arm64.zip.sha256sum) + / 44c9c8246f643ea45bb45013a182fc25da2a8206a6f322a0c6fa47a1f4bcf1e4)\r\n\r\nThe + [Quickstart Guide](https://helm.sh/docs/intro/quickstart/) will get you + going from there. For **upgrade instructions** or detailed installation + notes, check the [install guide](https://helm.sh/docs/intro/install/). + You can also use a [script to install](https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3) + on any system with `bash`.\r\n\r\n## What's Next\r\n\r\n- 3.17.2 is the + next patch release and will be on March 12, 2025\r\n- 3.18.0 is the next + minor release and will be on May 14, 2025\r\n\r\n## Changelog\r\n\r\n- + add test for nullifying nested global value 980d8ac1939e39138101364400756af2bdee1da5 + (Ryan Hockstad)\r\n- Add test case for removing an entire object c23e3b6c495658bb1eec04b32c8e4bfc5ef4dd60 + (Ryan Hockstad)\r\n- Tests for bugfix: Override subcharts with null values + #12879 3110d5ff63a0edcf6decac8288106b55a6f41760 (Scott Rigby)\r\n- merge + null child chart objects 9520c71fb04783cdab111759f0f3c5d1cdc83f1c (Ryan + Hockstad)\r\n- build(deps): bump the k8s-io group with 7 updates ab7dedd4cf47cb7455a283d93a1627a35933d634 + (dependabot[bot])\r\n- fix: check group for resource info match a2d36029d5dba292073d23acea2ef59cfb429ee9 + (Jiasheng Zhu)" + created_at: "2025-02-12T20:23:51Z" + draft: false + html_url: https://github.com/helm/helm/releases/tag/v3.17.1 + id: 199963961 + name: Helm v3.17.1 + node_id: RE_kwDOApspmc4L6zU5 + prerelease: false + published_at: "2025-02-12T21:01:05Z" + tag_name: v3.17.1 + tarball_url: https://api.github.com/repos/helm/helm/tarball/v3.17.1 + target_commitish: main + upload_url: https://uploads.github.com/repos/helm/helm/releases/199963961/assets{?name,label} + url: https://api.github.com/repos/helm/helm/releases/199963961 + zipball_url: https://api.github.com/repos/helm/helm/zipball/v3.17.1 + 3.17.2: + githubRelease: + assets: + - browser_download_url: https://github.com/helm/helm/releases/download/v3.17.2/helm-v3.17.2-darwin-amd64.tar.gz.asc + content_type: application/octet-stream + created_at: "2025-03-13T16:29:56Z" + download_count: 1 + id: 237179229 + label: null + name: helm-v3.17.2-darwin-amd64.tar.gz.asc + node_id: RA_kwDOApspmc4OIxFd + size: 833 + state: uploaded + updated_at: "2025-03-13T16:29:56Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/237179229 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.17.2/helm-v3.17.2-darwin-amd64.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2025-03-13T16:29:56Z" + download_count: 3 + id: 237179233 + label: null + name: helm-v3.17.2-darwin-amd64.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4OIxFh + size: 833 + state: uploaded + updated_at: "2025-03-13T16:29:57Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/237179233 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.17.2/helm-v3.17.2-darwin-amd64.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2025-03-13T16:29:57Z" + download_count: 3 + id: 237179237 + label: null + name: helm-v3.17.2-darwin-amd64.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4OIxFl + size: 833 + state: uploaded + updated_at: "2025-03-13T16:29:57Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/237179237 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.17.2/helm-v3.17.2-darwin-arm64.tar.gz.asc + content_type: application/octet-stream + created_at: "2025-03-13T16:29:57Z" + download_count: 1 + id: 237179240 + label: null + name: helm-v3.17.2-darwin-arm64.tar.gz.asc + node_id: RA_kwDOApspmc4OIxFo + size: 833 + state: uploaded + updated_at: "2025-03-13T16:29:57Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/237179240 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.17.2/helm-v3.17.2-darwin-arm64.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2025-03-13T16:29:57Z" + download_count: 3 + id: 237179242 + label: null + name: helm-v3.17.2-darwin-arm64.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4OIxFq + size: 833 + state: uploaded + updated_at: "2025-03-13T16:29:57Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/237179242 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.17.2/helm-v3.17.2-darwin-arm64.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2025-03-13T16:29:57Z" + download_count: 3 + id: 237179244 + label: null + name: helm-v3.17.2-darwin-arm64.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4OIxFs + size: 833 + state: uploaded + updated_at: "2025-03-13T16:29:57Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/237179244 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.17.2/helm-v3.17.2-linux-386.tar.gz.asc + content_type: application/octet-stream + created_at: "2025-03-13T16:29:57Z" + download_count: 1 + id: 237179246 + label: null + name: helm-v3.17.2-linux-386.tar.gz.asc + node_id: RA_kwDOApspmc4OIxFu + size: 833 + state: uploaded + updated_at: "2025-03-13T16:29:57Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/237179246 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.17.2/helm-v3.17.2-linux-386.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2025-03-13T16:29:57Z" + download_count: 3 + id: 237179247 + label: null + name: helm-v3.17.2-linux-386.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4OIxFv + size: 833 + state: uploaded + updated_at: "2025-03-13T16:29:58Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/237179247 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.17.2/helm-v3.17.2-linux-386.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2025-03-13T16:29:58Z" + download_count: 3 + id: 237179251 + label: null + name: helm-v3.17.2-linux-386.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4OIxFz + size: 833 + state: uploaded + updated_at: "2025-03-13T16:29:58Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/237179251 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.17.2/helm-v3.17.2-linux-amd64.tar.gz.asc + content_type: application/octet-stream + created_at: "2025-03-13T16:29:58Z" + download_count: 11 + id: 237179254 + label: null + name: helm-v3.17.2-linux-amd64.tar.gz.asc + node_id: RA_kwDOApspmc4OIxF2 + size: 833 + state: uploaded + updated_at: "2025-03-13T16:29:58Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/237179254 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.17.2/helm-v3.17.2-linux-amd64.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2025-03-13T16:29:58Z" + download_count: 13 + id: 237179256 + label: null + name: helm-v3.17.2-linux-amd64.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4OIxF4 + size: 833 + state: uploaded + updated_at: "2025-03-13T16:29:58Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/237179256 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.17.2/helm-v3.17.2-linux-amd64.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2025-03-13T16:29:58Z" + download_count: 3 + id: 237179259 + label: null + name: helm-v3.17.2-linux-amd64.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4OIxF7 + size: 833 + state: uploaded + updated_at: "2025-03-13T16:29:58Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/237179259 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.17.2/helm-v3.17.2-linux-arm.tar.gz.asc + content_type: application/octet-stream + created_at: "2025-03-13T16:29:58Z" + download_count: 1 + id: 237179262 + label: null + name: helm-v3.17.2-linux-arm.tar.gz.asc + node_id: RA_kwDOApspmc4OIxF- + size: 833 + state: uploaded + updated_at: "2025-03-13T16:29:59Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/237179262 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.17.2/helm-v3.17.2-linux-arm.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2025-03-13T16:29:59Z" + download_count: 3 + id: 237179266 + label: null + name: helm-v3.17.2-linux-arm.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4OIxGC + size: 833 + state: uploaded + updated_at: "2025-03-13T16:29:59Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/237179266 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.17.2/helm-v3.17.2-linux-arm.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2025-03-13T16:29:59Z" + download_count: 3 + id: 237179269 + label: null + name: helm-v3.17.2-linux-arm.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4OIxGF + size: 833 + state: uploaded + updated_at: "2025-03-13T16:29:59Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/237179269 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.17.2/helm-v3.17.2-linux-arm64.tar.gz.asc + content_type: application/octet-stream + created_at: "2025-03-13T16:29:59Z" + download_count: 1 + id: 237179272 + label: null + name: helm-v3.17.2-linux-arm64.tar.gz.asc + node_id: RA_kwDOApspmc4OIxGI + size: 833 + state: uploaded + updated_at: "2025-03-13T16:29:59Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/237179272 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.17.2/helm-v3.17.2-linux-arm64.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2025-03-13T16:29:59Z" + download_count: 3 + id: 237179273 + label: null + name: helm-v3.17.2-linux-arm64.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4OIxGJ + size: 833 + state: uploaded + updated_at: "2025-03-13T16:29:59Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/237179273 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.17.2/helm-v3.17.2-linux-arm64.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2025-03-13T16:29:59Z" + download_count: 3 + id: 237179276 + label: null + name: helm-v3.17.2-linux-arm64.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4OIxGM + size: 833 + state: uploaded + updated_at: "2025-03-13T16:30:00Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/237179276 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.17.2/helm-v3.17.2-linux-ppc64le.tar.gz.asc + content_type: application/octet-stream + created_at: "2025-03-13T16:30:00Z" + download_count: 1 + id: 237179278 + label: null + name: helm-v3.17.2-linux-ppc64le.tar.gz.asc + node_id: RA_kwDOApspmc4OIxGO + size: 833 + state: uploaded + updated_at: "2025-03-13T16:30:00Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/237179278 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.17.2/helm-v3.17.2-linux-ppc64le.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2025-03-13T16:30:00Z" + download_count: 3 + id: 237179280 + label: null + name: helm-v3.17.2-linux-ppc64le.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4OIxGQ + size: 833 + state: uploaded + updated_at: "2025-03-13T16:30:00Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/237179280 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.17.2/helm-v3.17.2-linux-ppc64le.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2025-03-13T16:30:00Z" + download_count: 3 + id: 237179281 + label: null + name: helm-v3.17.2-linux-ppc64le.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4OIxGR + size: 833 + state: uploaded + updated_at: "2025-03-13T16:30:00Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/237179281 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.17.2/helm-v3.17.2-linux-riscv64.tar.gz.asc + content_type: application/octet-stream + created_at: "2025-03-13T16:30:00Z" + download_count: 1 + id: 237179285 + label: null + name: helm-v3.17.2-linux-riscv64.tar.gz.asc + node_id: RA_kwDOApspmc4OIxGV + size: 833 + state: uploaded + updated_at: "2025-03-13T16:30:00Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/237179285 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.17.2/helm-v3.17.2-linux-riscv64.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2025-03-13T16:30:00Z" + download_count: 3 + id: 237179287 + label: null + name: helm-v3.17.2-linux-riscv64.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4OIxGX + size: 833 + state: uploaded + updated_at: "2025-03-13T16:30:01Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/237179287 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.17.2/helm-v3.17.2-linux-riscv64.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2025-03-13T16:30:01Z" + download_count: 3 + id: 237179290 + label: null + name: helm-v3.17.2-linux-riscv64.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4OIxGa + size: 833 + state: uploaded + updated_at: "2025-03-13T16:30:01Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/237179290 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.17.2/helm-v3.17.2-linux-s390x.tar.gz.asc + content_type: application/octet-stream + created_at: "2025-03-13T16:30:01Z" + download_count: 1 + id: 237179295 + label: null + name: helm-v3.17.2-linux-s390x.tar.gz.asc + node_id: RA_kwDOApspmc4OIxGf + size: 833 + state: uploaded + updated_at: "2025-03-13T16:30:01Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/237179295 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.17.2/helm-v3.17.2-linux-s390x.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2025-03-13T16:30:01Z" + download_count: 3 + id: 237179296 + label: null + name: helm-v3.17.2-linux-s390x.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4OIxGg + size: 833 + state: uploaded + updated_at: "2025-03-13T16:30:01Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/237179296 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.17.2/helm-v3.17.2-linux-s390x.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2025-03-13T16:30:01Z" + download_count: 3 + id: 237179299 + label: null + name: helm-v3.17.2-linux-s390x.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4OIxGj + size: 833 + state: uploaded + updated_at: "2025-03-13T16:30:01Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/237179299 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.17.2/helm-v3.17.2-windows-amd64.zip.asc + content_type: application/octet-stream + created_at: "2025-03-13T16:30:01Z" + download_count: 1 + id: 237179301 + label: null + name: helm-v3.17.2-windows-amd64.zip.asc + node_id: RA_kwDOApspmc4OIxGl + size: 833 + state: uploaded + updated_at: "2025-03-13T16:30:02Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/237179301 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.17.2/helm-v3.17.2-windows-amd64.zip.sha256.asc + content_type: application/octet-stream + created_at: "2025-03-13T16:30:02Z" + download_count: 3 + id: 237179305 + label: null + name: helm-v3.17.2-windows-amd64.zip.sha256.asc + node_id: RA_kwDOApspmc4OIxGp + size: 833 + state: uploaded + updated_at: "2025-03-13T16:30:02Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/237179305 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.17.2/helm-v3.17.2-windows-amd64.zip.sha256sum.asc + content_type: application/octet-stream + created_at: "2025-03-13T16:30:02Z" + download_count: 3 + id: 237179309 + label: null + name: helm-v3.17.2-windows-amd64.zip.sha256sum.asc + node_id: RA_kwDOApspmc4OIxGt + size: 833 + state: uploaded + updated_at: "2025-03-13T16:30:02Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/237179309 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.17.2/helm-v3.17.2-windows-arm64.zip.asc + content_type: application/octet-stream + created_at: "2025-03-13T16:30:02Z" + download_count: 1 + id: 237179311 + label: null + name: helm-v3.17.2-windows-arm64.zip.asc + node_id: RA_kwDOApspmc4OIxGv + size: 833 + state: uploaded + updated_at: "2025-03-13T16:30:02Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/237179311 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.17.2/helm-v3.17.2-windows-arm64.zip.sha256.asc + content_type: application/octet-stream + created_at: "2025-03-13T16:30:02Z" + download_count: 3 + id: 237179312 + label: null + name: helm-v3.17.2-windows-arm64.zip.sha256.asc + node_id: RA_kwDOApspmc4OIxGw + size: 833 + state: uploaded + updated_at: "2025-03-13T16:30:02Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/237179312 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.17.2/helm-v3.17.2-windows-arm64.zip.sha256sum.asc + content_type: application/octet-stream + created_at: "2025-03-13T16:30:02Z" + download_count: 3 + id: 237179315 + label: null + name: helm-v3.17.2-windows-arm64.zip.sha256sum.asc + node_id: RA_kwDOApspmc4OIxGz + size: 833 + state: uploaded + updated_at: "2025-03-13T16:30:03Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/237179315 + assets_url: https://api.github.com/repos/helm/helm/releases/205639886/assets + author: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + body: "Helm v3.17.2 is a patch release. Users are encouraged to upgrade + for the best experience. Users are encouraged to upgrade for the best + experience.\r\n\r\nThe community keeps growing, and we'd love to see you + there!\r\n\r\n- Join the discussion in [Kubernetes Slack](https://kubernetes.slack.com):\r\n + \ - for questions and just to hang out\r\n - for discussing PRs, code, + and bugs\r\n- Hang out at the Public Developer Call: Thursday, 9:30 Pacific + via [Zoom](https://zoom.us/j/696660622)\r\n- Test, debug, and contribute + charts: [ArtifactHub/packages](https://artifacthub.io/packages/search?kind=0)\r\n\r\n## + Installation and Upgrading\r\n\r\nDownload Helm v3.17.2. The common platform + binaries are here:\r\n\r\n- [MacOS amd64](https://get.helm.sh/helm-v3.17.2-darwin-amd64.tar.gz) + ([checksum](https://get.helm.sh/helm-v3.17.2-darwin-amd64.tar.gz.sha256sum) + / 3e240238c7a3a10efd37b8e16615b28e94ba5db5957247bb42009ba6d52f76e9)\r\n- + [MacOS arm64](https://get.helm.sh/helm-v3.17.2-darwin-arm64.tar.gz) ([checksum](https://get.helm.sh/helm-v3.17.2-darwin-arm64.tar.gz.sha256sum) + / b843cebcbebc9eccb1e43aba9cca7693d32e9f2c4a35344990e3b7b381933948)\r\n- + [Linux amd64](https://get.helm.sh/helm-v3.17.2-linux-amd64.tar.gz) ([checksum](https://get.helm.sh/helm-v3.17.2-linux-amd64.tar.gz.sha256sum) + / 90c28792a1eb5fb0b50028e39ebf826531ebfcf73f599050dbd79bab2f277241)\r\n- + [Linux arm](https://get.helm.sh/helm-v3.17.2-linux-arm.tar.gz) ([checksum](https://get.helm.sh/helm-v3.17.2-linux-arm.tar.gz.sha256sum) + / 0b13ec8580dd5498b5a2d7cb34146e098049f59500a266db1bb98f59649eb90a)\r\n- + [Linux arm64](https://get.helm.sh/helm-v3.17.2-linux-arm64.tar.gz) ([checksum](https://get.helm.sh/helm-v3.17.2-linux-arm64.tar.gz.sha256sum) + / d78d76ec7625a94991e887ac049d93f44bd70e4876200b945f813c9e1ed1df7c)\r\n- + [Linux i386](https://get.helm.sh/helm-v3.17.2-linux-386.tar.gz) ([checksum](https://get.helm.sh/helm-v3.17.2-linux-386.tar.gz.sha256sum) + / 1c599c4559b97d8cf2100704f5cdc3269dcb369b553711b09a564e1d89c725dc)\r\n- + [Linux ppc64le](https://get.helm.sh/helm-v3.17.2-linux-ppc64le.tar.gz) + ([checksum](https://get.helm.sh/helm-v3.17.2-linux-ppc64le.tar.gz.sha256sum) + / 6bb1c83078bdd5e9acad5793dfc9ab3b5b56d410723a660ff1da61dbdff3207b)\r\n- + [Linux s390x](https://get.helm.sh/helm-v3.17.2-linux-s390x.tar.gz) ([checksum](https://get.helm.sh/helm-v3.17.2-linux-s390x.tar.gz.sha256sum) + / 55ce412c48a79020a435eed2d7895e3cf74293d939da60a287c7c5fc15480f58)\r\n- + [Linux riscv64](https://get.helm.sh/helm-v3.17.2-linux-riscv64.tar.gz) + ([checksum](https://get.helm.sh/helm-v3.17.2-linux-riscv64.tar.gz.sha256sum) + / 70e27a5b73fe848233f3e43bbe393a84d5ccfea2db666906ed37ef9b54468876)\r\n- + [Windows amd64](https://get.helm.sh/helm-v3.17.2-windows-amd64.zip) ([checksum](https://get.helm.sh/helm-v3.17.2-windows-amd64.zip.sha256sum) + / f76fe76fa116d2bae948aee9bb54ba11bf5b726a09f732ce6a74eb65af2886b1)\r\n- + [Windows arm64](https://get.helm.sh/helm-v3.17.2-windows-arm64.zip) ([checksum](https://get.helm.sh/helm-v3.17.2-windows-arm64.zip.sha256sum) + / a47a0059285347d44c2ac81aa09398cfa527eb60bcddd7e1836f9459e503697d)\r\n\r\nThis + release was signed with `672C 657B E06B 4B30 969C 4A57 4614 49C2 5E36 + B98E ` and can be found at @mattfarina [keybase account](https://keybase.io/mattfarina). + Please use the attached signatures for verifying this release using `gpg`.\r\n\r\nThe + [Quickstart Guide](https://helm.sh/docs/intro/quickstart/) will get you + going from there. For **upgrade instructions** or detailed installation + notes, check the [install guide](https://helm.sh/docs/intro/install/). + You can also use a [script to install](https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3) + on any system with `bash`.\r\n\r\n## What's Next\r\n\r\n- 3.17.3 is the + next patch release and will be on April 09, 2025\r\n- 3.18.0 is the next + minor release and will be on May 14, 2025\r\n\r\n## Changelog\r\n\r\n- + Updating to 0.37.0 for x/net cc0bbbd6d6276b83880042c1ecb34087e84d41eb + (Matt Farina)\r\n- build(deps): bump the k8s-io group with 7 updates ecb7a74f19c23f76e7c18d1ce99f88bf1926a9ae + (dependabot[bot])\r\n" + created_at: "2025-03-13T16:19:12Z" + draft: false + html_url: https://github.com/helm/helm/releases/tag/v3.17.2 + id: 205639886 + mentions_count: 1 + name: Helm v3.17.2 + node_id: RE_kwDOApspmc4MQdDO + prerelease: false + published_at: "2025-03-13T16:30:33Z" + reactions: + "+1": 1 + "-1": 0 + confused: 0 + eyes: 0 + heart: 0 + hooray: 1 + laugh: 0 + rocket: 0 + total_count: 2 + url: https://api.github.com/repos/helm/helm/releases/205639886/reactions + tag_name: v3.17.2 + tarball_url: https://api.github.com/repos/helm/helm/tarball/v3.17.2 + target_commitish: main + upload_url: https://uploads.github.com/repos/helm/helm/releases/205639886/assets{?name,label} + url: https://api.github.com/repos/helm/helm/releases/205639886 + zipball_url: https://api.github.com/repos/helm/helm/zipball/v3.17.2 + 3.17.3: + githubRelease: + assets: + - browser_download_url: https://github.com/helm/helm/releases/download/v3.17.3/helm-v3.17.3-darwin-amd64.tar.gz.asc + content_type: application/octet-stream + created_at: "2025-04-09T18:00:49Z" + download_count: 0 + id: 244963019 + label: null + name: helm-v3.17.3-darwin-amd64.tar.gz.asc + node_id: RA_kwDOApspmc4OmdbL + size: 228 + state: uploaded + updated_at: "2025-04-09T18:00:49Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/13884882?v=4 + events_url: https://api.github.com/users/robertsirc/events{/privacy} + followers_url: https://api.github.com/users/robertsirc/followers + following_url: https://api.github.com/users/robertsirc/following{/other_user} + gists_url: https://api.github.com/users/robertsirc/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/robertsirc + id: 13884882 + login: robertsirc + node_id: MDQ6VXNlcjEzODg0ODgy + organizations_url: https://api.github.com/users/robertsirc/orgs + received_events_url: https://api.github.com/users/robertsirc/received_events + repos_url: https://api.github.com/users/robertsirc/repos + site_admin: false + starred_url: https://api.github.com/users/robertsirc/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/robertsirc/subscriptions + type: User + url: https://api.github.com/users/robertsirc + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/244963019 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.17.3/helm-v3.17.3-darwin-amd64.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2025-04-09T18:00:55Z" + download_count: 0 + id: 244963072 + label: null + name: helm-v3.17.3-darwin-amd64.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4OmdcA + size: 228 + state: uploaded + updated_at: "2025-04-09T18:00:55Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/13884882?v=4 + events_url: https://api.github.com/users/robertsirc/events{/privacy} + followers_url: https://api.github.com/users/robertsirc/followers + following_url: https://api.github.com/users/robertsirc/following{/other_user} + gists_url: https://api.github.com/users/robertsirc/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/robertsirc + id: 13884882 + login: robertsirc + node_id: MDQ6VXNlcjEzODg0ODgy + organizations_url: https://api.github.com/users/robertsirc/orgs + received_events_url: https://api.github.com/users/robertsirc/received_events + repos_url: https://api.github.com/users/robertsirc/repos + site_admin: false + starred_url: https://api.github.com/users/robertsirc/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/robertsirc/subscriptions + type: User + url: https://api.github.com/users/robertsirc + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/244963072 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.17.3/helm-v3.17.3-darwin-amd64.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2025-04-09T18:00:55Z" + download_count: 0 + id: 244963071 + label: null + name: helm-v3.17.3-darwin-amd64.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4Omdb_ + size: 228 + state: uploaded + updated_at: "2025-04-09T18:00:55Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/13884882?v=4 + events_url: https://api.github.com/users/robertsirc/events{/privacy} + followers_url: https://api.github.com/users/robertsirc/followers + following_url: https://api.github.com/users/robertsirc/following{/other_user} + gists_url: https://api.github.com/users/robertsirc/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/robertsirc + id: 13884882 + login: robertsirc + node_id: MDQ6VXNlcjEzODg0ODgy + organizations_url: https://api.github.com/users/robertsirc/orgs + received_events_url: https://api.github.com/users/robertsirc/received_events + repos_url: https://api.github.com/users/robertsirc/repos + site_admin: false + starred_url: https://api.github.com/users/robertsirc/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/robertsirc/subscriptions + type: User + url: https://api.github.com/users/robertsirc + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/244963071 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.17.3/helm-v3.17.3-darwin-arm64.tar.gz.asc + content_type: application/octet-stream + created_at: "2025-04-09T18:00:55Z" + download_count: 0 + id: 244963069 + label: null + name: helm-v3.17.3-darwin-arm64.tar.gz.asc + node_id: RA_kwDOApspmc4Omdb9 + size: 228 + state: uploaded + updated_at: "2025-04-09T18:00:55Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/13884882?v=4 + events_url: https://api.github.com/users/robertsirc/events{/privacy} + followers_url: https://api.github.com/users/robertsirc/followers + following_url: https://api.github.com/users/robertsirc/following{/other_user} + gists_url: https://api.github.com/users/robertsirc/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/robertsirc + id: 13884882 + login: robertsirc + node_id: MDQ6VXNlcjEzODg0ODgy + organizations_url: https://api.github.com/users/robertsirc/orgs + received_events_url: https://api.github.com/users/robertsirc/received_events + repos_url: https://api.github.com/users/robertsirc/repos + site_admin: false + starred_url: https://api.github.com/users/robertsirc/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/robertsirc/subscriptions + type: User + url: https://api.github.com/users/robertsirc + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/244963069 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.17.3/helm-v3.17.3-darwin-arm64.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2025-04-09T18:00:55Z" + download_count: 0 + id: 244963068 + label: null + name: helm-v3.17.3-darwin-arm64.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4Omdb8 + size: 228 + state: uploaded + updated_at: "2025-04-09T18:00:55Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/13884882?v=4 + events_url: https://api.github.com/users/robertsirc/events{/privacy} + followers_url: https://api.github.com/users/robertsirc/followers + following_url: https://api.github.com/users/robertsirc/following{/other_user} + gists_url: https://api.github.com/users/robertsirc/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/robertsirc + id: 13884882 + login: robertsirc + node_id: MDQ6VXNlcjEzODg0ODgy + organizations_url: https://api.github.com/users/robertsirc/orgs + received_events_url: https://api.github.com/users/robertsirc/received_events + repos_url: https://api.github.com/users/robertsirc/repos + site_admin: false + starred_url: https://api.github.com/users/robertsirc/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/robertsirc/subscriptions + type: User + url: https://api.github.com/users/robertsirc + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/244963068 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.17.3/helm-v3.17.3-darwin-arm64.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2025-04-09T18:00:54Z" + download_count: 0 + id: 244963067 + label: null + name: helm-v3.17.3-darwin-arm64.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4Omdb7 + size: 228 + state: uploaded + updated_at: "2025-04-09T18:00:55Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/13884882?v=4 + events_url: https://api.github.com/users/robertsirc/events{/privacy} + followers_url: https://api.github.com/users/robertsirc/followers + following_url: https://api.github.com/users/robertsirc/following{/other_user} + gists_url: https://api.github.com/users/robertsirc/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/robertsirc + id: 13884882 + login: robertsirc + node_id: MDQ6VXNlcjEzODg0ODgy + organizations_url: https://api.github.com/users/robertsirc/orgs + received_events_url: https://api.github.com/users/robertsirc/received_events + repos_url: https://api.github.com/users/robertsirc/repos + site_admin: false + starred_url: https://api.github.com/users/robertsirc/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/robertsirc/subscriptions + type: User + url: https://api.github.com/users/robertsirc + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/244963067 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.17.3/helm-v3.17.3-linux-386.tar.gz.asc + content_type: application/octet-stream + created_at: "2025-04-09T18:00:54Z" + download_count: 0 + id: 244963066 + label: null + name: helm-v3.17.3-linux-386.tar.gz.asc + node_id: RA_kwDOApspmc4Omdb6 + size: 228 + state: uploaded + updated_at: "2025-04-09T18:00:54Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/13884882?v=4 + events_url: https://api.github.com/users/robertsirc/events{/privacy} + followers_url: https://api.github.com/users/robertsirc/followers + following_url: https://api.github.com/users/robertsirc/following{/other_user} + gists_url: https://api.github.com/users/robertsirc/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/robertsirc + id: 13884882 + login: robertsirc + node_id: MDQ6VXNlcjEzODg0ODgy + organizations_url: https://api.github.com/users/robertsirc/orgs + received_events_url: https://api.github.com/users/robertsirc/received_events + repos_url: https://api.github.com/users/robertsirc/repos + site_admin: false + starred_url: https://api.github.com/users/robertsirc/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/robertsirc/subscriptions + type: User + url: https://api.github.com/users/robertsirc + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/244963066 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.17.3/helm-v3.17.3-linux-386.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2025-04-09T18:00:54Z" + download_count: 0 + id: 244963065 + label: null + name: helm-v3.17.3-linux-386.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4Omdb5 + size: 228 + state: uploaded + updated_at: "2025-04-09T18:00:54Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/13884882?v=4 + events_url: https://api.github.com/users/robertsirc/events{/privacy} + followers_url: https://api.github.com/users/robertsirc/followers + following_url: https://api.github.com/users/robertsirc/following{/other_user} + gists_url: https://api.github.com/users/robertsirc/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/robertsirc + id: 13884882 + login: robertsirc + node_id: MDQ6VXNlcjEzODg0ODgy + organizations_url: https://api.github.com/users/robertsirc/orgs + received_events_url: https://api.github.com/users/robertsirc/received_events + repos_url: https://api.github.com/users/robertsirc/repos + site_admin: false + starred_url: https://api.github.com/users/robertsirc/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/robertsirc/subscriptions + type: User + url: https://api.github.com/users/robertsirc + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/244963065 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.17.3/helm-v3.17.3-linux-386.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2025-04-09T18:00:54Z" + download_count: 0 + id: 244963064 + label: null + name: helm-v3.17.3-linux-386.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4Omdb4 + size: 228 + state: uploaded + updated_at: "2025-04-09T18:00:54Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/13884882?v=4 + events_url: https://api.github.com/users/robertsirc/events{/privacy} + followers_url: https://api.github.com/users/robertsirc/followers + following_url: https://api.github.com/users/robertsirc/following{/other_user} + gists_url: https://api.github.com/users/robertsirc/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/robertsirc + id: 13884882 + login: robertsirc + node_id: MDQ6VXNlcjEzODg0ODgy + organizations_url: https://api.github.com/users/robertsirc/orgs + received_events_url: https://api.github.com/users/robertsirc/received_events + repos_url: https://api.github.com/users/robertsirc/repos + site_admin: false + starred_url: https://api.github.com/users/robertsirc/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/robertsirc/subscriptions + type: User + url: https://api.github.com/users/robertsirc + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/244963064 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.17.3/helm-v3.17.3-linux-amd64.tar.gz.asc + content_type: application/octet-stream + created_at: "2025-04-09T18:00:54Z" + download_count: 0 + id: 244963063 + label: null + name: helm-v3.17.3-linux-amd64.tar.gz.asc + node_id: RA_kwDOApspmc4Omdb3 + size: 228 + state: uploaded + updated_at: "2025-04-09T18:00:54Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/13884882?v=4 + events_url: https://api.github.com/users/robertsirc/events{/privacy} + followers_url: https://api.github.com/users/robertsirc/followers + following_url: https://api.github.com/users/robertsirc/following{/other_user} + gists_url: https://api.github.com/users/robertsirc/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/robertsirc + id: 13884882 + login: robertsirc + node_id: MDQ6VXNlcjEzODg0ODgy + organizations_url: https://api.github.com/users/robertsirc/orgs + received_events_url: https://api.github.com/users/robertsirc/received_events + repos_url: https://api.github.com/users/robertsirc/repos + site_admin: false + starred_url: https://api.github.com/users/robertsirc/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/robertsirc/subscriptions + type: User + url: https://api.github.com/users/robertsirc + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/244963063 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.17.3/helm-v3.17.3-linux-amd64.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2025-04-09T18:00:54Z" + download_count: 0 + id: 244963062 + label: null + name: helm-v3.17.3-linux-amd64.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4Omdb2 + size: 228 + state: uploaded + updated_at: "2025-04-09T18:00:54Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/13884882?v=4 + events_url: https://api.github.com/users/robertsirc/events{/privacy} + followers_url: https://api.github.com/users/robertsirc/followers + following_url: https://api.github.com/users/robertsirc/following{/other_user} + gists_url: https://api.github.com/users/robertsirc/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/robertsirc + id: 13884882 + login: robertsirc + node_id: MDQ6VXNlcjEzODg0ODgy + organizations_url: https://api.github.com/users/robertsirc/orgs + received_events_url: https://api.github.com/users/robertsirc/received_events + repos_url: https://api.github.com/users/robertsirc/repos + site_admin: false + starred_url: https://api.github.com/users/robertsirc/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/robertsirc/subscriptions + type: User + url: https://api.github.com/users/robertsirc + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/244963062 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.17.3/helm-v3.17.3-linux-amd64.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2025-04-09T18:00:53Z" + download_count: 0 + id: 244963061 + label: null + name: helm-v3.17.3-linux-amd64.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4Omdb1 + size: 228 + state: uploaded + updated_at: "2025-04-09T18:00:54Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/13884882?v=4 + events_url: https://api.github.com/users/robertsirc/events{/privacy} + followers_url: https://api.github.com/users/robertsirc/followers + following_url: https://api.github.com/users/robertsirc/following{/other_user} + gists_url: https://api.github.com/users/robertsirc/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/robertsirc + id: 13884882 + login: robertsirc + node_id: MDQ6VXNlcjEzODg0ODgy + organizations_url: https://api.github.com/users/robertsirc/orgs + received_events_url: https://api.github.com/users/robertsirc/received_events + repos_url: https://api.github.com/users/robertsirc/repos + site_admin: false + starred_url: https://api.github.com/users/robertsirc/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/robertsirc/subscriptions + type: User + url: https://api.github.com/users/robertsirc + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/244963061 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.17.3/helm-v3.17.3-linux-arm.tar.gz.asc + content_type: application/octet-stream + created_at: "2025-04-09T18:00:53Z" + download_count: 0 + id: 244963060 + label: null + name: helm-v3.17.3-linux-arm.tar.gz.asc + node_id: RA_kwDOApspmc4Omdb0 + size: 228 + state: uploaded + updated_at: "2025-04-09T18:00:53Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/13884882?v=4 + events_url: https://api.github.com/users/robertsirc/events{/privacy} + followers_url: https://api.github.com/users/robertsirc/followers + following_url: https://api.github.com/users/robertsirc/following{/other_user} + gists_url: https://api.github.com/users/robertsirc/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/robertsirc + id: 13884882 + login: robertsirc + node_id: MDQ6VXNlcjEzODg0ODgy + organizations_url: https://api.github.com/users/robertsirc/orgs + received_events_url: https://api.github.com/users/robertsirc/received_events + repos_url: https://api.github.com/users/robertsirc/repos + site_admin: false + starred_url: https://api.github.com/users/robertsirc/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/robertsirc/subscriptions + type: User + url: https://api.github.com/users/robertsirc + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/244963060 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.17.3/helm-v3.17.3-linux-arm.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2025-04-09T18:00:53Z" + download_count: 0 + id: 244963057 + label: null + name: helm-v3.17.3-linux-arm.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4Omdbx + size: 228 + state: uploaded + updated_at: "2025-04-09T18:00:53Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/13884882?v=4 + events_url: https://api.github.com/users/robertsirc/events{/privacy} + followers_url: https://api.github.com/users/robertsirc/followers + following_url: https://api.github.com/users/robertsirc/following{/other_user} + gists_url: https://api.github.com/users/robertsirc/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/robertsirc + id: 13884882 + login: robertsirc + node_id: MDQ6VXNlcjEzODg0ODgy + organizations_url: https://api.github.com/users/robertsirc/orgs + received_events_url: https://api.github.com/users/robertsirc/received_events + repos_url: https://api.github.com/users/robertsirc/repos + site_admin: false + starred_url: https://api.github.com/users/robertsirc/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/robertsirc/subscriptions + type: User + url: https://api.github.com/users/robertsirc + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/244963057 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.17.3/helm-v3.17.3-linux-arm.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2025-04-09T18:00:53Z" + download_count: 0 + id: 244963056 + label: null + name: helm-v3.17.3-linux-arm.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4Omdbw + size: 228 + state: uploaded + updated_at: "2025-04-09T18:00:53Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/13884882?v=4 + events_url: https://api.github.com/users/robertsirc/events{/privacy} + followers_url: https://api.github.com/users/robertsirc/followers + following_url: https://api.github.com/users/robertsirc/following{/other_user} + gists_url: https://api.github.com/users/robertsirc/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/robertsirc + id: 13884882 + login: robertsirc + node_id: MDQ6VXNlcjEzODg0ODgy + organizations_url: https://api.github.com/users/robertsirc/orgs + received_events_url: https://api.github.com/users/robertsirc/received_events + repos_url: https://api.github.com/users/robertsirc/repos + site_admin: false + starred_url: https://api.github.com/users/robertsirc/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/robertsirc/subscriptions + type: User + url: https://api.github.com/users/robertsirc + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/244963056 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.17.3/helm-v3.17.3-linux-arm64.tar.gz.asc + content_type: application/octet-stream + created_at: "2025-04-09T18:00:52Z" + download_count: 0 + id: 244963054 + label: null + name: helm-v3.17.3-linux-arm64.tar.gz.asc + node_id: RA_kwDOApspmc4Omdbu + size: 228 + state: uploaded + updated_at: "2025-04-09T18:00:53Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/13884882?v=4 + events_url: https://api.github.com/users/robertsirc/events{/privacy} + followers_url: https://api.github.com/users/robertsirc/followers + following_url: https://api.github.com/users/robertsirc/following{/other_user} + gists_url: https://api.github.com/users/robertsirc/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/robertsirc + id: 13884882 + login: robertsirc + node_id: MDQ6VXNlcjEzODg0ODgy + organizations_url: https://api.github.com/users/robertsirc/orgs + received_events_url: https://api.github.com/users/robertsirc/received_events + repos_url: https://api.github.com/users/robertsirc/repos + site_admin: false + starred_url: https://api.github.com/users/robertsirc/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/robertsirc/subscriptions + type: User + url: https://api.github.com/users/robertsirc + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/244963054 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.17.3/helm-v3.17.3-linux-arm64.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2025-04-09T18:00:52Z" + download_count: 0 + id: 244963052 + label: null + name: helm-v3.17.3-linux-arm64.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4Omdbs + size: 228 + state: uploaded + updated_at: "2025-04-09T18:00:52Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/13884882?v=4 + events_url: https://api.github.com/users/robertsirc/events{/privacy} + followers_url: https://api.github.com/users/robertsirc/followers + following_url: https://api.github.com/users/robertsirc/following{/other_user} + gists_url: https://api.github.com/users/robertsirc/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/robertsirc + id: 13884882 + login: robertsirc + node_id: MDQ6VXNlcjEzODg0ODgy + organizations_url: https://api.github.com/users/robertsirc/orgs + received_events_url: https://api.github.com/users/robertsirc/received_events + repos_url: https://api.github.com/users/robertsirc/repos + site_admin: false + starred_url: https://api.github.com/users/robertsirc/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/robertsirc/subscriptions + type: User + url: https://api.github.com/users/robertsirc + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/244963052 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.17.3/helm-v3.17.3-linux-arm64.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2025-04-09T18:00:52Z" + download_count: 0 + id: 244963051 + label: null + name: helm-v3.17.3-linux-arm64.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4Omdbr + size: 228 + state: uploaded + updated_at: "2025-04-09T18:00:52Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/13884882?v=4 + events_url: https://api.github.com/users/robertsirc/events{/privacy} + followers_url: https://api.github.com/users/robertsirc/followers + following_url: https://api.github.com/users/robertsirc/following{/other_user} + gists_url: https://api.github.com/users/robertsirc/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/robertsirc + id: 13884882 + login: robertsirc + node_id: MDQ6VXNlcjEzODg0ODgy + organizations_url: https://api.github.com/users/robertsirc/orgs + received_events_url: https://api.github.com/users/robertsirc/received_events + repos_url: https://api.github.com/users/robertsirc/repos + site_admin: false + starred_url: https://api.github.com/users/robertsirc/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/robertsirc/subscriptions + type: User + url: https://api.github.com/users/robertsirc + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/244963051 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.17.3/helm-v3.17.3-linux-ppc64le.tar.gz.asc + content_type: application/octet-stream + created_at: "2025-04-09T18:00:52Z" + download_count: 0 + id: 244963049 + label: null + name: helm-v3.17.3-linux-ppc64le.tar.gz.asc + node_id: RA_kwDOApspmc4Omdbp + size: 228 + state: uploaded + updated_at: "2025-04-09T18:00:52Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/13884882?v=4 + events_url: https://api.github.com/users/robertsirc/events{/privacy} + followers_url: https://api.github.com/users/robertsirc/followers + following_url: https://api.github.com/users/robertsirc/following{/other_user} + gists_url: https://api.github.com/users/robertsirc/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/robertsirc + id: 13884882 + login: robertsirc + node_id: MDQ6VXNlcjEzODg0ODgy + organizations_url: https://api.github.com/users/robertsirc/orgs + received_events_url: https://api.github.com/users/robertsirc/received_events + repos_url: https://api.github.com/users/robertsirc/repos + site_admin: false + starred_url: https://api.github.com/users/robertsirc/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/robertsirc/subscriptions + type: User + url: https://api.github.com/users/robertsirc + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/244963049 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.17.3/helm-v3.17.3-linux-ppc64le.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2025-04-09T18:00:52Z" + download_count: 0 + id: 244963046 + label: null + name: helm-v3.17.3-linux-ppc64le.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4Omdbm + size: 228 + state: uploaded + updated_at: "2025-04-09T18:00:52Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/13884882?v=4 + events_url: https://api.github.com/users/robertsirc/events{/privacy} + followers_url: https://api.github.com/users/robertsirc/followers + following_url: https://api.github.com/users/robertsirc/following{/other_user} + gists_url: https://api.github.com/users/robertsirc/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/robertsirc + id: 13884882 + login: robertsirc + node_id: MDQ6VXNlcjEzODg0ODgy + organizations_url: https://api.github.com/users/robertsirc/orgs + received_events_url: https://api.github.com/users/robertsirc/received_events + repos_url: https://api.github.com/users/robertsirc/repos + site_admin: false + starred_url: https://api.github.com/users/robertsirc/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/robertsirc/subscriptions + type: User + url: https://api.github.com/users/robertsirc + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/244963046 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.17.3/helm-v3.17.3-linux-ppc64le.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2025-04-09T18:00:52Z" + download_count: 0 + id: 244963045 + label: null + name: helm-v3.17.3-linux-ppc64le.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4Omdbl + size: 228 + state: uploaded + updated_at: "2025-04-09T18:00:52Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/13884882?v=4 + events_url: https://api.github.com/users/robertsirc/events{/privacy} + followers_url: https://api.github.com/users/robertsirc/followers + following_url: https://api.github.com/users/robertsirc/following{/other_user} + gists_url: https://api.github.com/users/robertsirc/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/robertsirc + id: 13884882 + login: robertsirc + node_id: MDQ6VXNlcjEzODg0ODgy + organizations_url: https://api.github.com/users/robertsirc/orgs + received_events_url: https://api.github.com/users/robertsirc/received_events + repos_url: https://api.github.com/users/robertsirc/repos + site_admin: false + starred_url: https://api.github.com/users/robertsirc/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/robertsirc/subscriptions + type: User + url: https://api.github.com/users/robertsirc + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/244963045 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.17.3/helm-v3.17.3-linux-riscv64.tar.gz.asc + content_type: application/octet-stream + created_at: "2025-04-09T18:00:51Z" + download_count: 0 + id: 244963042 + label: null + name: helm-v3.17.3-linux-riscv64.tar.gz.asc + node_id: RA_kwDOApspmc4Omdbi + size: 228 + state: uploaded + updated_at: "2025-04-09T18:00:51Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/13884882?v=4 + events_url: https://api.github.com/users/robertsirc/events{/privacy} + followers_url: https://api.github.com/users/robertsirc/followers + following_url: https://api.github.com/users/robertsirc/following{/other_user} + gists_url: https://api.github.com/users/robertsirc/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/robertsirc + id: 13884882 + login: robertsirc + node_id: MDQ6VXNlcjEzODg0ODgy + organizations_url: https://api.github.com/users/robertsirc/orgs + received_events_url: https://api.github.com/users/robertsirc/received_events + repos_url: https://api.github.com/users/robertsirc/repos + site_admin: false + starred_url: https://api.github.com/users/robertsirc/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/robertsirc/subscriptions + type: User + url: https://api.github.com/users/robertsirc + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/244963042 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.17.3/helm-v3.17.3-linux-riscv64.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2025-04-09T18:00:51Z" + download_count: 0 + id: 244963041 + label: null + name: helm-v3.17.3-linux-riscv64.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4Omdbh + size: 228 + state: uploaded + updated_at: "2025-04-09T18:00:51Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/13884882?v=4 + events_url: https://api.github.com/users/robertsirc/events{/privacy} + followers_url: https://api.github.com/users/robertsirc/followers + following_url: https://api.github.com/users/robertsirc/following{/other_user} + gists_url: https://api.github.com/users/robertsirc/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/robertsirc + id: 13884882 + login: robertsirc + node_id: MDQ6VXNlcjEzODg0ODgy + organizations_url: https://api.github.com/users/robertsirc/orgs + received_events_url: https://api.github.com/users/robertsirc/received_events + repos_url: https://api.github.com/users/robertsirc/repos + site_admin: false + starred_url: https://api.github.com/users/robertsirc/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/robertsirc/subscriptions + type: User + url: https://api.github.com/users/robertsirc + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/244963041 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.17.3/helm-v3.17.3-linux-riscv64.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2025-04-09T18:00:51Z" + download_count: 0 + id: 244963040 + label: null + name: helm-v3.17.3-linux-riscv64.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4Omdbg + size: 228 + state: uploaded + updated_at: "2025-04-09T18:00:51Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/13884882?v=4 + events_url: https://api.github.com/users/robertsirc/events{/privacy} + followers_url: https://api.github.com/users/robertsirc/followers + following_url: https://api.github.com/users/robertsirc/following{/other_user} + gists_url: https://api.github.com/users/robertsirc/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/robertsirc + id: 13884882 + login: robertsirc + node_id: MDQ6VXNlcjEzODg0ODgy + organizations_url: https://api.github.com/users/robertsirc/orgs + received_events_url: https://api.github.com/users/robertsirc/received_events + repos_url: https://api.github.com/users/robertsirc/repos + site_admin: false + starred_url: https://api.github.com/users/robertsirc/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/robertsirc/subscriptions + type: User + url: https://api.github.com/users/robertsirc + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/244963040 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.17.3/helm-v3.17.3-linux-s390x.tar.gz.asc + content_type: application/octet-stream + created_at: "2025-04-09T18:00:51Z" + download_count: 0 + id: 244963039 + label: null + name: helm-v3.17.3-linux-s390x.tar.gz.asc + node_id: RA_kwDOApspmc4Omdbf + size: 228 + state: uploaded + updated_at: "2025-04-09T18:00:51Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/13884882?v=4 + events_url: https://api.github.com/users/robertsirc/events{/privacy} + followers_url: https://api.github.com/users/robertsirc/followers + following_url: https://api.github.com/users/robertsirc/following{/other_user} + gists_url: https://api.github.com/users/robertsirc/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/robertsirc + id: 13884882 + login: robertsirc + node_id: MDQ6VXNlcjEzODg0ODgy + organizations_url: https://api.github.com/users/robertsirc/orgs + received_events_url: https://api.github.com/users/robertsirc/received_events + repos_url: https://api.github.com/users/robertsirc/repos + site_admin: false + starred_url: https://api.github.com/users/robertsirc/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/robertsirc/subscriptions + type: User + url: https://api.github.com/users/robertsirc + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/244963039 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.17.3/helm-v3.17.3-linux-s390x.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2025-04-09T18:00:51Z" + download_count: 0 + id: 244963037 + label: null + name: helm-v3.17.3-linux-s390x.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4Omdbd + size: 228 + state: uploaded + updated_at: "2025-04-09T18:00:51Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/13884882?v=4 + events_url: https://api.github.com/users/robertsirc/events{/privacy} + followers_url: https://api.github.com/users/robertsirc/followers + following_url: https://api.github.com/users/robertsirc/following{/other_user} + gists_url: https://api.github.com/users/robertsirc/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/robertsirc + id: 13884882 + login: robertsirc + node_id: MDQ6VXNlcjEzODg0ODgy + organizations_url: https://api.github.com/users/robertsirc/orgs + received_events_url: https://api.github.com/users/robertsirc/received_events + repos_url: https://api.github.com/users/robertsirc/repos + site_admin: false + starred_url: https://api.github.com/users/robertsirc/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/robertsirc/subscriptions + type: User + url: https://api.github.com/users/robertsirc + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/244963037 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.17.3/helm-v3.17.3-linux-s390x.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2025-04-09T18:00:50Z" + download_count: 0 + id: 244963035 + label: null + name: helm-v3.17.3-linux-s390x.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4Omdbb + size: 228 + state: uploaded + updated_at: "2025-04-09T18:00:50Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/13884882?v=4 + events_url: https://api.github.com/users/robertsirc/events{/privacy} + followers_url: https://api.github.com/users/robertsirc/followers + following_url: https://api.github.com/users/robertsirc/following{/other_user} + gists_url: https://api.github.com/users/robertsirc/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/robertsirc + id: 13884882 + login: robertsirc + node_id: MDQ6VXNlcjEzODg0ODgy + organizations_url: https://api.github.com/users/robertsirc/orgs + received_events_url: https://api.github.com/users/robertsirc/received_events + repos_url: https://api.github.com/users/robertsirc/repos + site_admin: false + starred_url: https://api.github.com/users/robertsirc/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/robertsirc/subscriptions + type: User + url: https://api.github.com/users/robertsirc + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/244963035 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.17.3/helm-v3.17.3-windows-amd64.zip.asc + content_type: application/octet-stream + created_at: "2025-04-09T18:00:50Z" + download_count: 0 + id: 244963034 + label: null + name: helm-v3.17.3-windows-amd64.zip.asc + node_id: RA_kwDOApspmc4Omdba + size: 228 + state: uploaded + updated_at: "2025-04-09T18:00:50Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/13884882?v=4 + events_url: https://api.github.com/users/robertsirc/events{/privacy} + followers_url: https://api.github.com/users/robertsirc/followers + following_url: https://api.github.com/users/robertsirc/following{/other_user} + gists_url: https://api.github.com/users/robertsirc/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/robertsirc + id: 13884882 + login: robertsirc + node_id: MDQ6VXNlcjEzODg0ODgy + organizations_url: https://api.github.com/users/robertsirc/orgs + received_events_url: https://api.github.com/users/robertsirc/received_events + repos_url: https://api.github.com/users/robertsirc/repos + site_admin: false + starred_url: https://api.github.com/users/robertsirc/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/robertsirc/subscriptions + type: User + url: https://api.github.com/users/robertsirc + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/244963034 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.17.3/helm-v3.17.3-windows-amd64.zip.sha256.asc + content_type: application/octet-stream + created_at: "2025-04-09T18:00:50Z" + download_count: 0 + id: 244963032 + label: null + name: helm-v3.17.3-windows-amd64.zip.sha256.asc + node_id: RA_kwDOApspmc4OmdbY + size: 228 + state: uploaded + updated_at: "2025-04-09T18:00:50Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/13884882?v=4 + events_url: https://api.github.com/users/robertsirc/events{/privacy} + followers_url: https://api.github.com/users/robertsirc/followers + following_url: https://api.github.com/users/robertsirc/following{/other_user} + gists_url: https://api.github.com/users/robertsirc/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/robertsirc + id: 13884882 + login: robertsirc + node_id: MDQ6VXNlcjEzODg0ODgy + organizations_url: https://api.github.com/users/robertsirc/orgs + received_events_url: https://api.github.com/users/robertsirc/received_events + repos_url: https://api.github.com/users/robertsirc/repos + site_admin: false + starred_url: https://api.github.com/users/robertsirc/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/robertsirc/subscriptions + type: User + url: https://api.github.com/users/robertsirc + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/244963032 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.17.3/helm-v3.17.3-windows-amd64.zip.sha256sum.asc + content_type: application/octet-stream + created_at: "2025-04-09T18:00:50Z" + download_count: 0 + id: 244963030 + label: null + name: helm-v3.17.3-windows-amd64.zip.sha256sum.asc + node_id: RA_kwDOApspmc4OmdbW + size: 228 + state: uploaded + updated_at: "2025-04-09T18:00:50Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/13884882?v=4 + events_url: https://api.github.com/users/robertsirc/events{/privacy} + followers_url: https://api.github.com/users/robertsirc/followers + following_url: https://api.github.com/users/robertsirc/following{/other_user} + gists_url: https://api.github.com/users/robertsirc/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/robertsirc + id: 13884882 + login: robertsirc + node_id: MDQ6VXNlcjEzODg0ODgy + organizations_url: https://api.github.com/users/robertsirc/orgs + received_events_url: https://api.github.com/users/robertsirc/received_events + repos_url: https://api.github.com/users/robertsirc/repos + site_admin: false + starred_url: https://api.github.com/users/robertsirc/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/robertsirc/subscriptions + type: User + url: https://api.github.com/users/robertsirc + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/244963030 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.17.3/helm-v3.17.3-windows-arm64.zip.asc + content_type: application/octet-stream + created_at: "2025-04-09T18:00:50Z" + download_count: 0 + id: 244963025 + label: null + name: helm-v3.17.3-windows-arm64.zip.asc + node_id: RA_kwDOApspmc4OmdbR + size: 228 + state: uploaded + updated_at: "2025-04-09T18:00:50Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/13884882?v=4 + events_url: https://api.github.com/users/robertsirc/events{/privacy} + followers_url: https://api.github.com/users/robertsirc/followers + following_url: https://api.github.com/users/robertsirc/following{/other_user} + gists_url: https://api.github.com/users/robertsirc/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/robertsirc + id: 13884882 + login: robertsirc + node_id: MDQ6VXNlcjEzODg0ODgy + organizations_url: https://api.github.com/users/robertsirc/orgs + received_events_url: https://api.github.com/users/robertsirc/received_events + repos_url: https://api.github.com/users/robertsirc/repos + site_admin: false + starred_url: https://api.github.com/users/robertsirc/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/robertsirc/subscriptions + type: User + url: https://api.github.com/users/robertsirc + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/244963025 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.17.3/helm-v3.17.3-windows-arm64.zip.sha256.asc + content_type: application/octet-stream + created_at: "2025-04-09T18:00:49Z" + download_count: 0 + id: 244963024 + label: null + name: helm-v3.17.3-windows-arm64.zip.sha256.asc + node_id: RA_kwDOApspmc4OmdbQ + size: 228 + state: uploaded + updated_at: "2025-04-09T18:00:50Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/13884882?v=4 + events_url: https://api.github.com/users/robertsirc/events{/privacy} + followers_url: https://api.github.com/users/robertsirc/followers + following_url: https://api.github.com/users/robertsirc/following{/other_user} + gists_url: https://api.github.com/users/robertsirc/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/robertsirc + id: 13884882 + login: robertsirc + node_id: MDQ6VXNlcjEzODg0ODgy + organizations_url: https://api.github.com/users/robertsirc/orgs + received_events_url: https://api.github.com/users/robertsirc/received_events + repos_url: https://api.github.com/users/robertsirc/repos + site_admin: false + starred_url: https://api.github.com/users/robertsirc/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/robertsirc/subscriptions + type: User + url: https://api.github.com/users/robertsirc + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/244963024 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.17.3/helm-v3.17.3-windows-arm64.zip.sha256sum.asc + content_type: application/octet-stream + created_at: "2025-04-09T18:00:49Z" + download_count: 0 + id: 244963022 + label: null + name: helm-v3.17.3-windows-arm64.zip.sha256sum.asc + node_id: RA_kwDOApspmc4OmdbO + size: 228 + state: uploaded + updated_at: "2025-04-09T18:00:49Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/13884882?v=4 + events_url: https://api.github.com/users/robertsirc/events{/privacy} + followers_url: https://api.github.com/users/robertsirc/followers + following_url: https://api.github.com/users/robertsirc/following{/other_user} + gists_url: https://api.github.com/users/robertsirc/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/robertsirc + id: 13884882 + login: robertsirc + node_id: MDQ6VXNlcjEzODg0ODgy + organizations_url: https://api.github.com/users/robertsirc/orgs + received_events_url: https://api.github.com/users/robertsirc/received_events + repos_url: https://api.github.com/users/robertsirc/repos + site_admin: false + starred_url: https://api.github.com/users/robertsirc/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/robertsirc/subscriptions + type: User + url: https://api.github.com/users/robertsirc + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/244963022 + assets_url: https://api.github.com/repos/helm/helm/releases/211354230/assets + author: + avatar_url: https://avatars.githubusercontent.com/u/13884882?v=4 + events_url: https://api.github.com/users/robertsirc/events{/privacy} + followers_url: https://api.github.com/users/robertsirc/followers + following_url: https://api.github.com/users/robertsirc/following{/other_user} + gists_url: https://api.github.com/users/robertsirc/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/robertsirc + id: 13884882 + login: robertsirc + node_id: MDQ6VXNlcjEzODg0ODgy + organizations_url: https://api.github.com/users/robertsirc/orgs + received_events_url: https://api.github.com/users/robertsirc/received_events + repos_url: https://api.github.com/users/robertsirc/repos + site_admin: false + starred_url: https://api.github.com/users/robertsirc/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/robertsirc/subscriptions + type: User + url: https://api.github.com/users/robertsirc + user_view_type: public + body: "Helm v3.17.3 is a security (patch) release. Users are strongly recommended + to update to this release.\r\n\r\nThe community keeps growing, and we'd + love to see you there!\r\n\r\n- Join the discussion in [Kubernetes Slack](https://kubernetes.slack.com):\r\n + \ - for questions and just to hang out\r\n - for discussing PRs, code, + and bugs\r\n- Hang out at the Public Developer Call: Thursday, 9:30 Pacific + via [Zoom](https://zoom.us/j/696660622)\r\n- Test, debug, and contribute + charts: [ArtifactHub/packages](https://artifacthub.io/packages/search?kind=0)\r\n\r\n## + Installation and Upgrading\r\n\r\nDownload Helm v3.17.3. The common platform + binaries are here:\r\n\r\n- [MacOS amd64](https://get.helm.sh/helm-v3.17.3-darwin-amd64.tar.gz) + ([checksum](https://get.helm.sh/helm-v3.17.3-darwin-amd64.tar.gz.sha256sum) + / 20ef8df4671349a6fc556a621be1170dd709c6c0cf5f7e83a2d9fb0515fd97fc)\r\n- + [MacOS arm64](https://get.helm.sh/helm-v3.17.3-darwin-arm64.tar.gz) ([checksum](https://get.helm.sh/helm-v3.17.3-darwin-arm64.tar.gz.sha256sum) + / 89aec43ce07b06239f1bba4a6507236bb48ae487bc5065a8e254d3ce58a16997)\r\n- + [Linux amd64](https://get.helm.sh/helm-v3.17.3-linux-amd64.tar.gz) ([checksum](https://get.helm.sh/helm-v3.17.3-linux-amd64.tar.gz.sha256sum) + / ee88b3c851ae6466a3de507f7be73fe94d54cbf2987cbaa3d1a3832ea331f2cd)\r\n- + [Linux arm](https://get.helm.sh/helm-v3.17.3-linux-arm.tar.gz) ([checksum](https://get.helm.sh/helm-v3.17.3-linux-arm.tar.gz.sha256sum) + / 60d76d1e12d3e058a9e9a8209eff748a6fab5948028a1f0860f48e141243d33d)\r\n- + [Linux arm64](https://get.helm.sh/helm-v3.17.3-linux-arm64.tar.gz) ([checksum](https://get.helm.sh/helm-v3.17.3-linux-arm64.tar.gz.sha256sum) + / 7944e3defd386c76fd92d9e6fec5c2d65a323f6fadc19bfb5e704e3eee10348e)\r\n- + [Linux i386](https://get.helm.sh/helm-v3.17.3-linux-386.tar.gz) ([checksum](https://get.helm.sh/helm-v3.17.3-linux-386.tar.gz.sha256sum) + / 51742d78c066437e23b3ca98370df341f9136b408381fe5a150d70b9d9bf24d7)\r\n- + [Linux ppc64le](https://get.helm.sh/helm-v3.17.3-linux-ppc64le.tar.gz) + ([checksum](https://get.helm.sh/helm-v3.17.3-linux-ppc64le.tar.gz.sha256sum) + / b821885a502b2fa159e3ef3afe9cde6e6c9876d4a623f18868829c3ee4a3c64c)\r\n- + [Linux s390x](https://get.helm.sh/helm-v3.17.3-linux-s390x.tar.gz) ([checksum](https://get.helm.sh/helm-v3.17.3-linux-s390x.tar.gz.sha256sum) + / 71a9c6058e29a7eef0bc72a61843ccbade11997e383dd3e13e1a591ddffd8598)\r\n- + [Linux riscv64](https://get.helm.sh/helm-v3.17.3-linux-riscv64.tar.gz) + ([checksum](https://get.helm.sh/helm-v3.17.3-linux-riscv64.tar.gz.sha256sum) + / 4e4563d43a593e11533024c7a0ddb79fb7d1dec85f9a9f8417ed1bacda0d7d0e)\r\n- + [Windows amd64](https://get.helm.sh/helm-v3.17.3-windows-amd64.zip) ([checksum](https://get.helm.sh/helm-v3.17.3-windows-amd64.zip.sha256sum) + / 8ea93e2f6285e649dede583ac90ff8cdb938ca53ec6cf5fe909f2303fbc22d96)\r\n- + [Windows arm64](https://get.helm.sh/helm-v3.17.3-windows-arm64.zip) ([checksum](https://get.helm.sh/helm-v3.17.3-windows-arm64.zip.sha256sum) + / 70ce9dfdbc1ce6142626a829dbdc5920405146f3ce4dc6f6e6739dd308cc7baf)\r\n\r\nThe + [Quickstart Guide](https://helm.sh/docs/intro/quickstart/) will get you + going from there. For **upgrade instructions** or detailed installation + notes, check the [install guide](https://helm.sh/docs/intro/install/). + You can also use a [script to install](https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3) + on any system with `bash`.\r\n\r\n## What's Next\r\n\r\n- 3.18.0 is the + next minor release and will be on May 14, 2025\r\n\r\n## Changelog\r\n\r\n- + Unarchiving fix e4da49785aa6e6ee2b86efd5dd9e43400318262b (Matt Farina)\r\n" + created_at: "2025-04-09T17:44:16Z" + draft: false + html_url: https://github.com/helm/helm/releases/tag/v3.17.3 + id: 211354230 + name: 'Helm v3.17.3 ' + node_id: RE_kwDOApspmc4MmQJ2 + prerelease: false + published_at: "2025-04-09T18:01:56Z" + tag_name: v3.17.3 + tarball_url: https://api.github.com/repos/helm/helm/tarball/v3.17.3 + target_commitish: main + upload_url: https://uploads.github.com/repos/helm/helm/releases/211354230/assets{?name,label} + url: https://api.github.com/repos/helm/helm/releases/211354230 + zipball_url: https://api.github.com/repos/helm/helm/zipball/v3.17.3 + 3.18.0: + githubRelease: + assets: + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.0/helm-v3.18.0-darwin-amd64.tar.gz.asc + content_type: application/octet-stream + created_at: "2025-05-19T17:54:43Z" + digest: null + download_count: 69 + id: 256089665 + label: null + name: helm-v3.18.0-darwin-amd64.tar.gz.asc + node_id: RA_kwDOApspmc4PQ55B + size: 228 + state: uploaded + updated_at: "2025-05-19T17:54:43Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/13884882?v=4 + events_url: https://api.github.com/users/robertsirc/events{/privacy} + followers_url: https://api.github.com/users/robertsirc/followers + following_url: https://api.github.com/users/robertsirc/following{/other_user} + gists_url: https://api.github.com/users/robertsirc/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/robertsirc + id: 13884882 + login: robertsirc + node_id: MDQ6VXNlcjEzODg0ODgy + organizations_url: https://api.github.com/users/robertsirc/orgs + received_events_url: https://api.github.com/users/robertsirc/received_events + repos_url: https://api.github.com/users/robertsirc/repos + site_admin: false + starred_url: https://api.github.com/users/robertsirc/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/robertsirc/subscriptions + type: User + url: https://api.github.com/users/robertsirc + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/256089665 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.0/helm-v3.18.0-darwin-amd64.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2025-05-19T17:54:43Z" + digest: null + download_count: 41 + id: 256089664 + label: null + name: helm-v3.18.0-darwin-amd64.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4PQ55A + size: 228 + state: uploaded + updated_at: "2025-05-19T17:54:43Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/13884882?v=4 + events_url: https://api.github.com/users/robertsirc/events{/privacy} + followers_url: https://api.github.com/users/robertsirc/followers + following_url: https://api.github.com/users/robertsirc/following{/other_user} + gists_url: https://api.github.com/users/robertsirc/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/robertsirc + id: 13884882 + login: robertsirc + node_id: MDQ6VXNlcjEzODg0ODgy + organizations_url: https://api.github.com/users/robertsirc/orgs + received_events_url: https://api.github.com/users/robertsirc/received_events + repos_url: https://api.github.com/users/robertsirc/repos + site_admin: false + starred_url: https://api.github.com/users/robertsirc/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/robertsirc/subscriptions + type: User + url: https://api.github.com/users/robertsirc + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/256089664 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.0/helm-v3.18.0-darwin-amd64.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2025-05-19T17:54:43Z" + digest: null + download_count: 33 + id: 256089663 + label: null + name: helm-v3.18.0-darwin-amd64.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4PQ54_ + size: 228 + state: uploaded + updated_at: "2025-05-19T17:54:43Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/13884882?v=4 + events_url: https://api.github.com/users/robertsirc/events{/privacy} + followers_url: https://api.github.com/users/robertsirc/followers + following_url: https://api.github.com/users/robertsirc/following{/other_user} + gists_url: https://api.github.com/users/robertsirc/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/robertsirc + id: 13884882 + login: robertsirc + node_id: MDQ6VXNlcjEzODg0ODgy + organizations_url: https://api.github.com/users/robertsirc/orgs + received_events_url: https://api.github.com/users/robertsirc/received_events + repos_url: https://api.github.com/users/robertsirc/repos + site_admin: false + starred_url: https://api.github.com/users/robertsirc/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/robertsirc/subscriptions + type: User + url: https://api.github.com/users/robertsirc + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/256089663 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.0/helm-v3.18.0-darwin-arm64.tar.gz.asc + content_type: application/octet-stream + created_at: "2025-05-19T17:54:43Z" + digest: null + download_count: 28 + id: 256089662 + label: null + name: helm-v3.18.0-darwin-arm64.tar.gz.asc + node_id: RA_kwDOApspmc4PQ54- + size: 228 + state: uploaded + updated_at: "2025-05-19T17:54:43Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/13884882?v=4 + events_url: https://api.github.com/users/robertsirc/events{/privacy} + followers_url: https://api.github.com/users/robertsirc/followers + following_url: https://api.github.com/users/robertsirc/following{/other_user} + gists_url: https://api.github.com/users/robertsirc/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/robertsirc + id: 13884882 + login: robertsirc + node_id: MDQ6VXNlcjEzODg0ODgy + organizations_url: https://api.github.com/users/robertsirc/orgs + received_events_url: https://api.github.com/users/robertsirc/received_events + repos_url: https://api.github.com/users/robertsirc/repos + site_admin: false + starred_url: https://api.github.com/users/robertsirc/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/robertsirc/subscriptions + type: User + url: https://api.github.com/users/robertsirc + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/256089662 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.0/helm-v3.18.0-darwin-arm64.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2025-05-19T17:54:42Z" + digest: null + download_count: 22 + id: 256089660 + label: null + name: helm-v3.18.0-darwin-arm64.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4PQ548 + size: 228 + state: uploaded + updated_at: "2025-05-19T17:54:43Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/13884882?v=4 + events_url: https://api.github.com/users/robertsirc/events{/privacy} + followers_url: https://api.github.com/users/robertsirc/followers + following_url: https://api.github.com/users/robertsirc/following{/other_user} + gists_url: https://api.github.com/users/robertsirc/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/robertsirc + id: 13884882 + login: robertsirc + node_id: MDQ6VXNlcjEzODg0ODgy + organizations_url: https://api.github.com/users/robertsirc/orgs + received_events_url: https://api.github.com/users/robertsirc/received_events + repos_url: https://api.github.com/users/robertsirc/repos + site_admin: false + starred_url: https://api.github.com/users/robertsirc/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/robertsirc/subscriptions + type: User + url: https://api.github.com/users/robertsirc + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/256089660 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.0/helm-v3.18.0-darwin-arm64.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2025-05-19T17:54:42Z" + digest: null + download_count: 22 + id: 256089659 + label: null + name: helm-v3.18.0-darwin-arm64.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4PQ547 + size: 228 + state: uploaded + updated_at: "2025-05-19T17:54:42Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/13884882?v=4 + events_url: https://api.github.com/users/robertsirc/events{/privacy} + followers_url: https://api.github.com/users/robertsirc/followers + following_url: https://api.github.com/users/robertsirc/following{/other_user} + gists_url: https://api.github.com/users/robertsirc/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/robertsirc + id: 13884882 + login: robertsirc + node_id: MDQ6VXNlcjEzODg0ODgy + organizations_url: https://api.github.com/users/robertsirc/orgs + received_events_url: https://api.github.com/users/robertsirc/received_events + repos_url: https://api.github.com/users/robertsirc/repos + site_admin: false + starred_url: https://api.github.com/users/robertsirc/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/robertsirc/subscriptions + type: User + url: https://api.github.com/users/robertsirc + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/256089659 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.0/helm-v3.18.0-linux-386.tar.gz.asc + content_type: application/octet-stream + created_at: "2025-05-19T17:54:42Z" + digest: null + download_count: 50 + id: 256089656 + label: null + name: helm-v3.18.0-linux-386.tar.gz.asc + node_id: RA_kwDOApspmc4PQ544 + size: 228 + state: uploaded + updated_at: "2025-05-19T17:54:42Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/13884882?v=4 + events_url: https://api.github.com/users/robertsirc/events{/privacy} + followers_url: https://api.github.com/users/robertsirc/followers + following_url: https://api.github.com/users/robertsirc/following{/other_user} + gists_url: https://api.github.com/users/robertsirc/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/robertsirc + id: 13884882 + login: robertsirc + node_id: MDQ6VXNlcjEzODg0ODgy + organizations_url: https://api.github.com/users/robertsirc/orgs + received_events_url: https://api.github.com/users/robertsirc/received_events + repos_url: https://api.github.com/users/robertsirc/repos + site_admin: false + starred_url: https://api.github.com/users/robertsirc/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/robertsirc/subscriptions + type: User + url: https://api.github.com/users/robertsirc + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/256089656 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.0/helm-v3.18.0-linux-386.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2025-05-19T17:54:42Z" + digest: null + download_count: 43 + id: 256089655 + label: null + name: helm-v3.18.0-linux-386.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4PQ543 + size: 228 + state: uploaded + updated_at: "2025-05-19T17:54:42Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/13884882?v=4 + events_url: https://api.github.com/users/robertsirc/events{/privacy} + followers_url: https://api.github.com/users/robertsirc/followers + following_url: https://api.github.com/users/robertsirc/following{/other_user} + gists_url: https://api.github.com/users/robertsirc/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/robertsirc + id: 13884882 + login: robertsirc + node_id: MDQ6VXNlcjEzODg0ODgy + organizations_url: https://api.github.com/users/robertsirc/orgs + received_events_url: https://api.github.com/users/robertsirc/received_events + repos_url: https://api.github.com/users/robertsirc/repos + site_admin: false + starred_url: https://api.github.com/users/robertsirc/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/robertsirc/subscriptions + type: User + url: https://api.github.com/users/robertsirc + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/256089655 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.0/helm-v3.18.0-linux-386.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2025-05-19T17:54:42Z" + digest: null + download_count: 33 + id: 256089654 + label: null + name: helm-v3.18.0-linux-386.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4PQ542 + size: 228 + state: uploaded + updated_at: "2025-05-19T17:54:42Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/13884882?v=4 + events_url: https://api.github.com/users/robertsirc/events{/privacy} + followers_url: https://api.github.com/users/robertsirc/followers + following_url: https://api.github.com/users/robertsirc/following{/other_user} + gists_url: https://api.github.com/users/robertsirc/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/robertsirc + id: 13884882 + login: robertsirc + node_id: MDQ6VXNlcjEzODg0ODgy + organizations_url: https://api.github.com/users/robertsirc/orgs + received_events_url: https://api.github.com/users/robertsirc/received_events + repos_url: https://api.github.com/users/robertsirc/repos + site_admin: false + starred_url: https://api.github.com/users/robertsirc/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/robertsirc/subscriptions + type: User + url: https://api.github.com/users/robertsirc + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/256089654 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.0/helm-v3.18.0-linux-amd64.tar.gz.asc + content_type: application/octet-stream + created_at: "2025-05-19T17:54:42Z" + digest: null + download_count: 2754 + id: 256089652 + label: null + name: helm-v3.18.0-linux-amd64.tar.gz.asc + node_id: RA_kwDOApspmc4PQ540 + size: 228 + state: uploaded + updated_at: "2025-05-19T17:54:42Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/13884882?v=4 + events_url: https://api.github.com/users/robertsirc/events{/privacy} + followers_url: https://api.github.com/users/robertsirc/followers + following_url: https://api.github.com/users/robertsirc/following{/other_user} + gists_url: https://api.github.com/users/robertsirc/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/robertsirc + id: 13884882 + login: robertsirc + node_id: MDQ6VXNlcjEzODg0ODgy + organizations_url: https://api.github.com/users/robertsirc/orgs + received_events_url: https://api.github.com/users/robertsirc/received_events + repos_url: https://api.github.com/users/robertsirc/repos + site_admin: false + starred_url: https://api.github.com/users/robertsirc/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/robertsirc/subscriptions + type: User + url: https://api.github.com/users/robertsirc + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/256089652 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.0/helm-v3.18.0-linux-amd64.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2025-05-19T17:54:41Z" + digest: null + download_count: 2455 + id: 256089651 + label: null + name: helm-v3.18.0-linux-amd64.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4PQ54z + size: 228 + state: uploaded + updated_at: "2025-05-19T17:54:42Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/13884882?v=4 + events_url: https://api.github.com/users/robertsirc/events{/privacy} + followers_url: https://api.github.com/users/robertsirc/followers + following_url: https://api.github.com/users/robertsirc/following{/other_user} + gists_url: https://api.github.com/users/robertsirc/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/robertsirc + id: 13884882 + login: robertsirc + node_id: MDQ6VXNlcjEzODg0ODgy + organizations_url: https://api.github.com/users/robertsirc/orgs + received_events_url: https://api.github.com/users/robertsirc/received_events + repos_url: https://api.github.com/users/robertsirc/repos + site_admin: false + starred_url: https://api.github.com/users/robertsirc/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/robertsirc/subscriptions + type: User + url: https://api.github.com/users/robertsirc + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/256089651 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.0/helm-v3.18.0-linux-amd64.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2025-05-19T17:54:41Z" + digest: null + download_count: 170 + id: 256089650 + label: null + name: helm-v3.18.0-linux-amd64.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4PQ54y + size: 228 + state: uploaded + updated_at: "2025-05-19T17:54:41Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/13884882?v=4 + events_url: https://api.github.com/users/robertsirc/events{/privacy} + followers_url: https://api.github.com/users/robertsirc/followers + following_url: https://api.github.com/users/robertsirc/following{/other_user} + gists_url: https://api.github.com/users/robertsirc/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/robertsirc + id: 13884882 + login: robertsirc + node_id: MDQ6VXNlcjEzODg0ODgy + organizations_url: https://api.github.com/users/robertsirc/orgs + received_events_url: https://api.github.com/users/robertsirc/received_events + repos_url: https://api.github.com/users/robertsirc/repos + site_admin: false + starred_url: https://api.github.com/users/robertsirc/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/robertsirc/subscriptions + type: User + url: https://api.github.com/users/robertsirc + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/256089650 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.0/helm-v3.18.0-linux-arm.tar.gz.asc + content_type: application/octet-stream + created_at: "2025-05-19T17:54:41Z" + digest: null + download_count: 32 + id: 256089649 + label: null + name: helm-v3.18.0-linux-arm.tar.gz.asc + node_id: RA_kwDOApspmc4PQ54x + size: 228 + state: uploaded + updated_at: "2025-05-19T17:54:41Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/13884882?v=4 + events_url: https://api.github.com/users/robertsirc/events{/privacy} + followers_url: https://api.github.com/users/robertsirc/followers + following_url: https://api.github.com/users/robertsirc/following{/other_user} + gists_url: https://api.github.com/users/robertsirc/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/robertsirc + id: 13884882 + login: robertsirc + node_id: MDQ6VXNlcjEzODg0ODgy + organizations_url: https://api.github.com/users/robertsirc/orgs + received_events_url: https://api.github.com/users/robertsirc/received_events + repos_url: https://api.github.com/users/robertsirc/repos + site_admin: false + starred_url: https://api.github.com/users/robertsirc/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/robertsirc/subscriptions + type: User + url: https://api.github.com/users/robertsirc + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/256089649 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.0/helm-v3.18.0-linux-arm.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2025-05-19T17:54:41Z" + digest: null + download_count: 34 + id: 256089648 + label: null + name: helm-v3.18.0-linux-arm.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4PQ54w + size: 228 + state: uploaded + updated_at: "2025-05-19T17:54:41Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/13884882?v=4 + events_url: https://api.github.com/users/robertsirc/events{/privacy} + followers_url: https://api.github.com/users/robertsirc/followers + following_url: https://api.github.com/users/robertsirc/following{/other_user} + gists_url: https://api.github.com/users/robertsirc/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/robertsirc + id: 13884882 + login: robertsirc + node_id: MDQ6VXNlcjEzODg0ODgy + organizations_url: https://api.github.com/users/robertsirc/orgs + received_events_url: https://api.github.com/users/robertsirc/received_events + repos_url: https://api.github.com/users/robertsirc/repos + site_admin: false + starred_url: https://api.github.com/users/robertsirc/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/robertsirc/subscriptions + type: User + url: https://api.github.com/users/robertsirc + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/256089648 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.0/helm-v3.18.0-linux-arm.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2025-05-19T17:54:41Z" + digest: null + download_count: 26 + id: 256089647 + label: null + name: helm-v3.18.0-linux-arm.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4PQ54v + size: 228 + state: uploaded + updated_at: "2025-05-19T17:54:41Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/13884882?v=4 + events_url: https://api.github.com/users/robertsirc/events{/privacy} + followers_url: https://api.github.com/users/robertsirc/followers + following_url: https://api.github.com/users/robertsirc/following{/other_user} + gists_url: https://api.github.com/users/robertsirc/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/robertsirc + id: 13884882 + login: robertsirc + node_id: MDQ6VXNlcjEzODg0ODgy + organizations_url: https://api.github.com/users/robertsirc/orgs + received_events_url: https://api.github.com/users/robertsirc/received_events + repos_url: https://api.github.com/users/robertsirc/repos + site_admin: false + starred_url: https://api.github.com/users/robertsirc/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/robertsirc/subscriptions + type: User + url: https://api.github.com/users/robertsirc + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/256089647 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.0/helm-v3.18.0-linux-arm64.tar.gz.asc + content_type: application/octet-stream + created_at: "2025-05-19T17:54:40Z" + digest: null + download_count: 562 + id: 256089646 + label: null + name: helm-v3.18.0-linux-arm64.tar.gz.asc + node_id: RA_kwDOApspmc4PQ54u + size: 228 + state: uploaded + updated_at: "2025-05-19T17:54:41Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/13884882?v=4 + events_url: https://api.github.com/users/robertsirc/events{/privacy} + followers_url: https://api.github.com/users/robertsirc/followers + following_url: https://api.github.com/users/robertsirc/following{/other_user} + gists_url: https://api.github.com/users/robertsirc/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/robertsirc + id: 13884882 + login: robertsirc + node_id: MDQ6VXNlcjEzODg0ODgy + organizations_url: https://api.github.com/users/robertsirc/orgs + received_events_url: https://api.github.com/users/robertsirc/received_events + repos_url: https://api.github.com/users/robertsirc/repos + site_admin: false + starred_url: https://api.github.com/users/robertsirc/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/robertsirc/subscriptions + type: User + url: https://api.github.com/users/robertsirc + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/256089646 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.0/helm-v3.18.0-linux-arm64.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2025-05-19T17:54:40Z" + digest: null + download_count: 551 + id: 256089645 + label: null + name: helm-v3.18.0-linux-arm64.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4PQ54t + size: 228 + state: uploaded + updated_at: "2025-05-19T17:54:40Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/13884882?v=4 + events_url: https://api.github.com/users/robertsirc/events{/privacy} + followers_url: https://api.github.com/users/robertsirc/followers + following_url: https://api.github.com/users/robertsirc/following{/other_user} + gists_url: https://api.github.com/users/robertsirc/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/robertsirc + id: 13884882 + login: robertsirc + node_id: MDQ6VXNlcjEzODg0ODgy + organizations_url: https://api.github.com/users/robertsirc/orgs + received_events_url: https://api.github.com/users/robertsirc/received_events + repos_url: https://api.github.com/users/robertsirc/repos + site_admin: false + starred_url: https://api.github.com/users/robertsirc/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/robertsirc/subscriptions + type: User + url: https://api.github.com/users/robertsirc + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/256089645 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.0/helm-v3.18.0-linux-arm64.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2025-05-19T17:54:40Z" + digest: null + download_count: 17 + id: 256089644 + label: null + name: helm-v3.18.0-linux-arm64.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4PQ54s + size: 228 + state: uploaded + updated_at: "2025-05-19T17:54:40Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/13884882?v=4 + events_url: https://api.github.com/users/robertsirc/events{/privacy} + followers_url: https://api.github.com/users/robertsirc/followers + following_url: https://api.github.com/users/robertsirc/following{/other_user} + gists_url: https://api.github.com/users/robertsirc/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/robertsirc + id: 13884882 + login: robertsirc + node_id: MDQ6VXNlcjEzODg0ODgy + organizations_url: https://api.github.com/users/robertsirc/orgs + received_events_url: https://api.github.com/users/robertsirc/received_events + repos_url: https://api.github.com/users/robertsirc/repos + site_admin: false + starred_url: https://api.github.com/users/robertsirc/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/robertsirc/subscriptions + type: User + url: https://api.github.com/users/robertsirc + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/256089644 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.0/helm-v3.18.0-linux-ppc64le.tar.gz.asc + content_type: application/octet-stream + created_at: "2025-05-19T17:54:40Z" + digest: null + download_count: 24 + id: 256089643 + label: null + name: helm-v3.18.0-linux-ppc64le.tar.gz.asc + node_id: RA_kwDOApspmc4PQ54r + size: 228 + state: uploaded + updated_at: "2025-05-19T17:54:40Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/13884882?v=4 + events_url: https://api.github.com/users/robertsirc/events{/privacy} + followers_url: https://api.github.com/users/robertsirc/followers + following_url: https://api.github.com/users/robertsirc/following{/other_user} + gists_url: https://api.github.com/users/robertsirc/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/robertsirc + id: 13884882 + login: robertsirc + node_id: MDQ6VXNlcjEzODg0ODgy + organizations_url: https://api.github.com/users/robertsirc/orgs + received_events_url: https://api.github.com/users/robertsirc/received_events + repos_url: https://api.github.com/users/robertsirc/repos + site_admin: false + starred_url: https://api.github.com/users/robertsirc/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/robertsirc/subscriptions + type: User + url: https://api.github.com/users/robertsirc + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/256089643 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.0/helm-v3.18.0-linux-ppc64le.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2025-05-19T17:54:40Z" + digest: null + download_count: 37 + id: 256089642 + label: null + name: helm-v3.18.0-linux-ppc64le.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4PQ54q + size: 228 + state: uploaded + updated_at: "2025-05-19T17:54:40Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/13884882?v=4 + events_url: https://api.github.com/users/robertsirc/events{/privacy} + followers_url: https://api.github.com/users/robertsirc/followers + following_url: https://api.github.com/users/robertsirc/following{/other_user} + gists_url: https://api.github.com/users/robertsirc/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/robertsirc + id: 13884882 + login: robertsirc + node_id: MDQ6VXNlcjEzODg0ODgy + organizations_url: https://api.github.com/users/robertsirc/orgs + received_events_url: https://api.github.com/users/robertsirc/received_events + repos_url: https://api.github.com/users/robertsirc/repos + site_admin: false + starred_url: https://api.github.com/users/robertsirc/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/robertsirc/subscriptions + type: User + url: https://api.github.com/users/robertsirc + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/256089642 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.0/helm-v3.18.0-linux-ppc64le.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2025-05-19T17:54:40Z" + digest: null + download_count: 27 + id: 256089641 + label: null + name: helm-v3.18.0-linux-ppc64le.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4PQ54p + size: 228 + state: uploaded + updated_at: "2025-05-19T17:54:40Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/13884882?v=4 + events_url: https://api.github.com/users/robertsirc/events{/privacy} + followers_url: https://api.github.com/users/robertsirc/followers + following_url: https://api.github.com/users/robertsirc/following{/other_user} + gists_url: https://api.github.com/users/robertsirc/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/robertsirc + id: 13884882 + login: robertsirc + node_id: MDQ6VXNlcjEzODg0ODgy + organizations_url: https://api.github.com/users/robertsirc/orgs + received_events_url: https://api.github.com/users/robertsirc/received_events + repos_url: https://api.github.com/users/robertsirc/repos + site_admin: false + starred_url: https://api.github.com/users/robertsirc/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/robertsirc/subscriptions + type: User + url: https://api.github.com/users/robertsirc + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/256089641 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.0/helm-v3.18.0-linux-riscv64.tar.gz.asc + content_type: application/octet-stream + created_at: "2025-05-19T17:54:39Z" + digest: null + download_count: 27 + id: 256089640 + label: null + name: helm-v3.18.0-linux-riscv64.tar.gz.asc + node_id: RA_kwDOApspmc4PQ54o + size: 228 + state: uploaded + updated_at: "2025-05-19T17:54:40Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/13884882?v=4 + events_url: https://api.github.com/users/robertsirc/events{/privacy} + followers_url: https://api.github.com/users/robertsirc/followers + following_url: https://api.github.com/users/robertsirc/following{/other_user} + gists_url: https://api.github.com/users/robertsirc/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/robertsirc + id: 13884882 + login: robertsirc + node_id: MDQ6VXNlcjEzODg0ODgy + organizations_url: https://api.github.com/users/robertsirc/orgs + received_events_url: https://api.github.com/users/robertsirc/received_events + repos_url: https://api.github.com/users/robertsirc/repos + site_admin: false + starred_url: https://api.github.com/users/robertsirc/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/robertsirc/subscriptions + type: User + url: https://api.github.com/users/robertsirc + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/256089640 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.0/helm-v3.18.0-linux-riscv64.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2025-05-19T17:54:39Z" + digest: null + download_count: 38 + id: 256089639 + label: null + name: helm-v3.18.0-linux-riscv64.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4PQ54n + size: 228 + state: uploaded + updated_at: "2025-05-19T17:54:39Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/13884882?v=4 + events_url: https://api.github.com/users/robertsirc/events{/privacy} + followers_url: https://api.github.com/users/robertsirc/followers + following_url: https://api.github.com/users/robertsirc/following{/other_user} + gists_url: https://api.github.com/users/robertsirc/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/robertsirc + id: 13884882 + login: robertsirc + node_id: MDQ6VXNlcjEzODg0ODgy + organizations_url: https://api.github.com/users/robertsirc/orgs + received_events_url: https://api.github.com/users/robertsirc/received_events + repos_url: https://api.github.com/users/robertsirc/repos + site_admin: false + starred_url: https://api.github.com/users/robertsirc/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/robertsirc/subscriptions + type: User + url: https://api.github.com/users/robertsirc + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/256089639 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.0/helm-v3.18.0-linux-riscv64.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2025-05-19T17:54:39Z" + digest: null + download_count: 27 + id: 256089638 + label: null + name: helm-v3.18.0-linux-riscv64.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4PQ54m + size: 228 + state: uploaded + updated_at: "2025-05-19T17:54:39Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/13884882?v=4 + events_url: https://api.github.com/users/robertsirc/events{/privacy} + followers_url: https://api.github.com/users/robertsirc/followers + following_url: https://api.github.com/users/robertsirc/following{/other_user} + gists_url: https://api.github.com/users/robertsirc/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/robertsirc + id: 13884882 + login: robertsirc + node_id: MDQ6VXNlcjEzODg0ODgy + organizations_url: https://api.github.com/users/robertsirc/orgs + received_events_url: https://api.github.com/users/robertsirc/received_events + repos_url: https://api.github.com/users/robertsirc/repos + site_admin: false + starred_url: https://api.github.com/users/robertsirc/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/robertsirc/subscriptions + type: User + url: https://api.github.com/users/robertsirc + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/256089638 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.0/helm-v3.18.0-linux-s390x.tar.gz.asc + content_type: application/octet-stream + created_at: "2025-05-19T17:54:39Z" + digest: null + download_count: 26 + id: 256089637 + label: null + name: helm-v3.18.0-linux-s390x.tar.gz.asc + node_id: RA_kwDOApspmc4PQ54l + size: 228 + state: uploaded + updated_at: "2025-05-19T17:54:39Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/13884882?v=4 + events_url: https://api.github.com/users/robertsirc/events{/privacy} + followers_url: https://api.github.com/users/robertsirc/followers + following_url: https://api.github.com/users/robertsirc/following{/other_user} + gists_url: https://api.github.com/users/robertsirc/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/robertsirc + id: 13884882 + login: robertsirc + node_id: MDQ6VXNlcjEzODg0ODgy + organizations_url: https://api.github.com/users/robertsirc/orgs + received_events_url: https://api.github.com/users/robertsirc/received_events + repos_url: https://api.github.com/users/robertsirc/repos + site_admin: false + starred_url: https://api.github.com/users/robertsirc/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/robertsirc/subscriptions + type: User + url: https://api.github.com/users/robertsirc + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/256089637 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.0/helm-v3.18.0-linux-s390x.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2025-05-19T17:54:39Z" + digest: null + download_count: 34 + id: 256089635 + label: null + name: helm-v3.18.0-linux-s390x.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4PQ54j + size: 228 + state: uploaded + updated_at: "2025-05-19T17:54:39Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/13884882?v=4 + events_url: https://api.github.com/users/robertsirc/events{/privacy} + followers_url: https://api.github.com/users/robertsirc/followers + following_url: https://api.github.com/users/robertsirc/following{/other_user} + gists_url: https://api.github.com/users/robertsirc/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/robertsirc + id: 13884882 + login: robertsirc + node_id: MDQ6VXNlcjEzODg0ODgy + organizations_url: https://api.github.com/users/robertsirc/orgs + received_events_url: https://api.github.com/users/robertsirc/received_events + repos_url: https://api.github.com/users/robertsirc/repos + site_admin: false + starred_url: https://api.github.com/users/robertsirc/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/robertsirc/subscriptions + type: User + url: https://api.github.com/users/robertsirc + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/256089635 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.0/helm-v3.18.0-linux-s390x.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2025-05-19T17:54:39Z" + digest: null + download_count: 25 + id: 256089634 + label: null + name: helm-v3.18.0-linux-s390x.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4PQ54i + size: 228 + state: uploaded + updated_at: "2025-05-19T17:54:39Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/13884882?v=4 + events_url: https://api.github.com/users/robertsirc/events{/privacy} + followers_url: https://api.github.com/users/robertsirc/followers + following_url: https://api.github.com/users/robertsirc/following{/other_user} + gists_url: https://api.github.com/users/robertsirc/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/robertsirc + id: 13884882 + login: robertsirc + node_id: MDQ6VXNlcjEzODg0ODgy + organizations_url: https://api.github.com/users/robertsirc/orgs + received_events_url: https://api.github.com/users/robertsirc/received_events + repos_url: https://api.github.com/users/robertsirc/repos + site_admin: false + starred_url: https://api.github.com/users/robertsirc/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/robertsirc/subscriptions + type: User + url: https://api.github.com/users/robertsirc + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/256089634 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.0/helm-v3.18.0-windows-amd64.zip.asc + content_type: application/octet-stream + created_at: "2025-05-19T17:54:38Z" + digest: null + download_count: 105 + id: 256089632 + label: null + name: helm-v3.18.0-windows-amd64.zip.asc + node_id: RA_kwDOApspmc4PQ54g + size: 228 + state: uploaded + updated_at: "2025-05-19T17:54:39Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/13884882?v=4 + events_url: https://api.github.com/users/robertsirc/events{/privacy} + followers_url: https://api.github.com/users/robertsirc/followers + following_url: https://api.github.com/users/robertsirc/following{/other_user} + gists_url: https://api.github.com/users/robertsirc/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/robertsirc + id: 13884882 + login: robertsirc + node_id: MDQ6VXNlcjEzODg0ODgy + organizations_url: https://api.github.com/users/robertsirc/orgs + received_events_url: https://api.github.com/users/robertsirc/received_events + repos_url: https://api.github.com/users/robertsirc/repos + site_admin: false + starred_url: https://api.github.com/users/robertsirc/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/robertsirc/subscriptions + type: User + url: https://api.github.com/users/robertsirc + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/256089632 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.0/helm-v3.18.0-windows-amd64.zip.sha256.asc + content_type: application/octet-stream + created_at: "2025-05-19T17:54:38Z" + digest: null + download_count: 56 + id: 256089631 + label: null + name: helm-v3.18.0-windows-amd64.zip.sha256.asc + node_id: RA_kwDOApspmc4PQ54f + size: 228 + state: uploaded + updated_at: "2025-05-19T17:54:38Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/13884882?v=4 + events_url: https://api.github.com/users/robertsirc/events{/privacy} + followers_url: https://api.github.com/users/robertsirc/followers + following_url: https://api.github.com/users/robertsirc/following{/other_user} + gists_url: https://api.github.com/users/robertsirc/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/robertsirc + id: 13884882 + login: robertsirc + node_id: MDQ6VXNlcjEzODg0ODgy + organizations_url: https://api.github.com/users/robertsirc/orgs + received_events_url: https://api.github.com/users/robertsirc/received_events + repos_url: https://api.github.com/users/robertsirc/repos + site_admin: false + starred_url: https://api.github.com/users/robertsirc/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/robertsirc/subscriptions + type: User + url: https://api.github.com/users/robertsirc + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/256089631 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.0/helm-v3.18.0-windows-amd64.zip.sha256sum.asc + content_type: application/octet-stream + created_at: "2025-05-19T17:54:38Z" + digest: null + download_count: 33 + id: 256089630 + label: null + name: helm-v3.18.0-windows-amd64.zip.sha256sum.asc + node_id: RA_kwDOApspmc4PQ54e + size: 228 + state: uploaded + updated_at: "2025-05-19T17:54:38Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/13884882?v=4 + events_url: https://api.github.com/users/robertsirc/events{/privacy} + followers_url: https://api.github.com/users/robertsirc/followers + following_url: https://api.github.com/users/robertsirc/following{/other_user} + gists_url: https://api.github.com/users/robertsirc/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/robertsirc + id: 13884882 + login: robertsirc + node_id: MDQ6VXNlcjEzODg0ODgy + organizations_url: https://api.github.com/users/robertsirc/orgs + received_events_url: https://api.github.com/users/robertsirc/received_events + repos_url: https://api.github.com/users/robertsirc/repos + site_admin: false + starred_url: https://api.github.com/users/robertsirc/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/robertsirc/subscriptions + type: User + url: https://api.github.com/users/robertsirc + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/256089630 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.0/helm-v3.18.0-windows-arm64.zip.asc + content_type: application/octet-stream + created_at: "2025-05-19T17:54:38Z" + digest: null + download_count: 38 + id: 256089629 + label: null + name: helm-v3.18.0-windows-arm64.zip.asc + node_id: RA_kwDOApspmc4PQ54d + size: 228 + state: uploaded + updated_at: "2025-05-19T17:54:38Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/13884882?v=4 + events_url: https://api.github.com/users/robertsirc/events{/privacy} + followers_url: https://api.github.com/users/robertsirc/followers + following_url: https://api.github.com/users/robertsirc/following{/other_user} + gists_url: https://api.github.com/users/robertsirc/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/robertsirc + id: 13884882 + login: robertsirc + node_id: MDQ6VXNlcjEzODg0ODgy + organizations_url: https://api.github.com/users/robertsirc/orgs + received_events_url: https://api.github.com/users/robertsirc/received_events + repos_url: https://api.github.com/users/robertsirc/repos + site_admin: false + starred_url: https://api.github.com/users/robertsirc/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/robertsirc/subscriptions + type: User + url: https://api.github.com/users/robertsirc + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/256089629 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.0/helm-v3.18.0-windows-arm64.zip.sha256.asc + content_type: application/octet-stream + created_at: "2025-05-19T17:54:38Z" + digest: null + download_count: 22 + id: 256089628 + label: null + name: helm-v3.18.0-windows-arm64.zip.sha256.asc + node_id: RA_kwDOApspmc4PQ54c + size: 228 + state: uploaded + updated_at: "2025-05-19T17:54:38Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/13884882?v=4 + events_url: https://api.github.com/users/robertsirc/events{/privacy} + followers_url: https://api.github.com/users/robertsirc/followers + following_url: https://api.github.com/users/robertsirc/following{/other_user} + gists_url: https://api.github.com/users/robertsirc/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/robertsirc + id: 13884882 + login: robertsirc + node_id: MDQ6VXNlcjEzODg0ODgy + organizations_url: https://api.github.com/users/robertsirc/orgs + received_events_url: https://api.github.com/users/robertsirc/received_events + repos_url: https://api.github.com/users/robertsirc/repos + site_admin: false + starred_url: https://api.github.com/users/robertsirc/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/robertsirc/subscriptions + type: User + url: https://api.github.com/users/robertsirc + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/256089628 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.0/helm-v3.18.0-windows-arm64.zip.sha256sum.asc + content_type: application/octet-stream + created_at: "2025-05-19T17:54:37Z" + digest: null + download_count: 18 + id: 256089627 + label: null + name: helm-v3.18.0-windows-arm64.zip.sha256sum.asc + node_id: RA_kwDOApspmc4PQ54b + size: 228 + state: uploaded + updated_at: "2025-05-19T17:54:38Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/13884882?v=4 + events_url: https://api.github.com/users/robertsirc/events{/privacy} + followers_url: https://api.github.com/users/robertsirc/followers + following_url: https://api.github.com/users/robertsirc/following{/other_user} + gists_url: https://api.github.com/users/robertsirc/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/robertsirc + id: 13884882 + login: robertsirc + node_id: MDQ6VXNlcjEzODg0ODgy + organizations_url: https://api.github.com/users/robertsirc/orgs + received_events_url: https://api.github.com/users/robertsirc/received_events + repos_url: https://api.github.com/users/robertsirc/repos + site_admin: false + starred_url: https://api.github.com/users/robertsirc/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/robertsirc/subscriptions + type: User + url: https://api.github.com/users/robertsirc + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/256089627 + assets_url: https://api.github.com/repos/helm/helm/releases/219579996/assets + author: + avatar_url: https://avatars.githubusercontent.com/u/13884882?v=4 + events_url: https://api.github.com/users/robertsirc/events{/privacy} + followers_url: https://api.github.com/users/robertsirc/followers + following_url: https://api.github.com/users/robertsirc/following{/other_user} + gists_url: https://api.github.com/users/robertsirc/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/robertsirc + id: 13884882 + login: robertsirc + node_id: MDQ6VXNlcjEzODg0ODgy + organizations_url: https://api.github.com/users/robertsirc/orgs + received_events_url: https://api.github.com/users/robertsirc/received_events + repos_url: https://api.github.com/users/robertsirc/repos + site_admin: false + starred_url: https://api.github.com/users/robertsirc/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/robertsirc/subscriptions + type: User + url: https://api.github.com/users/robertsirc + user_view_type: public + body: "Helm v3.18.0 is a feature release. Users are encouraged to upgrade + for the best experience.\r\n\r\nThe community keeps growing, and we'd + love to see you there!\r\n\r\n- Join the discussion in [Kubernetes Slack](https://kubernetes.slack.com):\r\n + \ - for questions and just to hang out\r\n - for discussing PRs, code, + and bugs\r\n- Hang out at the Public Developer Call: Thursday, 9:30 Pacific + via [Zoom](https://zoom.us/j/696660622)\r\n- Test, debug, and contribute + charts: [ArtifactHub/packages](https://artifacthub.io/packages/search?kind=0)\r\n\r\n## + Notable Changes\r\n\r\n- Add support for JSON Schema 2020\r\n- Enabled + cpu and memory profiling\r\n- Add hook annotation to output hook logs + to client on error\r\n\r\n## Installation and Upgrading\r\n\r\nDownload + Helm v3.18.0. The common platform binaries are here:\r\n\r\n- [MacOS amd64](https://get.helm.sh/helm-v3.18.0-darwin-amd64.tar.gz) + ([checksum](https://get.helm.sh/helm-v3.18.0-darwin-amd64.tar.gz.sha256sum) + / 2be99836549413c2f0212d644e8740abd8ba5d7f55484c29d3363cea339891d9)\r\n- + [MacOS arm64](https://get.helm.sh/helm-v3.18.0-darwin-arm64.tar.gz) ([checksum](https://get.helm.sh/helm-v3.18.0-darwin-arm64.tar.gz.sha256sum) + / 4ce30bd86a3fc4f31d297827a5bf5b10ced8c4da2ff810bf9f53f561dbed7d10)\r\n- + [Linux amd64](https://get.helm.sh/helm-v3.18.0-linux-amd64.tar.gz) ([checksum](https://get.helm.sh/helm-v3.18.0-linux-amd64.tar.gz.sha256sum) + / 961e587fc2c03807f8a99ac25ef063fa9e6915f1894729399cbb95d2a79af931)\r\n- + [Linux arm](https://get.helm.sh/helm-v3.18.0-linux-arm.tar.gz) ([checksum](https://get.helm.sh/helm-v3.18.0-linux-arm.tar.gz.sha256sum) + / 88f6264801fd9c5bb3d2d24c7b3da4e239d137b39bacd18d25b22823e6bd31f7)\r\n- + [Linux arm64](https://get.helm.sh/helm-v3.18.0-linux-arm64.tar.gz) ([checksum](https://get.helm.sh/helm-v3.18.0-linux-arm64.tar.gz.sha256sum) + / 489c9d2d3ea4e095331249d74b4407fb5ac1d338c28429d70cdedccfe6e2b029)\r\n- + [Linux i386](https://get.helm.sh/helm-v3.18.0-linux-386.tar.gz) ([checksum](https://get.helm.sh/helm-v3.18.0-linux-386.tar.gz.sha256sum) + / 3302c90957e259897d238feee65e05abb3fc586ab80a49cb577fd123b2e94cb3)\r\n- + [Linux ppc64le](https://get.helm.sh/helm-v3.18.0-linux-ppc64le.tar.gz) + ([checksum](https://get.helm.sh/helm-v3.18.0-linux-ppc64le.tar.gz.sha256sum) + / 559036fe183593488275a19796ca0b13f56e9d586b697a0d968e8b1e24472d7c)\r\n- + [Linux s390x](https://get.helm.sh/helm-v3.18.0-linux-s390x.tar.gz) ([checksum](https://get.helm.sh/helm-v3.18.0-linux-s390x.tar.gz.sha256sum) + / ab0e347751b425ed9c4b619159a9ffeb85a82e07f7333921dec1a26780195a72)\r\n- + [Linux riscv64](https://get.helm.sh/helm-v3.18.0-linux-riscv64.tar.gz) + ([checksum](https://get.helm.sh/helm-v3.18.0-linux-riscv64.tar.gz.sha256sum) + / ae98c3d9d352ac91909d28dbb03d91fc506cafcce647cfbd1954a02ef84f91d1)\r\n- + [Windows amd64](https://get.helm.sh/helm-v3.18.0-windows-amd64.zip) ([checksum](https://get.helm.sh/helm-v3.18.0-windows-amd64.zip.sha256sum) + / ae6a1b832043e3433d2823fc42692057dbf007efad34292708130b412c169a94)\r\n- + [Windows arm64](https://get.helm.sh/helm-v3.18.0-windows-arm64.zip) ([checksum](https://get.helm.sh/helm-v3.18.0-windows-arm64.zip.sha256sum) + / f354f0bdf725a0530162754632bc54fed2c56ad11a899b031702ee1c70ecb5fc)\r\n\r\nThe + [Quickstart Guide](https://helm.sh/docs/intro/quickstart/) will get you + going from there. For **upgrade instructions** or detailed installation + notes, check the [install guide](https://helm.sh/docs/intro/install/). + You can also use a [script to install](https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3) + on any system with `bash`.\r\n\r\n## What's Next\r\n\r\n- 3.18.1 on June + 11th, 2025 will contain only bug fixes.\r\n- 3.19.0 on September 11th, + 2025 is the next feature release. \r\n\r\n## Changelog\r\n\r\n- build(deps): + bump the k8s-io group with 7 updates cc58e3f5a3aa615c6a86275e6f4444b5fdd3cc4e + (dependabot[bot])\r\n- fix: govulncheck workflow bf1436baf3c235cb1b689a016b7162d0cddd3947 + (Matthieu MOREL)\r\n- bump version to v3.18.0 d8edc2aebc2e5ad624640b56a22258b9bbec9099 + (Robert Sirchia)\r\n- fix:add proxy support when mTLS configured 48377fe4515cc6a5bf5ac92ea6086090e7b82798 + (Rongrong Liu)\r\n- docs: Note about http fallback for OCI registries + cdd7c105a60929d733c1b67d4fe5062ff5619ac2 (Terry Howe)\r\n- Bump net package + to avoid CVE on dev-v3 f9ab8f772a01ff918d4a54febe18d4cc6899f2e2 (Benoit + Tigeot)\r\n- Bump toml 087fa18276033d37648deaf082de6b3ea635fb88 (Benoit + Tigeot)\r\n- backport #30677to dev3 2a5f83b960738cc58f090e67ac108418ac4dedf2 + (dongjiang)\r\n- build(deps): bump github.com/rubenv/sql-migrate from + 1.7.2 to 1.8.0 5df2f3018a6ac20db369390fed142463d97b487f (dependabot[bot])\r\n- + Add install test for TakeOwnership flag 0906fe7f6b201d9aa73eb22f518366ea75c57937 + (Evans Mungai)\r\n- Fix --take-ownership 4ee3a19e9a98e3b58eb4579f019666e834408ca3 + (Patrick Seidensal)\r\n- build(deps): bump github.com/rubenv/sql-migrate + from 1.7.1 to 1.7.2 3538c2a677809308821c18bdc309e5954f822211 (dependabot[bot])\r\n- + build(deps): bump golang.org/x/crypto from 0.36.0 to 0.37.0 6fa95c805e449eb7332059cc4aee837a9358f334 + (dependabot[bot])\r\n- build(deps): bump golang.org/x/term from 0.30.0 + to 0.31.0 741b5beeb95b0858b1809a625870310a509a4d61 (dependabot[bot])\r\n- + Testing text bump 017f9fad2b2b51f1292c73922f0857b93d2fb233 (Benoit Tigeot)\r\n- + Permit more Go version and not only 1.23.8 666725202b2c7da205fe0c34a1ac5812e88d2500 + (Benoit Tigeot)\r\n- Bumps github.com/distribution/distribution/v3 from + 3.0.0-rc.3 to 3.0.0 4ad1ccd8fb8bbf4ffec8ccab411f2ee57360824d (Benoit Tigeot)\r\n- + Unarchiving fix 3ce10e4f81e064a3807098c3d466c33f2ece8a18 (Matt Farina)\r\n- + Fix typo 422c58e4a2d7a00e2275916be1bfda0b28efba82 (Benoit Tigeot)\r\n- + Report as debug log, the time spent waiting for resources 5e7f12d4c3e2e37fa4bc065fddde8e191c336a15 + (Benoit Tigeot)\r\n- build(deps): bump github.com/containerd/containerd + from 1.7.26 to 1.7.27 dcc286ca562e91bc5ea052d734d11e4bf2905e19 (dependabot[bot])\r\n- + Update pkg/registry/fallback.go 1435ec7c7717a147fb17701fd0da3992f7a44bb6 + (Terry Howe)\r\n- automatic fallback to http 674e882c88535c75b672cb6986df8fc23ad21dad + (Terry Howe)\r\n- chore(oci): upgrade to ORAS v2 c188441757c66e8e863969c5cb1b27be61482a22 + (Terry Howe)\r\n- Updating to 0.37.0 for x/net 2b12490c329e5a61c79f6f71cee8b450770b0752 + (Matt Farina)\r\n- build(deps): bump the k8s-io group with 7 updates 0648918abbc894b035351353a2af82b5c8b161c8 + (dependabot[bot])\r\n- build(deps): bump golang.org/x/crypto from 0.35.0 + to 0.36.0 0911b9c7b0f29bd49905865cd77509c2d84c4479 (dependabot[bot])\r\n- + build(deps): bump github.com/opencontainers/image-spec 2f22d5544c78b3e81de95bac061515630cb5d157 + (dependabot[bot])\r\n- build(deps): bump github.com/containerd/containerd + from 1.7.25 to 1.7.26 89361c905aae85cf0a20ec68df2fdd52103847ed (dependabot[bot])\r\n- + build(deps): bump golang.org/x/crypto from 0.33.0 to 0.35.0 6d64160ab65863892ef1cec022b5391b17147c6d + (dependabot[bot])\r\n- Fix cherry-pick helm.sh/helm/v4 -> helm.sh/helm/v3 + bcb83e465f4487b481b8843f4d5dfe4f26472c55 (Scott Rigby)\r\n- Refactor based + on review comment 2aa90b8f2603f033479278eb99993d2efe39624c (Chris Berry)\r\n- + Refactor based on review comment 5739197faa75b3e2c7d32a999c3e17bd8949756d + (Chris Berry)\r\n- Add HookOutputFunc and generic yaml unmarshaller b8e13878fcf542aff465a90635b4d29f93dfb434 + (Chris Berry)\r\n- clarify fix error message 97b0e11871252ad99054d911d92666f84fdac79a + (Scott Rigby)\r\n- fix err check 2f79afb0a3c506fd41ea89f13efcfa4379f88b5f + (Scott Rigby)\r\n- remove comments about previous functionality c77f4ec6c41db7d5641da723eb6f67d1b8b0e606 + (Scott Rigby)\r\n- add short circuit return 3cd6afe845c905d2bc1dfa259e2ab4b571c19234 + (Scott Rigby)\r\n- Update based on review comments 5367001f4fa283ffb4dd15741c2dff053b5dfb52 + (Chris Berry)\r\n- Update based on review comments 3c445158d85b1bec417803f418f0b686188b2399 + (Chris Berry)\r\n- Fix lint 4cb639ed4edab7729859328d443b102d05a4b32d (Chris + Berry)\r\n- Tidy up imports 20f859c9ffb5e0a7b48c8331093250bd162e3ee0 (Chris)\r\n- + Add hook annotations to output pod logs to client on success and fail + ca90972b3d81acb1ad9d6f80bb1770113776f06a (Chris Berry)\r\n- chore: use + []error instead of []string a9e20757c6b348da7db789f81a874cdb5b315e9f (Evans + Mungai)\r\n- Update cmd/helm/profiling.go 996ad8445379b44bbefc9116e8b5a0cdd9bce259 + (Evans Mungai)\r\n- chore: update profiling doc in CONTRIBUTING.md 867c97e70d42f523a223973770149c7faeb6f04f + (Evans Mungai)\r\n- Update CONTRIBUTING guide af2410192d0854f1431efaa9858b2d830f3312c4 + (Evans Mungai)\r\n- Prefer environment variables to CLI flags c7dfa87f9d5640ed07b76bfda24dd1e3db635690 + (Evans Mungai)\r\n- Fix linter warning b39411a66829d711168de543fa823cbd5e749ca4 + (Evans Mungai)\r\n- Move pprof paths to HELM_PPROF env variable 4c50f01046be19467eb99495cbce51319700b81a + (Evans Mungai)\r\n- Update CONTRIBUTING.md 3b43f7be60c54edc3ea7d76d6253bb5d12eece32 + (Evans Mungai)\r\n- Update CONTRIBUTING.md a32e11bdc3af0250a10ce6bbb8a2dc566f66cd3d + (Evans Mungai)\r\n- Additional review fixes from PR 483ebf915da5ab2c2bbdb46644bca2fe22ae51f9 + (Evans Mungai)\r\n- feat: Add flags to enable CPU and memory profiling + 461197f9c62f4c37ad2b727962db95378c3f3073 (Evans Mungai)\r\n- build(deps): + bump github.com/distribution/distribution/v3 e7fa545819dbb51c8f94a1936174ee48b52db694 + (dependabot[bot])\r\n- build(deps): bump github.com/spf13/cobra from 1.8.1 + to 1.9.1 d1687ba8d9c94c711215dc49ad88117585c9c765 (dependabot[bot])\r\n- + Moving to SetOut and SetErr for Cobra 4c2f88b2abb53ee04d6003e67d6efa44b29eb832 + (Matt Farina)\r\n- build(deps): bump the k8s-io group with 7 updates a2413aa26dd873a782b8f96cac424991b223c3da + (dependabot[bot])\r\n- build(deps): bump golang.org/x/crypto from 0.32.0 + to 0.33.0 959d643b977b2b1571fe3ccd21d8e9cbfe1b4ea3 (dependabot[bot])\r\n- + build(deps): bump golang.org/x/term from 0.28.0 to 0.29.0 3a87c684e77eef5fcd5bb3b2c51f8e739b871a7c + (dependabot[bot])\r\n- build(deps): bump golang.org/x/text from 0.21.0 + to 0.22.0 711cef8d1c0602a949b39be4c6eafe118e2fc30c (dependabot[bot])\r\n- + build(deps): bump github.com/spf13/pflag from 1.0.5 to 1.0.6 76806237ad36e527d2e6158f80ab84f237c52ec3 + (dependabot[bot])\r\n- build(deps): bump github.com/cyphar/filepath-securejoin + 03747d963f7e51e7fd1eac8a768f2791bf25a7e3 (dependabot[bot])\r\n- build(deps): + bump github.com/evanphx/json-patch f1db83f78f06ee017492b471bb2c19ff2249aacd + (dependabot[bot])\r\n- build(deps): bump the k8s-io group with 7 updates + 3bc3751f7019d2a1f5b922421d398f9ddd880106 (dependabot[bot])\r\n- fix: check + group for resource info match 2ebce786ba295a3ca7a281c3ffd78086cf561f89 + (Jiasheng Zhu)\r\n- Bump github.com/cyphar/filepath-securejoin from 0.3.6 + to 0.4.0 8e86e76d50a9f365e79b6211100dd4308289da6c (dependabot[bot])\r\n- + add test for nullifying nested global value 326c1e3f6782a7ed53980ac010c44689c0ae4fb6 + (Ryan Hockstad)\r\n- Ensuring the file paths are clean prior to passing + to securejoin fba9d08dced3583ef88fc235b307995830173aa9 (Matt Farina)\r\n- + Bump github.com/containerd/containerd from 1.7.24 to 1.7.25 a79be7d5d348525257ea3be3305f7343522bb083 + (dependabot[bot])\r\n- Bump golang.org/x/crypto from 0.31.0 to 0.32.0 + b029d74a52009d4e14d406bcc952d2191e0200f0 (dependabot[bot])\r\n- Bump golang.org/x/term + from 0.27.0 to 0.28.0 a1c0ae88a7ccbda9b5915bac196db54e677fd1d2 (dependabot[bot])\r\n- + bump version to v3.17.0 d6db69ed66a3b127a96e3339a00ea84586310868 (Matt + Farina)\r\n- Bump github.com/moby/term from 0.5.0 to 0.5.2 54ffefbcf79b5d835c29a730ea7aef6afd9109ee + (dependabot[bot])\r\n- Add test case for removing an entire object ef2eb552837446fe8a5a91bc68abf4d9eab685a8 + (Ryan Hockstad)\r\n- Tests for bugfix: Override subcharts with null values + #12879 60fcce18d1646e266dfe8191e25a85dcdb7b0038 (Scott Rigby)\r\n- feat: + Added multi-platform plugin hook support to v3 Signed-off-by: Steve Hipwell + 83dddb183946266289e55eb3c3d8c8a35b24b34a (Andrew + Block)\r\n- This commit fixes the issue where the yaml.Unmarshaller converts + all int values into float64, this passes in option to decoder, which enables + conversion of int into . 0a6834fdf060b4fbc4e1ea4bcb85908891539d48 (Althaf + M)\r\n- merge null child chart objects 5a58751a053ea59b88399487a5f0f8f5c27b9461 + (Ryan Hockstad)\r\n" + created_at: "2025-05-19T17:35:49Z" + draft: false + html_url: https://github.com/helm/helm/releases/tag/v3.18.0 + id: 219579996 + name: Helm v3.18.0 + node_id: RE_kwDOApspmc4NFoZc + prerelease: false + published_at: "2025-05-19T17:54:54Z" + reactions: + "+1": 1 + "-1": 0 + confused: 0 + eyes: 1 + heart: 1 + hooray: 0 + laugh: 0 + rocket: 3 + total_count: 6 + url: https://api.github.com/repos/helm/helm/releases/219579996/reactions + tag_name: v3.18.0 + tarball_url: https://api.github.com/repos/helm/helm/tarball/v3.18.0 + target_commitish: main + upload_url: https://uploads.github.com/repos/helm/helm/releases/219579996/assets{?name,label} + url: https://api.github.com/repos/helm/helm/releases/219579996 + zipball_url: https://api.github.com/repos/helm/helm/zipball/v3.18.0 + 3.18.1: + githubRelease: + assets: + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.1/helm-v3.18.1-darwin-amd64.tar.gz.asc + content_type: application/octet-stream + created_at: "2025-05-28T19:25:03Z" + digest: null + download_count: 2 + id: 258931908 + label: null + name: helm-v3.18.1-darwin-amd64.tar.gz.asc + node_id: RA_kwDOApspmc4PbvzE + size: 228 + state: uploaded + updated_at: "2025-05-28T19:25:03Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/13884882?v=4 + events_url: https://api.github.com/users/robertsirc/events{/privacy} + followers_url: https://api.github.com/users/robertsirc/followers + following_url: https://api.github.com/users/robertsirc/following{/other_user} + gists_url: https://api.github.com/users/robertsirc/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/robertsirc + id: 13884882 + login: robertsirc + node_id: MDQ6VXNlcjEzODg0ODgy + organizations_url: https://api.github.com/users/robertsirc/orgs + received_events_url: https://api.github.com/users/robertsirc/received_events + repos_url: https://api.github.com/users/robertsirc/repos + site_admin: false + starred_url: https://api.github.com/users/robertsirc/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/robertsirc/subscriptions + type: User + url: https://api.github.com/users/robertsirc + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/258931908 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.1/helm-v3.18.1-darwin-amd64.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2025-05-28T19:25:09Z" + digest: null + download_count: 3 + id: 258931950 + label: null + name: helm-v3.18.1-darwin-amd64.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4Pbvzu + size: 228 + state: uploaded + updated_at: "2025-05-28T19:25:09Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/13884882?v=4 + events_url: https://api.github.com/users/robertsirc/events{/privacy} + followers_url: https://api.github.com/users/robertsirc/followers + following_url: https://api.github.com/users/robertsirc/following{/other_user} + gists_url: https://api.github.com/users/robertsirc/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/robertsirc + id: 13884882 + login: robertsirc + node_id: MDQ6VXNlcjEzODg0ODgy + organizations_url: https://api.github.com/users/robertsirc/orgs + received_events_url: https://api.github.com/users/robertsirc/received_events + repos_url: https://api.github.com/users/robertsirc/repos + site_admin: false + starred_url: https://api.github.com/users/robertsirc/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/robertsirc/subscriptions + type: User + url: https://api.github.com/users/robertsirc + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/258931950 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.1/helm-v3.18.1-darwin-amd64.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2025-05-28T19:25:09Z" + digest: null + download_count: 3 + id: 258931949 + label: null + name: helm-v3.18.1-darwin-amd64.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4Pbvzt + size: 228 + state: uploaded + updated_at: "2025-05-28T19:25:09Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/13884882?v=4 + events_url: https://api.github.com/users/robertsirc/events{/privacy} + followers_url: https://api.github.com/users/robertsirc/followers + following_url: https://api.github.com/users/robertsirc/following{/other_user} + gists_url: https://api.github.com/users/robertsirc/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/robertsirc + id: 13884882 + login: robertsirc + node_id: MDQ6VXNlcjEzODg0ODgy + organizations_url: https://api.github.com/users/robertsirc/orgs + received_events_url: https://api.github.com/users/robertsirc/received_events + repos_url: https://api.github.com/users/robertsirc/repos + site_admin: false + starred_url: https://api.github.com/users/robertsirc/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/robertsirc/subscriptions + type: User + url: https://api.github.com/users/robertsirc + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/258931949 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.1/helm-v3.18.1-darwin-arm64.tar.gz.asc + content_type: application/octet-stream + created_at: "2025-05-28T19:25:09Z" + digest: null + download_count: 2 + id: 258931948 + label: null + name: helm-v3.18.1-darwin-arm64.tar.gz.asc + node_id: RA_kwDOApspmc4Pbvzs + size: 228 + state: uploaded + updated_at: "2025-05-28T19:25:09Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/13884882?v=4 + events_url: https://api.github.com/users/robertsirc/events{/privacy} + followers_url: https://api.github.com/users/robertsirc/followers + following_url: https://api.github.com/users/robertsirc/following{/other_user} + gists_url: https://api.github.com/users/robertsirc/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/robertsirc + id: 13884882 + login: robertsirc + node_id: MDQ6VXNlcjEzODg0ODgy + organizations_url: https://api.github.com/users/robertsirc/orgs + received_events_url: https://api.github.com/users/robertsirc/received_events + repos_url: https://api.github.com/users/robertsirc/repos + site_admin: false + starred_url: https://api.github.com/users/robertsirc/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/robertsirc/subscriptions + type: User + url: https://api.github.com/users/robertsirc + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/258931948 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.1/helm-v3.18.1-darwin-arm64.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2025-05-28T19:25:08Z" + digest: null + download_count: 3 + id: 258931947 + label: null + name: helm-v3.18.1-darwin-arm64.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4Pbvzr + size: 228 + state: uploaded + updated_at: "2025-05-28T19:25:09Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/13884882?v=4 + events_url: https://api.github.com/users/robertsirc/events{/privacy} + followers_url: https://api.github.com/users/robertsirc/followers + following_url: https://api.github.com/users/robertsirc/following{/other_user} + gists_url: https://api.github.com/users/robertsirc/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/robertsirc + id: 13884882 + login: robertsirc + node_id: MDQ6VXNlcjEzODg0ODgy + organizations_url: https://api.github.com/users/robertsirc/orgs + received_events_url: https://api.github.com/users/robertsirc/received_events + repos_url: https://api.github.com/users/robertsirc/repos + site_admin: false + starred_url: https://api.github.com/users/robertsirc/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/robertsirc/subscriptions + type: User + url: https://api.github.com/users/robertsirc + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/258931947 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.1/helm-v3.18.1-darwin-arm64.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2025-05-28T19:25:08Z" + digest: null + download_count: 3 + id: 258931946 + label: null + name: helm-v3.18.1-darwin-arm64.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4Pbvzq + size: 228 + state: uploaded + updated_at: "2025-05-28T19:25:09Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/13884882?v=4 + events_url: https://api.github.com/users/robertsirc/events{/privacy} + followers_url: https://api.github.com/users/robertsirc/followers + following_url: https://api.github.com/users/robertsirc/following{/other_user} + gists_url: https://api.github.com/users/robertsirc/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/robertsirc + id: 13884882 + login: robertsirc + node_id: MDQ6VXNlcjEzODg0ODgy + organizations_url: https://api.github.com/users/robertsirc/orgs + received_events_url: https://api.github.com/users/robertsirc/received_events + repos_url: https://api.github.com/users/robertsirc/repos + site_admin: false + starred_url: https://api.github.com/users/robertsirc/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/robertsirc/subscriptions + type: User + url: https://api.github.com/users/robertsirc + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/258931946 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.1/helm-v3.18.1-linux-386.tar.gz.asc + content_type: application/octet-stream + created_at: "2025-05-28T19:25:08Z" + digest: null + download_count: 2 + id: 258931944 + label: null + name: helm-v3.18.1-linux-386.tar.gz.asc + node_id: RA_kwDOApspmc4Pbvzo + size: 228 + state: uploaded + updated_at: "2025-05-28T19:25:08Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/13884882?v=4 + events_url: https://api.github.com/users/robertsirc/events{/privacy} + followers_url: https://api.github.com/users/robertsirc/followers + following_url: https://api.github.com/users/robertsirc/following{/other_user} + gists_url: https://api.github.com/users/robertsirc/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/robertsirc + id: 13884882 + login: robertsirc + node_id: MDQ6VXNlcjEzODg0ODgy + organizations_url: https://api.github.com/users/robertsirc/orgs + received_events_url: https://api.github.com/users/robertsirc/received_events + repos_url: https://api.github.com/users/robertsirc/repos + site_admin: false + starred_url: https://api.github.com/users/robertsirc/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/robertsirc/subscriptions + type: User + url: https://api.github.com/users/robertsirc + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/258931944 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.1/helm-v3.18.1-linux-386.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2025-05-28T19:25:08Z" + digest: null + download_count: 3 + id: 258931943 + label: null + name: helm-v3.18.1-linux-386.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4Pbvzn + size: 228 + state: uploaded + updated_at: "2025-05-28T19:25:08Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/13884882?v=4 + events_url: https://api.github.com/users/robertsirc/events{/privacy} + followers_url: https://api.github.com/users/robertsirc/followers + following_url: https://api.github.com/users/robertsirc/following{/other_user} + gists_url: https://api.github.com/users/robertsirc/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/robertsirc + id: 13884882 + login: robertsirc + node_id: MDQ6VXNlcjEzODg0ODgy + organizations_url: https://api.github.com/users/robertsirc/orgs + received_events_url: https://api.github.com/users/robertsirc/received_events + repos_url: https://api.github.com/users/robertsirc/repos + site_admin: false + starred_url: https://api.github.com/users/robertsirc/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/robertsirc/subscriptions + type: User + url: https://api.github.com/users/robertsirc + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/258931943 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.1/helm-v3.18.1-linux-386.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2025-05-28T19:25:08Z" + digest: null + download_count: 3 + id: 258931942 + label: null + name: helm-v3.18.1-linux-386.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4Pbvzm + size: 228 + state: uploaded + updated_at: "2025-05-28T19:25:08Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/13884882?v=4 + events_url: https://api.github.com/users/robertsirc/events{/privacy} + followers_url: https://api.github.com/users/robertsirc/followers + following_url: https://api.github.com/users/robertsirc/following{/other_user} + gists_url: https://api.github.com/users/robertsirc/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/robertsirc + id: 13884882 + login: robertsirc + node_id: MDQ6VXNlcjEzODg0ODgy + organizations_url: https://api.github.com/users/robertsirc/orgs + received_events_url: https://api.github.com/users/robertsirc/received_events + repos_url: https://api.github.com/users/robertsirc/repos + site_admin: false + starred_url: https://api.github.com/users/robertsirc/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/robertsirc/subscriptions + type: User + url: https://api.github.com/users/robertsirc + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/258931942 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.1/helm-v3.18.1-linux-amd64.tar.gz.asc + content_type: application/octet-stream + created_at: "2025-05-28T19:25:08Z" + digest: null + download_count: 24 + id: 258931941 + label: null + name: helm-v3.18.1-linux-amd64.tar.gz.asc + node_id: RA_kwDOApspmc4Pbvzl + size: 228 + state: uploaded + updated_at: "2025-05-28T19:25:08Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/13884882?v=4 + events_url: https://api.github.com/users/robertsirc/events{/privacy} + followers_url: https://api.github.com/users/robertsirc/followers + following_url: https://api.github.com/users/robertsirc/following{/other_user} + gists_url: https://api.github.com/users/robertsirc/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/robertsirc + id: 13884882 + login: robertsirc + node_id: MDQ6VXNlcjEzODg0ODgy + organizations_url: https://api.github.com/users/robertsirc/orgs + received_events_url: https://api.github.com/users/robertsirc/received_events + repos_url: https://api.github.com/users/robertsirc/repos + site_admin: false + starred_url: https://api.github.com/users/robertsirc/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/robertsirc/subscriptions + type: User + url: https://api.github.com/users/robertsirc + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/258931941 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.1/helm-v3.18.1-linux-amd64.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2025-05-28T19:25:07Z" + digest: null + download_count: 3 + id: 258931940 + label: null + name: helm-v3.18.1-linux-amd64.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4Pbvzk + size: 228 + state: uploaded + updated_at: "2025-05-28T19:25:08Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/13884882?v=4 + events_url: https://api.github.com/users/robertsirc/events{/privacy} + followers_url: https://api.github.com/users/robertsirc/followers + following_url: https://api.github.com/users/robertsirc/following{/other_user} + gists_url: https://api.github.com/users/robertsirc/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/robertsirc + id: 13884882 + login: robertsirc + node_id: MDQ6VXNlcjEzODg0ODgy + organizations_url: https://api.github.com/users/robertsirc/orgs + received_events_url: https://api.github.com/users/robertsirc/received_events + repos_url: https://api.github.com/users/robertsirc/repos + site_admin: false + starred_url: https://api.github.com/users/robertsirc/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/robertsirc/subscriptions + type: User + url: https://api.github.com/users/robertsirc + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/258931940 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.1/helm-v3.18.1-linux-amd64.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2025-05-28T19:25:07Z" + digest: null + download_count: 3 + id: 258931937 + label: null + name: helm-v3.18.1-linux-amd64.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4Pbvzh + size: 228 + state: uploaded + updated_at: "2025-05-28T19:25:07Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/13884882?v=4 + events_url: https://api.github.com/users/robertsirc/events{/privacy} + followers_url: https://api.github.com/users/robertsirc/followers + following_url: https://api.github.com/users/robertsirc/following{/other_user} + gists_url: https://api.github.com/users/robertsirc/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/robertsirc + id: 13884882 + login: robertsirc + node_id: MDQ6VXNlcjEzODg0ODgy + organizations_url: https://api.github.com/users/robertsirc/orgs + received_events_url: https://api.github.com/users/robertsirc/received_events + repos_url: https://api.github.com/users/robertsirc/repos + site_admin: false + starred_url: https://api.github.com/users/robertsirc/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/robertsirc/subscriptions + type: User + url: https://api.github.com/users/robertsirc + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/258931937 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.1/helm-v3.18.1-linux-arm.tar.gz.asc + content_type: application/octet-stream + created_at: "2025-05-28T19:25:07Z" + digest: null + download_count: 2 + id: 258931936 + label: null + name: helm-v3.18.1-linux-arm.tar.gz.asc + node_id: RA_kwDOApspmc4Pbvzg + size: 228 + state: uploaded + updated_at: "2025-05-28T19:25:07Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/13884882?v=4 + events_url: https://api.github.com/users/robertsirc/events{/privacy} + followers_url: https://api.github.com/users/robertsirc/followers + following_url: https://api.github.com/users/robertsirc/following{/other_user} + gists_url: https://api.github.com/users/robertsirc/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/robertsirc + id: 13884882 + login: robertsirc + node_id: MDQ6VXNlcjEzODg0ODgy + organizations_url: https://api.github.com/users/robertsirc/orgs + received_events_url: https://api.github.com/users/robertsirc/received_events + repos_url: https://api.github.com/users/robertsirc/repos + site_admin: false + starred_url: https://api.github.com/users/robertsirc/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/robertsirc/subscriptions + type: User + url: https://api.github.com/users/robertsirc + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/258931936 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.1/helm-v3.18.1-linux-arm.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2025-05-28T19:25:07Z" + digest: null + download_count: 3 + id: 258931934 + label: null + name: helm-v3.18.1-linux-arm.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4Pbvze + size: 228 + state: uploaded + updated_at: "2025-05-28T19:25:07Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/13884882?v=4 + events_url: https://api.github.com/users/robertsirc/events{/privacy} + followers_url: https://api.github.com/users/robertsirc/followers + following_url: https://api.github.com/users/robertsirc/following{/other_user} + gists_url: https://api.github.com/users/robertsirc/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/robertsirc + id: 13884882 + login: robertsirc + node_id: MDQ6VXNlcjEzODg0ODgy + organizations_url: https://api.github.com/users/robertsirc/orgs + received_events_url: https://api.github.com/users/robertsirc/received_events + repos_url: https://api.github.com/users/robertsirc/repos + site_admin: false + starred_url: https://api.github.com/users/robertsirc/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/robertsirc/subscriptions + type: User + url: https://api.github.com/users/robertsirc + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/258931934 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.1/helm-v3.18.1-linux-arm.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2025-05-28T19:25:07Z" + digest: null + download_count: 3 + id: 258931933 + label: null + name: helm-v3.18.1-linux-arm.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4Pbvzd + size: 228 + state: uploaded + updated_at: "2025-05-28T19:25:07Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/13884882?v=4 + events_url: https://api.github.com/users/robertsirc/events{/privacy} + followers_url: https://api.github.com/users/robertsirc/followers + following_url: https://api.github.com/users/robertsirc/following{/other_user} + gists_url: https://api.github.com/users/robertsirc/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/robertsirc + id: 13884882 + login: robertsirc + node_id: MDQ6VXNlcjEzODg0ODgy + organizations_url: https://api.github.com/users/robertsirc/orgs + received_events_url: https://api.github.com/users/robertsirc/received_events + repos_url: https://api.github.com/users/robertsirc/repos + site_admin: false + starred_url: https://api.github.com/users/robertsirc/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/robertsirc/subscriptions + type: User + url: https://api.github.com/users/robertsirc + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/258931933 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.1/helm-v3.18.1-linux-arm64.tar.gz.asc + content_type: application/octet-stream + created_at: "2025-05-28T19:25:06Z" + digest: null + download_count: 15 + id: 258931932 + label: null + name: helm-v3.18.1-linux-arm64.tar.gz.asc + node_id: RA_kwDOApspmc4Pbvzc + size: 228 + state: uploaded + updated_at: "2025-05-28T19:25:07Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/13884882?v=4 + events_url: https://api.github.com/users/robertsirc/events{/privacy} + followers_url: https://api.github.com/users/robertsirc/followers + following_url: https://api.github.com/users/robertsirc/following{/other_user} + gists_url: https://api.github.com/users/robertsirc/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/robertsirc + id: 13884882 + login: robertsirc + node_id: MDQ6VXNlcjEzODg0ODgy + organizations_url: https://api.github.com/users/robertsirc/orgs + received_events_url: https://api.github.com/users/robertsirc/received_events + repos_url: https://api.github.com/users/robertsirc/repos + site_admin: false + starred_url: https://api.github.com/users/robertsirc/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/robertsirc/subscriptions + type: User + url: https://api.github.com/users/robertsirc + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/258931932 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.1/helm-v3.18.1-linux-arm64.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2025-05-28T19:25:06Z" + digest: null + download_count: 3 + id: 258931931 + label: null + name: helm-v3.18.1-linux-arm64.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4Pbvzb + size: 228 + state: uploaded + updated_at: "2025-05-28T19:25:06Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/13884882?v=4 + events_url: https://api.github.com/users/robertsirc/events{/privacy} + followers_url: https://api.github.com/users/robertsirc/followers + following_url: https://api.github.com/users/robertsirc/following{/other_user} + gists_url: https://api.github.com/users/robertsirc/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/robertsirc + id: 13884882 + login: robertsirc + node_id: MDQ6VXNlcjEzODg0ODgy + organizations_url: https://api.github.com/users/robertsirc/orgs + received_events_url: https://api.github.com/users/robertsirc/received_events + repos_url: https://api.github.com/users/robertsirc/repos + site_admin: false + starred_url: https://api.github.com/users/robertsirc/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/robertsirc/subscriptions + type: User + url: https://api.github.com/users/robertsirc + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/258931931 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.1/helm-v3.18.1-linux-arm64.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2025-05-28T19:25:06Z" + digest: null + download_count: 3 + id: 258931930 + label: null + name: helm-v3.18.1-linux-arm64.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4Pbvza + size: 228 + state: uploaded + updated_at: "2025-05-28T19:25:06Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/13884882?v=4 + events_url: https://api.github.com/users/robertsirc/events{/privacy} + followers_url: https://api.github.com/users/robertsirc/followers + following_url: https://api.github.com/users/robertsirc/following{/other_user} + gists_url: https://api.github.com/users/robertsirc/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/robertsirc + id: 13884882 + login: robertsirc + node_id: MDQ6VXNlcjEzODg0ODgy + organizations_url: https://api.github.com/users/robertsirc/orgs + received_events_url: https://api.github.com/users/robertsirc/received_events + repos_url: https://api.github.com/users/robertsirc/repos + site_admin: false + starred_url: https://api.github.com/users/robertsirc/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/robertsirc/subscriptions + type: User + url: https://api.github.com/users/robertsirc + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/258931930 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.1/helm-v3.18.1-linux-ppc64le.tar.gz.asc + content_type: application/octet-stream + created_at: "2025-05-28T19:25:06Z" + digest: null + download_count: 2 + id: 258931928 + label: null + name: helm-v3.18.1-linux-ppc64le.tar.gz.asc + node_id: RA_kwDOApspmc4PbvzY + size: 228 + state: uploaded + updated_at: "2025-05-28T19:25:06Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/13884882?v=4 + events_url: https://api.github.com/users/robertsirc/events{/privacy} + followers_url: https://api.github.com/users/robertsirc/followers + following_url: https://api.github.com/users/robertsirc/following{/other_user} + gists_url: https://api.github.com/users/robertsirc/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/robertsirc + id: 13884882 + login: robertsirc + node_id: MDQ6VXNlcjEzODg0ODgy + organizations_url: https://api.github.com/users/robertsirc/orgs + received_events_url: https://api.github.com/users/robertsirc/received_events + repos_url: https://api.github.com/users/robertsirc/repos + site_admin: false + starred_url: https://api.github.com/users/robertsirc/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/robertsirc/subscriptions + type: User + url: https://api.github.com/users/robertsirc + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/258931928 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.1/helm-v3.18.1-linux-ppc64le.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2025-05-28T19:25:06Z" + digest: null + download_count: 3 + id: 258931926 + label: null + name: helm-v3.18.1-linux-ppc64le.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4PbvzW + size: 228 + state: uploaded + updated_at: "2025-05-28T19:25:06Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/13884882?v=4 + events_url: https://api.github.com/users/robertsirc/events{/privacy} + followers_url: https://api.github.com/users/robertsirc/followers + following_url: https://api.github.com/users/robertsirc/following{/other_user} + gists_url: https://api.github.com/users/robertsirc/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/robertsirc + id: 13884882 + login: robertsirc + node_id: MDQ6VXNlcjEzODg0ODgy + organizations_url: https://api.github.com/users/robertsirc/orgs + received_events_url: https://api.github.com/users/robertsirc/received_events + repos_url: https://api.github.com/users/robertsirc/repos + site_admin: false + starred_url: https://api.github.com/users/robertsirc/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/robertsirc/subscriptions + type: User + url: https://api.github.com/users/robertsirc + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/258931926 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.1/helm-v3.18.1-linux-ppc64le.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2025-05-28T19:25:06Z" + digest: null + download_count: 3 + id: 258931925 + label: null + name: helm-v3.18.1-linux-ppc64le.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4PbvzV + size: 228 + state: uploaded + updated_at: "2025-05-28T19:25:06Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/13884882?v=4 + events_url: https://api.github.com/users/robertsirc/events{/privacy} + followers_url: https://api.github.com/users/robertsirc/followers + following_url: https://api.github.com/users/robertsirc/following{/other_user} + gists_url: https://api.github.com/users/robertsirc/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/robertsirc + id: 13884882 + login: robertsirc + node_id: MDQ6VXNlcjEzODg0ODgy + organizations_url: https://api.github.com/users/robertsirc/orgs + received_events_url: https://api.github.com/users/robertsirc/received_events + repos_url: https://api.github.com/users/robertsirc/repos + site_admin: false + starred_url: https://api.github.com/users/robertsirc/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/robertsirc/subscriptions + type: User + url: https://api.github.com/users/robertsirc + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/258931925 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.1/helm-v3.18.1-linux-riscv64.tar.gz.asc + content_type: application/octet-stream + created_at: "2025-05-28T19:25:05Z" + digest: null + download_count: 2 + id: 258931924 + label: null + name: helm-v3.18.1-linux-riscv64.tar.gz.asc + node_id: RA_kwDOApspmc4PbvzU + size: 228 + state: uploaded + updated_at: "2025-05-28T19:25:06Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/13884882?v=4 + events_url: https://api.github.com/users/robertsirc/events{/privacy} + followers_url: https://api.github.com/users/robertsirc/followers + following_url: https://api.github.com/users/robertsirc/following{/other_user} + gists_url: https://api.github.com/users/robertsirc/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/robertsirc + id: 13884882 + login: robertsirc + node_id: MDQ6VXNlcjEzODg0ODgy + organizations_url: https://api.github.com/users/robertsirc/orgs + received_events_url: https://api.github.com/users/robertsirc/received_events + repos_url: https://api.github.com/users/robertsirc/repos + site_admin: false + starred_url: https://api.github.com/users/robertsirc/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/robertsirc/subscriptions + type: User + url: https://api.github.com/users/robertsirc + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/258931924 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.1/helm-v3.18.1-linux-riscv64.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2025-05-28T19:25:05Z" + digest: null + download_count: 3 + id: 258931923 + label: null + name: helm-v3.18.1-linux-riscv64.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4PbvzT + size: 228 + state: uploaded + updated_at: "2025-05-28T19:25:05Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/13884882?v=4 + events_url: https://api.github.com/users/robertsirc/events{/privacy} + followers_url: https://api.github.com/users/robertsirc/followers + following_url: https://api.github.com/users/robertsirc/following{/other_user} + gists_url: https://api.github.com/users/robertsirc/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/robertsirc + id: 13884882 + login: robertsirc + node_id: MDQ6VXNlcjEzODg0ODgy + organizations_url: https://api.github.com/users/robertsirc/orgs + received_events_url: https://api.github.com/users/robertsirc/received_events + repos_url: https://api.github.com/users/robertsirc/repos + site_admin: false + starred_url: https://api.github.com/users/robertsirc/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/robertsirc/subscriptions + type: User + url: https://api.github.com/users/robertsirc + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/258931923 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.1/helm-v3.18.1-linux-riscv64.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2025-05-28T19:25:05Z" + digest: null + download_count: 3 + id: 258931922 + label: null + name: helm-v3.18.1-linux-riscv64.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4PbvzS + size: 228 + state: uploaded + updated_at: "2025-05-28T19:25:05Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/13884882?v=4 + events_url: https://api.github.com/users/robertsirc/events{/privacy} + followers_url: https://api.github.com/users/robertsirc/followers + following_url: https://api.github.com/users/robertsirc/following{/other_user} + gists_url: https://api.github.com/users/robertsirc/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/robertsirc + id: 13884882 + login: robertsirc + node_id: MDQ6VXNlcjEzODg0ODgy + organizations_url: https://api.github.com/users/robertsirc/orgs + received_events_url: https://api.github.com/users/robertsirc/received_events + repos_url: https://api.github.com/users/robertsirc/repos + site_admin: false + starred_url: https://api.github.com/users/robertsirc/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/robertsirc/subscriptions + type: User + url: https://api.github.com/users/robertsirc + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/258931922 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.1/helm-v3.18.1-linux-s390x.tar.gz.asc + content_type: application/octet-stream + created_at: "2025-05-28T19:25:05Z" + digest: null + download_count: 2 + id: 258931921 + label: null + name: helm-v3.18.1-linux-s390x.tar.gz.asc + node_id: RA_kwDOApspmc4PbvzR + size: 228 + state: uploaded + updated_at: "2025-05-28T19:25:05Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/13884882?v=4 + events_url: https://api.github.com/users/robertsirc/events{/privacy} + followers_url: https://api.github.com/users/robertsirc/followers + following_url: https://api.github.com/users/robertsirc/following{/other_user} + gists_url: https://api.github.com/users/robertsirc/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/robertsirc + id: 13884882 + login: robertsirc + node_id: MDQ6VXNlcjEzODg0ODgy + organizations_url: https://api.github.com/users/robertsirc/orgs + received_events_url: https://api.github.com/users/robertsirc/received_events + repos_url: https://api.github.com/users/robertsirc/repos + site_admin: false + starred_url: https://api.github.com/users/robertsirc/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/robertsirc/subscriptions + type: User + url: https://api.github.com/users/robertsirc + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/258931921 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.1/helm-v3.18.1-linux-s390x.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2025-05-28T19:25:05Z" + digest: null + download_count: 3 + id: 258931920 + label: null + name: helm-v3.18.1-linux-s390x.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4PbvzQ + size: 228 + state: uploaded + updated_at: "2025-05-28T19:25:05Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/13884882?v=4 + events_url: https://api.github.com/users/robertsirc/events{/privacy} + followers_url: https://api.github.com/users/robertsirc/followers + following_url: https://api.github.com/users/robertsirc/following{/other_user} + gists_url: https://api.github.com/users/robertsirc/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/robertsirc + id: 13884882 + login: robertsirc + node_id: MDQ6VXNlcjEzODg0ODgy + organizations_url: https://api.github.com/users/robertsirc/orgs + received_events_url: https://api.github.com/users/robertsirc/received_events + repos_url: https://api.github.com/users/robertsirc/repos + site_admin: false + starred_url: https://api.github.com/users/robertsirc/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/robertsirc/subscriptions + type: User + url: https://api.github.com/users/robertsirc + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/258931920 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.1/helm-v3.18.1-linux-s390x.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2025-05-28T19:25:04Z" + digest: null + download_count: 3 + id: 258931918 + label: null + name: helm-v3.18.1-linux-s390x.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4PbvzO + size: 228 + state: uploaded + updated_at: "2025-05-28T19:25:05Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/13884882?v=4 + events_url: https://api.github.com/users/robertsirc/events{/privacy} + followers_url: https://api.github.com/users/robertsirc/followers + following_url: https://api.github.com/users/robertsirc/following{/other_user} + gists_url: https://api.github.com/users/robertsirc/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/robertsirc + id: 13884882 + login: robertsirc + node_id: MDQ6VXNlcjEzODg0ODgy + organizations_url: https://api.github.com/users/robertsirc/orgs + received_events_url: https://api.github.com/users/robertsirc/received_events + repos_url: https://api.github.com/users/robertsirc/repos + site_admin: false + starred_url: https://api.github.com/users/robertsirc/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/robertsirc/subscriptions + type: User + url: https://api.github.com/users/robertsirc + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/258931918 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.1/helm-v3.18.1-windows-amd64.zip.asc + content_type: application/octet-stream + created_at: "2025-05-28T19:25:04Z" + digest: null + download_count: 2 + id: 258931917 + label: null + name: helm-v3.18.1-windows-amd64.zip.asc + node_id: RA_kwDOApspmc4PbvzN + size: 228 + state: uploaded + updated_at: "2025-05-28T19:25:04Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/13884882?v=4 + events_url: https://api.github.com/users/robertsirc/events{/privacy} + followers_url: https://api.github.com/users/robertsirc/followers + following_url: https://api.github.com/users/robertsirc/following{/other_user} + gists_url: https://api.github.com/users/robertsirc/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/robertsirc + id: 13884882 + login: robertsirc + node_id: MDQ6VXNlcjEzODg0ODgy + organizations_url: https://api.github.com/users/robertsirc/orgs + received_events_url: https://api.github.com/users/robertsirc/received_events + repos_url: https://api.github.com/users/robertsirc/repos + site_admin: false + starred_url: https://api.github.com/users/robertsirc/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/robertsirc/subscriptions + type: User + url: https://api.github.com/users/robertsirc + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/258931917 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.1/helm-v3.18.1-windows-amd64.zip.sha256.asc + content_type: application/octet-stream + created_at: "2025-05-28T19:25:04Z" + digest: null + download_count: 3 + id: 258931916 + label: null + name: helm-v3.18.1-windows-amd64.zip.sha256.asc + node_id: RA_kwDOApspmc4PbvzM + size: 228 + state: uploaded + updated_at: "2025-05-28T19:25:04Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/13884882?v=4 + events_url: https://api.github.com/users/robertsirc/events{/privacy} + followers_url: https://api.github.com/users/robertsirc/followers + following_url: https://api.github.com/users/robertsirc/following{/other_user} + gists_url: https://api.github.com/users/robertsirc/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/robertsirc + id: 13884882 + login: robertsirc + node_id: MDQ6VXNlcjEzODg0ODgy + organizations_url: https://api.github.com/users/robertsirc/orgs + received_events_url: https://api.github.com/users/robertsirc/received_events + repos_url: https://api.github.com/users/robertsirc/repos + site_admin: false + starred_url: https://api.github.com/users/robertsirc/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/robertsirc/subscriptions + type: User + url: https://api.github.com/users/robertsirc + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/258931916 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.1/helm-v3.18.1-windows-amd64.zip.sha256sum.asc + content_type: application/octet-stream + created_at: "2025-05-28T19:25:04Z" + digest: null + download_count: 3 + id: 258931914 + label: null + name: helm-v3.18.1-windows-amd64.zip.sha256sum.asc + node_id: RA_kwDOApspmc4PbvzK + size: 228 + state: uploaded + updated_at: "2025-05-28T19:25:04Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/13884882?v=4 + events_url: https://api.github.com/users/robertsirc/events{/privacy} + followers_url: https://api.github.com/users/robertsirc/followers + following_url: https://api.github.com/users/robertsirc/following{/other_user} + gists_url: https://api.github.com/users/robertsirc/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/robertsirc + id: 13884882 + login: robertsirc + node_id: MDQ6VXNlcjEzODg0ODgy + organizations_url: https://api.github.com/users/robertsirc/orgs + received_events_url: https://api.github.com/users/robertsirc/received_events + repos_url: https://api.github.com/users/robertsirc/repos + site_admin: false + starred_url: https://api.github.com/users/robertsirc/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/robertsirc/subscriptions + type: User + url: https://api.github.com/users/robertsirc + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/258931914 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.1/helm-v3.18.1-windows-arm64.zip.asc + content_type: application/octet-stream + created_at: "2025-05-28T19:25:04Z" + digest: null + download_count: 2 + id: 258931911 + label: null + name: helm-v3.18.1-windows-arm64.zip.asc + node_id: RA_kwDOApspmc4PbvzH + size: 228 + state: uploaded + updated_at: "2025-05-28T19:25:04Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/13884882?v=4 + events_url: https://api.github.com/users/robertsirc/events{/privacy} + followers_url: https://api.github.com/users/robertsirc/followers + following_url: https://api.github.com/users/robertsirc/following{/other_user} + gists_url: https://api.github.com/users/robertsirc/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/robertsirc + id: 13884882 + login: robertsirc + node_id: MDQ6VXNlcjEzODg0ODgy + organizations_url: https://api.github.com/users/robertsirc/orgs + received_events_url: https://api.github.com/users/robertsirc/received_events + repos_url: https://api.github.com/users/robertsirc/repos + site_admin: false + starred_url: https://api.github.com/users/robertsirc/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/robertsirc/subscriptions + type: User + url: https://api.github.com/users/robertsirc + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/258931911 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.1/helm-v3.18.1-windows-arm64.zip.sha256.asc + content_type: application/octet-stream + created_at: "2025-05-28T19:25:03Z" + digest: null + download_count: 3 + id: 258931909 + label: null + name: helm-v3.18.1-windows-arm64.zip.sha256.asc + node_id: RA_kwDOApspmc4PbvzF + size: 228 + state: uploaded + updated_at: "2025-05-28T19:25:04Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/13884882?v=4 + events_url: https://api.github.com/users/robertsirc/events{/privacy} + followers_url: https://api.github.com/users/robertsirc/followers + following_url: https://api.github.com/users/robertsirc/following{/other_user} + gists_url: https://api.github.com/users/robertsirc/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/robertsirc + id: 13884882 + login: robertsirc + node_id: MDQ6VXNlcjEzODg0ODgy + organizations_url: https://api.github.com/users/robertsirc/orgs + received_events_url: https://api.github.com/users/robertsirc/received_events + repos_url: https://api.github.com/users/robertsirc/repos + site_admin: false + starred_url: https://api.github.com/users/robertsirc/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/robertsirc/subscriptions + type: User + url: https://api.github.com/users/robertsirc + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/258931909 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.1/helm-v3.18.1-windows-arm64.zip.sha256sum.asc + content_type: application/octet-stream + created_at: "2025-05-28T19:25:09Z" + digest: null + download_count: 3 + id: 258931951 + label: null + name: helm-v3.18.1-windows-arm64.zip.sha256sum.asc + node_id: RA_kwDOApspmc4Pbvzv + size: 228 + state: uploaded + updated_at: "2025-05-28T19:25:10Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/13884882?v=4 + events_url: https://api.github.com/users/robertsirc/events{/privacy} + followers_url: https://api.github.com/users/robertsirc/followers + following_url: https://api.github.com/users/robertsirc/following{/other_user} + gists_url: https://api.github.com/users/robertsirc/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/robertsirc + id: 13884882 + login: robertsirc + node_id: MDQ6VXNlcjEzODg0ODgy + organizations_url: https://api.github.com/users/robertsirc/orgs + received_events_url: https://api.github.com/users/robertsirc/received_events + repos_url: https://api.github.com/users/robertsirc/repos + site_admin: false + starred_url: https://api.github.com/users/robertsirc/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/robertsirc/subscriptions + type: User + url: https://api.github.com/users/robertsirc + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/258931951 + assets_url: https://api.github.com/repos/helm/helm/releases/221651277/assets + author: + avatar_url: https://avatars.githubusercontent.com/u/13884882?v=4 + events_url: https://api.github.com/users/robertsirc/events{/privacy} + followers_url: https://api.github.com/users/robertsirc/followers + following_url: https://api.github.com/users/robertsirc/following{/other_user} + gists_url: https://api.github.com/users/robertsirc/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/robertsirc + id: 13884882 + login: robertsirc + node_id: MDQ6VXNlcjEzODg0ODgy + organizations_url: https://api.github.com/users/robertsirc/orgs + received_events_url: https://api.github.com/users/robertsirc/received_events + repos_url: https://api.github.com/users/robertsirc/repos + site_admin: false + starred_url: https://api.github.com/users/robertsirc/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/robertsirc/subscriptions + type: User + url: https://api.github.com/users/robertsirc + user_view_type: public + body: "v3.18.1\r\n\r\nHelm v3.18.1 is a patch release. Users are encouraged + to upgrade for the best experience. Users are encouraged to upgrade for + the best experience.\r\n\r\nThe community keeps growing, and we'd love + to see you there!\r\n\r\n- Join the discussion in [Kubernetes Slack](https://kubernetes.slack.com):\r\n + \ - for questions and just to hang out\r\n - for discussing PRs, code, + and bugs\r\n- Hang out at the Public Developer Call: Thursday, 9:30 Pacific + via [Zoom](https://zoom.us/j/696660622)\r\n- Test, debug, and contribute + charts: [ArtifactHub/packages](https://artifacthub.io/packages/search?kind=0)\r\n\r\n## + Installation and Upgrading\r\n\r\nDownload Helm v3.18.1. The common platform + binaries are here:\r\n\r\n- [MacOS amd64](https://get.helm.sh/helm-v3.18.1-darwin-amd64.tar.gz) + ([checksum](https://get.helm.sh/helm-v3.18.1-darwin-amd64.tar.gz.sha256sum) + / \uFEFFBlobNotFoundThe + specified blob does not exist.\r\nRequestId:4f8453aa-001e-003c-5205-d0dcf3000000\r\nTime:2025-05-28T19:20:05.5109560Z)\r\n- + [MacOS arm64](https://get.helm.sh/helm-v3.18.1-darwin-arm64.tar.gz) ([checksum](https://get.helm.sh/helm-v3.18.1-darwin-arm64.tar.gz.sha256sum) + / \uFEFFBlobNotFoundThe + specified blob does not exist.\r\nRequestId:a900358b-401e-005f-2f05-d04108000000\r\nTime:2025-05-28T19:20:07.2988256Z)\r\n- + [Linux amd64](https://get.helm.sh/helm-v3.18.1-linux-amd64.tar.gz) ([checksum](https://get.helm.sh/helm-v3.18.1-linux-amd64.tar.gz.sha256sum) + / \uFEFFBlobNotFoundThe + specified blob does not exist.\r\nRequestId:986fe6a5-d01e-002f-8005-d0f8ff000000\r\nTime:2025-05-28T19:20:08.7172759Z)\r\n- + [Linux arm](https://get.helm.sh/helm-v3.18.1-linux-arm.tar.gz) ([checksum](https://get.helm.sh/helm-v3.18.1-linux-arm.tar.gz.sha256sum) + / \uFEFFBlobNotFoundThe + specified blob does not exist.\r\nRequestId:2f981509-f01e-005a-6505-d093d3000000\r\nTime:2025-05-28T19:20:11.8122083Z)\r\n- + [Linux arm64](https://get.helm.sh/helm-v3.18.1-linux-arm64.tar.gz) ([checksum](https://get.helm.sh/helm-v3.18.1-linux-arm64.tar.gz.sha256sum) + / \uFEFFBlobNotFoundThe + specified blob does not exist.\r\nRequestId:b3650821-501e-0043-4705-d01368000000\r\nTime:2025-05-28T19:20:13.2709106Z)\r\n- + [Linux i386](https://get.helm.sh/helm-v3.18.1-linux-386.tar.gz) ([checksum](https://get.helm.sh/helm-v3.18.1-linux-386.tar.gz.sha256sum) + / \uFEFFBlobNotFoundThe + specified blob does not exist.\r\nRequestId:5ed8caa4-501e-0053-1405-d0d600000000\r\nTime:2025-05-28T19:20:10.2914063Z)\r\n- + [Linux ppc64le](https://get.helm.sh/helm-v3.18.1-linux-ppc64le.tar.gz) + ([checksum](https://get.helm.sh/helm-v3.18.1-linux-ppc64le.tar.gz.sha256sum) + / \uFEFFBlobNotFoundThe + specified blob does not exist.\r\nRequestId:56ba38e6-601e-0067-2f05-d0e5c8000000\r\nTime:2025-05-28T19:20:14.8541300Z)\r\n- + [Linux s390x](https://get.helm.sh/helm-v3.18.1-linux-s390x.tar.gz) ([checksum](https://get.helm.sh/helm-v3.18.1-linux-s390x.tar.gz.sha256sum) + / \uFEFFBlobNotFoundThe + specified blob does not exist.\r\nRequestId:be1aaddc-e01e-0034-0305-d0c6fc000000\r\nTime:2025-05-28T19:20:16.2794423Z)\r\n- + [Linux riscv64](https://get.helm.sh/helm-v3.18.1-linux-riscv64.tar.gz) + ([checksum](https://get.helm.sh/helm-v3.18.1-linux-riscv64.tar.gz.sha256sum) + / \uFEFFBlobNotFoundThe + specified blob does not exist.\r\nRequestId:a677f8be-001e-0061-2505-d0d677000000\r\nTime:2025-05-28T19:20:18.0550305Z)\r\n- + [Windows amd64](https://get.helm.sh/helm-v3.18.1-windows-amd64.zip) ([checksum](https://get.helm.sh/helm-v3.18.1-windows-amd64.zip.sha256sum) + / \uFEFFBlobNotFoundThe + specified blob does not exist.\r\nRequestId:3626c97e-601e-0005-5805-d027ef000000\r\nTime:2025-05-28T19:20:19.5433518Z)\r\n- + [Windows arm64](https://get.helm.sh/helm-v3.18.1-windows-arm64.zip) ([checksum](https://get.helm.sh/helm-v3.18.1-windows-arm64.zip.sha256sum) + / \uFEFFBlobNotFoundThe + specified blob does not exist.\r\nRequestId:5ed92440-501e-0053-5705-d0d600000000\r\nTime:2025-05-28T19:20:20.7596381Z)\r\n\r\nThe + [Quickstart Guide](https://helm.sh/docs/intro/quickstart/) will get you + going from there. For **upgrade instructions** or detailed installation + notes, check the [install guide](https://helm.sh/docs/intro/install/). + You can also use a [script to install](https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3) + on any system with `bash`.\r\n\r\n## What's Next\r\n\r\n- 3.18.2 will + contain only bug fixes.\r\n- 3.19.0 on September 11th, 2025 is the next + feature release. \r\n\r\n## Changelog\r\n\r\n- fix(client): skipnode utilization + for PreCopy f6f8700a539c18101509434f3b59e6a21402a1b2 (Brandt Keller)\r\n- + fix(client): layers now returns manifest - remove duplicate from descriptors + 4da701593f8c8a137fc36a95f9e9ecfe1d01528f (Brandt Keller)\r\n- fix(client): + return nil on non-allowed media types 1a8507fd5ad910f466accfd1c784ed0c333c343a + (Brandt Keller)\r\n- Prevent fetching newReference again as we have in + calling method 015531ca4f386a6fee6c9f48eae63124d19c76a7 (Benoit Tigeot)\r\n- + Prevent failure when resolving version tags in oras memory store 9db1a120f9f7404044cc4619ea7379b430004e36 + (Benoit Tigeot)\r\n- Update pkg/plugin/plugin.go e8bfa0eed689ee822c6ba9b4bcae45ecdb36b671 + (Benoit Tigeot)\r\n- Update pkg/plugin/plugin.go 24b44902a266f911617105273d4afd16f25f4aaf + (Benoit Tigeot)\r\n- Wait for Helm v4 before raising when platformCommand + and Command are set 7e8f53421a184125cf988814206237ce01d95139 (Benoit Tigeot)\r\n- + Fix 3.18.0 regression: registry login with scheme ea04cea48bf2b312e506ae03c412c6fd95929c5c + (Scott Rigby)\r\n- Revert \"fix (helm) : toToml` renders int as float + [ backport to v3 ]\" bec66098fdb4ac37298f46701a2d5b28e5776b72 (Matt Farina)\r\n\r\n" + created_at: "2025-05-28T19:13:59Z" + draft: false + html_url: https://github.com/helm/helm/releases/tag/v3.18.1 + id: 221651277 + name: Helm v3.18.1 + node_id: RE_kwDOApspmc4NNiFN + prerelease: false + published_at: "2025-05-28T19:25:31Z" + tag_name: v3.18.1 + tarball_url: https://api.github.com/repos/helm/helm/tarball/v3.18.1 + target_commitish: dev-v3 + upload_url: https://uploads.github.com/repos/helm/helm/releases/221651277/assets{?name,label} + url: https://api.github.com/repos/helm/helm/releases/221651277 + zipball_url: https://api.github.com/repos/helm/helm/zipball/v3.18.1 + 3.18.2: + githubRelease: + assets: + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.2/helm-v3.18.2-darwin-amd64.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2025-06-02T13:41:11Z" + digest: sha256:75268a6cf3074ecfa8b83b7cfab231d509a1f5f1aaeec6d0bf8047e771ab3a00 + download_count: 2 + id: 260232958 + label: null + name: helm-v3.18.2-darwin-amd64.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4Pgtb- + size: 833 + state: uploaded + updated_at: "2025-06-02T13:41:12Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/260232958 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.2/helm-v3.18.2-darwin-amd64.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2025-06-02T13:41:12Z" + digest: sha256:20ec003528dd9f7f21bfd200dcda4c8f39847eb7bd0394b91fe14538a75ffc7a + download_count: 2 + id: 260232960 + label: null + name: helm-v3.18.2-darwin-amd64.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4PgtcA + size: 833 + state: uploaded + updated_at: "2025-06-02T13:41:12Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/260232960 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.2/helm-v3.18.2-darwin-arm64.tar.gz.asc + content_type: application/octet-stream + created_at: "2025-06-02T13:41:12Z" + digest: sha256:bd8b88c46fc384f92297da46739315774dec1ca6707f7ed01932b2f001fb3c07 + download_count: 1 + id: 260232961 + label: null + name: helm-v3.18.2-darwin-arm64.tar.gz.asc + node_id: RA_kwDOApspmc4PgtcB + size: 833 + state: uploaded + updated_at: "2025-06-02T13:41:12Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/260232961 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.2/helm-v3.18.2-darwin-arm64.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2025-06-02T13:41:12Z" + digest: sha256:803c299711b9fbb85042b5f3c62e99901e474e731ec74fa5f131ff36032e8342 + download_count: 2 + id: 260232963 + label: null + name: helm-v3.18.2-darwin-arm64.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4PgtcD + size: 833 + state: uploaded + updated_at: "2025-06-02T13:41:13Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/260232963 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.2/helm-v3.18.2-darwin-arm64.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2025-06-02T13:41:13Z" + digest: sha256:f006690e04dc3d059294ee06a13111f7a0494c8a888b9950b7400dd82302e3d7 + download_count: 2 + id: 260232964 + label: null + name: helm-v3.18.2-darwin-arm64.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4PgtcE + size: 833 + state: uploaded + updated_at: "2025-06-02T13:41:13Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/260232964 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.2/helm-v3.18.2-linux-386.tar.gz.asc + content_type: application/octet-stream + created_at: "2025-06-02T13:41:13Z" + digest: sha256:83cc416d2c018bd15b0414a7b094fc4e1e97cef4df6d98473e85513966cb59b0 + download_count: 1 + id: 260232966 + label: null + name: helm-v3.18.2-linux-386.tar.gz.asc + node_id: RA_kwDOApspmc4PgtcG + size: 833 + state: uploaded + updated_at: "2025-06-02T13:41:13Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/260232966 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.2/helm-v3.18.2-linux-386.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2025-06-02T13:41:13Z" + digest: sha256:c33dbd2d83fd5d94d26674d4aebef75d4ccaa1899425a4ed552a46b0bdaf13da + download_count: 2 + id: 260232967 + label: null + name: helm-v3.18.2-linux-386.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4PgtcH + size: 833 + state: uploaded + updated_at: "2025-06-02T13:41:13Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/260232967 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.2/helm-v3.18.2-linux-386.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2025-06-02T13:41:13Z" + digest: sha256:19820274290eba817d9b7d9fdeda5f096206d0a98d77b3ea94c1db77de51128e + download_count: 2 + id: 260232969 + label: null + name: helm-v3.18.2-linux-386.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4PgtcJ + size: 833 + state: uploaded + updated_at: "2025-06-02T13:41:13Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/260232969 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.2/helm-v3.18.2-linux-amd64.tar.gz.asc + content_type: application/octet-stream + created_at: "2025-06-02T13:41:13Z" + digest: sha256:f70b839d7b369de45c0c8c7e10b4429e7ec23e266d4fefa26cc64a2dfb8667b9 + download_count: 22 + id: 260232970 + label: null + name: helm-v3.18.2-linux-amd64.tar.gz.asc + node_id: RA_kwDOApspmc4PgtcK + size: 833 + state: uploaded + updated_at: "2025-06-02T13:41:14Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/260232970 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.2/helm-v3.18.2-linux-amd64.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2025-06-02T13:41:14Z" + digest: sha256:042bec9118a1e465143102cf5e233568e07976acf020ec84b0e5dfe6efdc2925 + download_count: 23 + id: 260232971 + label: null + name: helm-v3.18.2-linux-amd64.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4PgtcL + size: 833 + state: uploaded + updated_at: "2025-06-02T13:41:14Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/260232971 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.2/helm-v3.18.2-linux-amd64.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2025-06-02T13:41:14Z" + digest: sha256:781905db2ea5ee2798536df12ae1eb8c196bb2210887f3f1b0a2dfa4be629a00 + download_count: 2 + id: 260232973 + label: null + name: helm-v3.18.2-linux-amd64.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4PgtcN + size: 833 + state: uploaded + updated_at: "2025-06-02T13:41:14Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/260232973 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.2/helm-v3.18.2-linux-arm.tar.gz.asc + content_type: application/octet-stream + created_at: "2025-06-02T13:41:14Z" + digest: sha256:9a878578f4617f8fb9563d7e9b5e9cc89374a2189ae24a41d37be522aff0ac2d + download_count: 1 + id: 260232974 + label: null + name: helm-v3.18.2-linux-arm.tar.gz.asc + node_id: RA_kwDOApspmc4PgtcO + size: 833 + state: uploaded + updated_at: "2025-06-02T13:41:14Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/260232974 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.2/helm-v3.18.2-linux-arm.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2025-06-02T13:41:14Z" + digest: sha256:1811ccfcd6b9cad51c640dbb0faa37a2ab9a25fc018380a110b0480bb890b401 + download_count: 2 + id: 260232975 + label: null + name: helm-v3.18.2-linux-arm.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4PgtcP + size: 833 + state: uploaded + updated_at: "2025-06-02T13:41:14Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/260232975 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.2/helm-v3.18.2-linux-arm.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2025-06-02T13:41:14Z" + digest: sha256:be9456cf0df6ad4f8860ad8453f4c9eb1ddbdf03b4444f440d245ce30fe09ab9 + download_count: 2 + id: 260232976 + label: null + name: helm-v3.18.2-linux-arm.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4PgtcQ + size: 833 + state: uploaded + updated_at: "2025-06-02T13:41:14Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/260232976 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.2/helm-v3.18.2-linux-arm64.tar.gz.asc + content_type: application/octet-stream + created_at: "2025-06-02T13:41:14Z" + digest: sha256:fd4697116b8d986f8bc9d795d09103c15a507446634007e6c2cd987d10dbda90 + download_count: 7 + id: 260232982 + label: null + name: helm-v3.18.2-linux-arm64.tar.gz.asc + node_id: RA_kwDOApspmc4PgtcW + size: 833 + state: uploaded + updated_at: "2025-06-02T13:41:15Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/260232982 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.2/helm-v3.18.2-linux-arm64.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2025-06-02T13:41:15Z" + digest: sha256:7034ef20c9acf40e54bc286cf0c2c380a1f4465358e97d3884127276a66356dd + download_count: 8 + id: 260232983 + label: null + name: helm-v3.18.2-linux-arm64.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4PgtcX + size: 833 + state: uploaded + updated_at: "2025-06-02T13:41:15Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/260232983 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.2/helm-v3.18.2-linux-arm64.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2025-06-02T13:41:15Z" + digest: sha256:4b14aa0686b66b6434f6080b3adc44472d99434c2aa685e49ca8e814de841ee3 + download_count: 2 + id: 260232985 + label: null + name: helm-v3.18.2-linux-arm64.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4PgtcZ + size: 833 + state: uploaded + updated_at: "2025-06-02T13:41:15Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/260232985 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.2/helm-v3.18.2-linux-ppc64le.tar.gz.asc + content_type: application/octet-stream + created_at: "2025-06-02T13:41:15Z" + digest: sha256:4db55ee7e7e5d89e2ce92ac88da587e9c82e0d8534caca05bc236e83f879805f + download_count: 1 + id: 260232987 + label: null + name: helm-v3.18.2-linux-ppc64le.tar.gz.asc + node_id: RA_kwDOApspmc4Pgtcb + size: 833 + state: uploaded + updated_at: "2025-06-02T13:41:15Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/260232987 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.2/helm-v3.18.2-linux-ppc64le.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2025-06-02T13:41:15Z" + digest: sha256:31f666f85b6e2a5598cd22b8b4e1ee036f966a29da5345a33d1bcb2457f30361 + download_count: 2 + id: 260232988 + label: null + name: helm-v3.18.2-linux-ppc64le.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4Pgtcc + size: 833 + state: uploaded + updated_at: "2025-06-02T13:41:15Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/260232988 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.2/helm-v3.18.2-linux-ppc64le.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2025-06-02T13:41:15Z" + digest: sha256:6a8979487e76f616ca0a988161bc069214d0e9754e6a7ebad05721e5a45302a0 + download_count: 2 + id: 260232990 + label: null + name: helm-v3.18.2-linux-ppc64le.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4Pgtce + size: 833 + state: uploaded + updated_at: "2025-06-02T13:41:15Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/260232990 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.2/helm-v3.18.2-linux-riscv64.tar.gz.asc + content_type: application/octet-stream + created_at: "2025-06-02T13:41:15Z" + digest: sha256:653cbc585c048e954a7bc36439de9df84349b6730b128955031b89985133adde + download_count: 1 + id: 260232992 + label: null + name: helm-v3.18.2-linux-riscv64.tar.gz.asc + node_id: RA_kwDOApspmc4Pgtcg + size: 833 + state: uploaded + updated_at: "2025-06-02T13:41:16Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/260232992 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.2/helm-v3.18.2-linux-riscv64.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2025-06-02T13:41:16Z" + digest: sha256:2da39541b201288b8d1a1493a2d50520e0efc08b581bdb4732b6da75c5ed58e7 + download_count: 2 + id: 260232993 + label: null + name: helm-v3.18.2-linux-riscv64.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4Pgtch + size: 833 + state: uploaded + updated_at: "2025-06-02T13:41:16Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/260232993 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.2/helm-v3.18.2-linux-riscv64.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2025-06-02T13:41:16Z" + digest: sha256:6c543438af596483ae828e8e97926fd6418541f76c827e00be62080e555fccc3 + download_count: 2 + id: 260232995 + label: null + name: helm-v3.18.2-linux-riscv64.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4Pgtcj + size: 833 + state: uploaded + updated_at: "2025-06-02T13:41:16Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/260232995 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.2/helm-v3.18.2-linux-s390x.tar.gz.asc + content_type: application/octet-stream + created_at: "2025-06-02T13:41:16Z" + digest: sha256:d120766f6edc0bd2f548a1c60262e42ba4026f7244ab95c9e71e3e29eb37d35f + download_count: 1 + id: 260232997 + label: null + name: helm-v3.18.2-linux-s390x.tar.gz.asc + node_id: RA_kwDOApspmc4Pgtcl + size: 833 + state: uploaded + updated_at: "2025-06-02T13:41:16Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/260232997 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.2/helm-v3.18.2-linux-s390x.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2025-06-02T13:41:16Z" + digest: sha256:e626512e71d347f5b4f99f147ed6a73b2e5430db975ae0b605af10e96026da16 + download_count: 2 + id: 260232998 + label: null + name: helm-v3.18.2-linux-s390x.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4Pgtcm + size: 833 + state: uploaded + updated_at: "2025-06-02T13:41:16Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/260232998 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.2/helm-v3.18.2-linux-s390x.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2025-06-02T13:41:16Z" + digest: sha256:e55b83f59f1b8a737eb654de55c061703490fcc413803d7a49c862400346375b + download_count: 2 + id: 260233000 + label: null + name: helm-v3.18.2-linux-s390x.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4Pgtco + size: 833 + state: uploaded + updated_at: "2025-06-02T13:41:17Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/260233000 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.2/helm-v3.18.2-windows-amd64.zip.asc + content_type: application/octet-stream + created_at: "2025-06-02T13:41:17Z" + digest: sha256:f558e0a60f9829ae1d7373ae82af5f4ff10eb69f3cfbdf8b8f19d27143edcb37 + download_count: 1 + id: 260233002 + label: null + name: helm-v3.18.2-windows-amd64.zip.asc + node_id: RA_kwDOApspmc4Pgtcq + size: 833 + state: uploaded + updated_at: "2025-06-02T13:41:17Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/260233002 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.2/helm-v3.18.2-windows-amd64.zip.sha256.asc + content_type: application/octet-stream + created_at: "2025-06-02T13:41:17Z" + digest: sha256:6d55e680a29626d3a3fd7f45a74ce01e5a381474e0ce699e89bf6ccb85fcc6ba + download_count: 2 + id: 260233003 + label: null + name: helm-v3.18.2-windows-amd64.zip.sha256.asc + node_id: RA_kwDOApspmc4Pgtcr + size: 833 + state: uploaded + updated_at: "2025-06-02T13:41:17Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/260233003 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.2/helm-v3.18.2-windows-amd64.zip.sha256sum.asc + content_type: application/octet-stream + created_at: "2025-06-02T13:41:17Z" + digest: sha256:3906984576cc86863e6bdd5d8507940d9496fb1fd124007c1eb23e198246ebb8 + download_count: 2 + id: 260233004 + label: null + name: helm-v3.18.2-windows-amd64.zip.sha256sum.asc + node_id: RA_kwDOApspmc4Pgtcs + size: 833 + state: uploaded + updated_at: "2025-06-02T13:41:17Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/260233004 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.2/helm-v3.18.2-windows-arm64.zip.asc + content_type: application/octet-stream + created_at: "2025-06-02T13:41:17Z" + digest: sha256:7c93741d5435cd8b81c9066eea405e49e3687f41aabcbe15e5b3b2e15f612802 + download_count: 1 + id: 260233005 + label: null + name: helm-v3.18.2-windows-arm64.zip.asc + node_id: RA_kwDOApspmc4Pgtct + size: 833 + state: uploaded + updated_at: "2025-06-02T13:41:17Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/260233005 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.2/helm-v3.18.2-windows-arm64.zip.sha256.asc + content_type: application/octet-stream + created_at: "2025-06-02T13:41:17Z" + digest: sha256:ae5c5fdea8aade88a2a625b97b11972cdc4a11234f98767ef1bff45b2109e70d + download_count: 2 + id: 260233006 + label: null + name: helm-v3.18.2-windows-arm64.zip.sha256.asc + node_id: RA_kwDOApspmc4Pgtcu + size: 833 + state: uploaded + updated_at: "2025-06-02T13:41:17Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/260233006 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.2/helm-v3.18.2-windows-arm64.zip.sha256sum.asc + content_type: application/octet-stream + created_at: "2025-06-02T13:41:17Z" + digest: sha256:627a4aa34c14c3445657e40b76798963415d53a9e59e69c3866e1852301b9c6c + download_count: 2 + id: 260233007 + label: null + name: helm-v3.18.2-windows-arm64.zip.sha256sum.asc + node_id: RA_kwDOApspmc4Pgtcv + size: 833 + state: uploaded + updated_at: "2025-06-02T13:41:18Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/260233007 + assets_url: https://api.github.com/repos/helm/helm/releases/222443571/assets + author: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + body: "Helm v3.18.2 is a patch release. Users are encouraged to upgrade + for the best experience. Users are encouraged to upgrade for the best + experience.\r\n\r\nThe community keeps growing, and we'd love to see you + there!\r\n\r\n- Join the discussion in [Kubernetes Slack](https://kubernetes.slack.com):\r\n + \ - for questions and just to hang out\r\n - for discussing PRs, code, + and bugs\r\n- Hang out at the Public Developer Call: Thursday, 9:30 Pacific + via [Zoom](https://zoom.us/j/696660622)\r\n- Test, debug, and contribute + charts: [ArtifactHub/packages](https://artifacthub.io/packages/search?kind=0)\r\n\r\n## + Installation and Upgrading\r\n\r\nDownload Helm v3.18.2. The common platform + binaries are here:\r\n\r\n- [MacOS amd64](https://get.helm.sh/helm-v3.18.2-darwin-amd64.tar.gz) + ([checksum](https://get.helm.sh/helm-v3.18.2-darwin-amd64.tar.gz.sha256sum) + / 8bfc850d4451dccecb01c73bdc844cb1b3ed2f1b90a89fc47e7b1670e1f369ec)\r\n- + [MacOS arm64](https://get.helm.sh/helm-v3.18.2-darwin-arm64.tar.gz) ([checksum](https://get.helm.sh/helm-v3.18.2-darwin-arm64.tar.gz.sha256sum) + / d82a30d654862668ae1e58dbbba5ea6ed5f84312da59666ef628bf73b2188d39)\r\n- + [Linux amd64](https://get.helm.sh/helm-v3.18.2-linux-amd64.tar.gz) ([checksum](https://get.helm.sh/helm-v3.18.2-linux-amd64.tar.gz.sha256sum) + / c5deada86fe609deefdf40e9cbbe3da2f8cf3f6a4551a0ebe7886dc8fcf98bce)\r\n- + [Linux arm](https://get.helm.sh/helm-v3.18.2-linux-arm.tar.gz) ([checksum](https://get.helm.sh/helm-v3.18.2-linux-arm.tar.gz.sha256sum) + / a848c9db5e51f7cc4975bcfbba415c30cdfb67e141b6efc0e8b3a66cd89e8607)\r\n- + [Linux arm64](https://get.helm.sh/helm-v3.18.2-linux-arm64.tar.gz) ([checksum](https://get.helm.sh/helm-v3.18.2-linux-arm64.tar.gz.sha256sum) + / 03181a494a0916b370a100a5b2536104963b095be53fb23d1e29b2afb1c7de8d)\r\n- + [Linux i386](https://get.helm.sh/helm-v3.18.2-linux-386.tar.gz) ([checksum](https://get.helm.sh/helm-v3.18.2-linux-386.tar.gz.sha256sum) + / dae13caca7a24d0adff3f59183a269275522964d75c1e4cbdb0ffaddc659e7bc)\r\n- + [Linux ppc64le](https://get.helm.sh/helm-v3.18.2-linux-ppc64le.tar.gz) + ([checksum](https://get.helm.sh/helm-v3.18.2-linux-ppc64le.tar.gz.sha256sum) + / 1d21b2acdd79a13d20585b61fe90bababdd3f7047530d66aad650869c772b5c3)\r\n- + [Linux s390x](https://get.helm.sh/helm-v3.18.2-linux-s390x.tar.gz) ([checksum](https://get.helm.sh/helm-v3.18.2-linux-s390x.tar.gz.sha256sum) + / 382920a48a0800cf2bb67bf6ab403aab15f7631b369bed9df9bdcfdd5ebd5ae9)\r\n- + [Linux riscv64](https://get.helm.sh/helm-v3.18.2-linux-riscv64.tar.gz) + ([checksum](https://get.helm.sh/helm-v3.18.2-linux-riscv64.tar.gz.sha256sum) + / d702db0191e6a4091d631760aded83f809d8d7edf962d5252f1ea46804183ebf)\r\n- + [Windows amd64](https://get.helm.sh/helm-v3.18.2-windows-amd64.zip) ([checksum](https://get.helm.sh/helm-v3.18.2-windows-amd64.zip.sha256sum) + / 49fc2d74a351974ebf544f8252a4e43d7e5f9e0137472415393178c2d3996e9f)\r\n- + [Windows arm64](https://get.helm.sh/helm-v3.18.2-windows-arm64.zip) ([checksum](https://get.helm.sh/helm-v3.18.2-windows-arm64.zip.sha256sum) + / 6ecdf10aa6f356ebb841d1732225437100e65fdb90f99170e1b2e5726e4fd10d)\r\n\r\nThis + release was signed with `672C 657B E06B 4B30 969C 4A57 4614 49C2 5E36 + B98E ` and can be found at @mattfarina [keybase account](https://keybase.io/mattfarina). + Please use the attached signatures for verifying this release using `gpg`.\r\n\r\nThe + [Quickstart Guide](https://helm.sh/docs/intro/quickstart/) will get you + going from there. For **upgrade instructions** or detailed installation + notes, check the [install guide](https://helm.sh/docs/intro/install/). + You can also use a [script to install](https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3) + on any system with `bash`.\r\n\r\n## What's Next\r\n\r\n- 3.17.3 is the + next patch release and will be on July 09, 2025\r\n- 3.18.0 is the next + minor release and will be on September 11, 2025\r\n\r\n## Changelog\r\n\r\n- + fix: legacy docker support broken for login 04cad4610054e5d546aa5c5d9c1b1d5cf68ec1f8 + (Terry Howe)\r\n- Handle an empty registry config file. bc9f8a2d8baad5a54f7b421275f44c04117eb5cb + (Matt Farina)\r\n" + created_at: "2025-06-02T12:49:39Z" + draft: false + html_url: https://github.com/helm/helm/releases/tag/v3.18.2 + id: 222443571 + mentions_count: 1 + name: Helm 3.18.2 + node_id: RE_kwDOApspmc4NQjgz + prerelease: false + published_at: "2025-06-02T13:41:33Z" + tag_name: v3.18.2 + tarball_url: https://api.github.com/repos/helm/helm/tarball/v3.18.2 + target_commitish: main + upload_url: https://uploads.github.com/repos/helm/helm/releases/222443571/assets{?name,label} + url: https://api.github.com/repos/helm/helm/releases/222443571 + zipball_url: https://api.github.com/repos/helm/helm/zipball/v3.18.2 + 3.18.3: + githubRelease: + assets: + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.3/helm-v3.18.3-darwin-amd64.tar.gz.asc + content_type: application/octet-stream + created_at: "2025-06-16T19:30:40Z" + digest: sha256:4a87e3a751bcf1812ec219dc00260da4a33dd73ad7fa04957a02b6166c8b6ca5 + download_count: 2 + id: 264501874 + label: null + name: helm-v3.18.3-darwin-amd64.tar.gz.asc + node_id: RA_kwDOApspmc4Pw_py + size: 833 + state: uploaded + updated_at: "2025-06-16T19:30:41Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/264501874 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.3/helm-v3.18.3-darwin-amd64.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2025-06-16T19:30:41Z" + digest: sha256:c24dc92cbbee3bfa1b9a4ac1e7d431277810f56a84e71828c6013b4b49938cfe + download_count: 3 + id: 264501877 + label: null + name: helm-v3.18.3-darwin-amd64.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4Pw_p1 + size: 833 + state: uploaded + updated_at: "2025-06-16T19:30:41Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/264501877 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.3/helm-v3.18.3-darwin-amd64.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2025-06-16T19:30:41Z" + digest: sha256:56464b2e82416eb0e08bc3c5f58e0d78c924b731fcca65e1a1cc679410234e54 + download_count: 3 + id: 264501878 + label: null + name: helm-v3.18.3-darwin-amd64.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4Pw_p2 + size: 833 + state: uploaded + updated_at: "2025-06-16T19:30:41Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/264501878 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.3/helm-v3.18.3-darwin-arm64.tar.gz.asc + content_type: application/octet-stream + created_at: "2025-06-16T19:30:41Z" + digest: sha256:da0635b93244f0dbd326b97aae9a321710ee0d392996f67f4f141140b6827807 + download_count: 2 + id: 264501879 + label: null + name: helm-v3.18.3-darwin-arm64.tar.gz.asc + node_id: RA_kwDOApspmc4Pw_p3 + size: 833 + state: uploaded + updated_at: "2025-06-16T19:30:41Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/264501879 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.3/helm-v3.18.3-darwin-arm64.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2025-06-16T19:30:41Z" + digest: sha256:9b5587a3b97e99a3f88aa6a347f7e0a608143bc51859fb9f2caf3be63fe6258f + download_count: 3 + id: 264501881 + label: null + name: helm-v3.18.3-darwin-arm64.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4Pw_p5 + size: 833 + state: uploaded + updated_at: "2025-06-16T19:30:41Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/264501881 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.3/helm-v3.18.3-darwin-arm64.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2025-06-16T19:30:41Z" + digest: sha256:8650d0c9d0c49927de8397a65fda5c49ad7cdde168a16fa89cbc321a19b358bc + download_count: 3 + id: 264501882 + label: null + name: helm-v3.18.3-darwin-arm64.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4Pw_p6 + size: 833 + state: uploaded + updated_at: "2025-06-16T19:30:42Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/264501882 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.3/helm-v3.18.3-linux-386.tar.gz.asc + content_type: application/octet-stream + created_at: "2025-06-16T19:30:42Z" + digest: sha256:ce2be30c2e764c7f1e612c652bdba96957f16f25a5ceab8008cb80e4bc2803ac + download_count: 2 + id: 264501883 + label: null + name: helm-v3.18.3-linux-386.tar.gz.asc + node_id: RA_kwDOApspmc4Pw_p7 + size: 833 + state: uploaded + updated_at: "2025-06-16T19:30:42Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/264501883 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.3/helm-v3.18.3-linux-386.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2025-06-16T19:30:42Z" + digest: sha256:f5b5b8328d88fe8aaa48f9b21a9f00452ffcbce9001eab5c367df2c6d39757c7 + download_count: 3 + id: 264501886 + label: null + name: helm-v3.18.3-linux-386.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4Pw_p- + size: 833 + state: uploaded + updated_at: "2025-06-16T19:30:42Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/264501886 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.3/helm-v3.18.3-linux-386.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2025-06-16T19:30:42Z" + digest: sha256:fc01de37d6489b52ec5d7b957405acfec7db8c30cb04ee74e0b5c61879e6e536 + download_count: 3 + id: 264501887 + label: null + name: helm-v3.18.3-linux-386.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4Pw_p_ + size: 833 + state: uploaded + updated_at: "2025-06-16T19:30:42Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/264501887 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.3/helm-v3.18.3-linux-amd64.tar.gz.asc + content_type: application/octet-stream + created_at: "2025-06-16T19:30:42Z" + digest: sha256:28e348aac3c2efdfe51f7af35f35d9ce440b3313ded25a883cef7c52b3bc24a0 + download_count: 9 + id: 264501889 + label: null + name: helm-v3.18.3-linux-amd64.tar.gz.asc + node_id: RA_kwDOApspmc4Pw_qB + size: 833 + state: uploaded + updated_at: "2025-06-16T19:30:42Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/264501889 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.3/helm-v3.18.3-linux-amd64.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2025-06-16T19:30:42Z" + digest: sha256:69c1d20437c32eb9a1e8cde4213f14a61d8eb33d83a4cfec81334b51a803f219 + download_count: 9 + id: 264501890 + label: null + name: helm-v3.18.3-linux-amd64.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4Pw_qC + size: 833 + state: uploaded + updated_at: "2025-06-16T19:30:43Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/264501890 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.3/helm-v3.18.3-linux-amd64.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2025-06-16T19:30:42Z" + digest: sha256:dac79f51b0b78cca6bc836d839aa0d6162ce494b8f8f4fc471565ccb6ad6dea4 + download_count: 3 + id: 264501891 + label: null + name: helm-v3.18.3-linux-amd64.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4Pw_qD + size: 833 + state: uploaded + updated_at: "2025-06-16T19:30:43Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/264501891 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.3/helm-v3.18.3-linux-arm.tar.gz.asc + content_type: application/octet-stream + created_at: "2025-06-16T19:30:43Z" + digest: sha256:43ea8de1174ee14626836fb7dbd16ed0fc2ce13aa9f1b1acf73aea9917dba5f7 + download_count: 2 + id: 264501892 + label: null + name: helm-v3.18.3-linux-arm.tar.gz.asc + node_id: RA_kwDOApspmc4Pw_qE + size: 833 + state: uploaded + updated_at: "2025-06-16T19:30:43Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/264501892 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.3/helm-v3.18.3-linux-arm.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2025-06-16T19:30:43Z" + digest: sha256:6f45c2b71c704ee57f8e7e015949e27a2fdb98519cf6198effdd43d9f467bc41 + download_count: 3 + id: 264501893 + label: null + name: helm-v3.18.3-linux-arm.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4Pw_qF + size: 833 + state: uploaded + updated_at: "2025-06-16T19:30:43Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/264501893 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.3/helm-v3.18.3-linux-arm.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2025-06-16T19:30:43Z" + digest: sha256:199d61956f89bd60b693a5ca8d99c117597313e7c8a9dc8d36d45c20e49535b5 + download_count: 3 + id: 264501894 + label: null + name: helm-v3.18.3-linux-arm.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4Pw_qG + size: 833 + state: uploaded + updated_at: "2025-06-16T19:30:43Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/264501894 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.3/helm-v3.18.3-linux-arm64.tar.gz.asc + content_type: application/octet-stream + created_at: "2025-06-16T19:30:43Z" + digest: sha256:7fd9f3c199d7098480017bec2150390d7ccd6de3350f6658b79e46b957070097 + download_count: 4 + id: 264501895 + label: null + name: helm-v3.18.3-linux-arm64.tar.gz.asc + node_id: RA_kwDOApspmc4Pw_qH + size: 833 + state: uploaded + updated_at: "2025-06-16T19:30:43Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/264501895 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.3/helm-v3.18.3-linux-arm64.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2025-06-16T19:30:43Z" + digest: sha256:80539a4a6f550183c33cc5dd0df93379121d2c45de8e8ae79a341ec08894399d + download_count: 5 + id: 264501896 + label: null + name: helm-v3.18.3-linux-arm64.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4Pw_qI + size: 833 + state: uploaded + updated_at: "2025-06-16T19:30:44Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/264501896 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.3/helm-v3.18.3-linux-arm64.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2025-06-16T19:30:44Z" + digest: sha256:3021e85a8d7ef48c9d043affb55eb7d2e83964acf51f9f777920f7cedc5719f0 + download_count: 3 + id: 264501897 + label: null + name: helm-v3.18.3-linux-arm64.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4Pw_qJ + size: 833 + state: uploaded + updated_at: "2025-06-16T19:30:44Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/264501897 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.3/helm-v3.18.3-linux-ppc64le.tar.gz.asc + content_type: application/octet-stream + created_at: "2025-06-16T19:30:44Z" + digest: sha256:d7647aa0ca1c15836651cd11cf045928d14b597d482a146fc204bdbfe63085d6 + download_count: 2 + id: 264501899 + label: null + name: helm-v3.18.3-linux-ppc64le.tar.gz.asc + node_id: RA_kwDOApspmc4Pw_qL + size: 833 + state: uploaded + updated_at: "2025-06-16T19:30:44Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/264501899 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.3/helm-v3.18.3-linux-ppc64le.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2025-06-16T19:30:44Z" + digest: sha256:d097758f2b6cfeedcf0500b268f4f6fbbfff1dd7f87815949bea69c182bd3e9b + download_count: 3 + id: 264501901 + label: null + name: helm-v3.18.3-linux-ppc64le.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4Pw_qN + size: 833 + state: uploaded + updated_at: "2025-06-16T19:30:44Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/264501901 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.3/helm-v3.18.3-linux-ppc64le.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2025-06-16T19:30:44Z" + digest: sha256:d521e7c03d2a2a4b8e08255edf71e60f455f674cd107f8f42ddca2381f6744ad + download_count: 3 + id: 264501902 + label: null + name: helm-v3.18.3-linux-ppc64le.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4Pw_qO + size: 833 + state: uploaded + updated_at: "2025-06-16T19:30:44Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/264501902 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.3/helm-v3.18.3-linux-riscv64.tar.gz.asc + content_type: application/octet-stream + created_at: "2025-06-16T19:30:44Z" + digest: sha256:2c31b011ef8d220d2bc00720ef73cb0bc7cb7fa9920385989a8da01b6a8fc092 + download_count: 2 + id: 264501904 + label: null + name: helm-v3.18.3-linux-riscv64.tar.gz.asc + node_id: RA_kwDOApspmc4Pw_qQ + size: 833 + state: uploaded + updated_at: "2025-06-16T19:30:45Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/264501904 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.3/helm-v3.18.3-linux-riscv64.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2025-06-16T19:30:45Z" + digest: sha256:05a68fd0aa5d84c921214d0ff661a45be74c2002621e4d48248e9052ed7ef6e1 + download_count: 3 + id: 264501905 + label: null + name: helm-v3.18.3-linux-riscv64.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4Pw_qR + size: 833 + state: uploaded + updated_at: "2025-06-16T19:30:45Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/264501905 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.3/helm-v3.18.3-linux-riscv64.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2025-06-16T19:30:45Z" + digest: sha256:753149dee6f6be3e34b2bc3962b3dac6d64fb6fa709179d12fde06733302bd9a + download_count: 3 + id: 264501908 + label: null + name: helm-v3.18.3-linux-riscv64.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4Pw_qU + size: 833 + state: uploaded + updated_at: "2025-06-16T19:30:45Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/264501908 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.3/helm-v3.18.3-linux-s390x.tar.gz.asc + content_type: application/octet-stream + created_at: "2025-06-16T19:30:45Z" + digest: sha256:d84c235a3c852e36730d308bffcf56bc8a3104c66326b4b5c2a68da277543b64 + download_count: 2 + id: 264501910 + label: null + name: helm-v3.18.3-linux-s390x.tar.gz.asc + node_id: RA_kwDOApspmc4Pw_qW + size: 833 + state: uploaded + updated_at: "2025-06-16T19:30:45Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/264501910 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.3/helm-v3.18.3-linux-s390x.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2025-06-16T19:30:45Z" + digest: sha256:35ee01336feb54f18039d7d450fa530ca48e7f28b04337d88e17a5a280cc4b25 + download_count: 3 + id: 264501913 + label: null + name: helm-v3.18.3-linux-s390x.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4Pw_qZ + size: 833 + state: uploaded + updated_at: "2025-06-16T19:30:45Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/264501913 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.3/helm-v3.18.3-linux-s390x.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2025-06-16T19:30:45Z" + digest: sha256:e9413d7df96277da7220f1ec6579d338717e518b5afa39d06b781da9955f4f3e + download_count: 3 + id: 264501914 + label: null + name: helm-v3.18.3-linux-s390x.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4Pw_qa + size: 833 + state: uploaded + updated_at: "2025-06-16T19:30:45Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/264501914 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.3/helm-v3.18.3-windows-amd64.zip.asc + content_type: application/octet-stream + created_at: "2025-06-16T19:30:45Z" + digest: sha256:8f81c488313e345eb2b6154b022cb542c7ad210057f48acedc09fa9aebaa9822 + download_count: 2 + id: 264501916 + label: null + name: helm-v3.18.3-windows-amd64.zip.asc + node_id: RA_kwDOApspmc4Pw_qc + size: 833 + state: uploaded + updated_at: "2025-06-16T19:30:46Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/264501916 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.3/helm-v3.18.3-windows-amd64.zip.sha256.asc + content_type: application/octet-stream + created_at: "2025-06-16T19:30:46Z" + digest: sha256:a4c3667fab5f58fcce5a5a5c6a5af2e51a5f48cec8806176e830ca499eebe70c + download_count: 3 + id: 264501917 + label: null + name: helm-v3.18.3-windows-amd64.zip.sha256.asc + node_id: RA_kwDOApspmc4Pw_qd + size: 833 + state: uploaded + updated_at: "2025-06-16T19:30:46Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/264501917 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.3/helm-v3.18.3-windows-amd64.zip.sha256sum.asc + content_type: application/octet-stream + created_at: "2025-06-16T19:30:46Z" + digest: sha256:666777910ad335228936b2617c412f1ca7c08e75de713f285a41379be5357eab + download_count: 3 + id: 264501918 + label: null + name: helm-v3.18.3-windows-amd64.zip.sha256sum.asc + node_id: RA_kwDOApspmc4Pw_qe + size: 833 + state: uploaded + updated_at: "2025-06-16T19:30:46Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/264501918 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.3/helm-v3.18.3-windows-arm64.zip.asc + content_type: application/octet-stream + created_at: "2025-06-16T19:30:46Z" + digest: sha256:01c4b34fed73cc416a597e7aadf0dae65afc5943a91df2c65852664984d7dfbc + download_count: 2 + id: 264501919 + label: null + name: helm-v3.18.3-windows-arm64.zip.asc + node_id: RA_kwDOApspmc4Pw_qf + size: 833 + state: uploaded + updated_at: "2025-06-16T19:30:46Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/264501919 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.3/helm-v3.18.3-windows-arm64.zip.sha256.asc + content_type: application/octet-stream + created_at: "2025-06-16T19:30:46Z" + digest: sha256:b176bfcc26b408ed41cc2cf4f4fe737f44cdb9c19dbee9cb3b936fb042e2e762 + download_count: 3 + id: 264501920 + label: null + name: helm-v3.18.3-windows-arm64.zip.sha256.asc + node_id: RA_kwDOApspmc4Pw_qg + size: 833 + state: uploaded + updated_at: "2025-06-16T19:30:46Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/264501920 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.3/helm-v3.18.3-windows-arm64.zip.sha256sum.asc + content_type: application/octet-stream + created_at: "2025-06-16T19:30:46Z" + digest: sha256:b0d9ce19ae97f1ae1260cdd0ae64752075042f8af045df9981ba797476d45723 + download_count: 3 + id: 264501921 + label: null + name: helm-v3.18.3-windows-arm64.zip.sha256sum.asc + node_id: RA_kwDOApspmc4Pw_qh + size: 833 + state: uploaded + updated_at: "2025-06-16T19:30:47Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/264501921 + assets_url: https://api.github.com/repos/helm/helm/releases/225664201/assets + author: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + body: "Helm v3.18.3 is a patch release. Users are encouraged to upgrade + for the best experience. Users are encouraged to upgrade for the best + experience.\r\n\r\nThe community keeps growing, and we'd love to see you + there!\r\n\r\n- Join the discussion in [Kubernetes Slack](https://kubernetes.slack.com):\r\n + \ - for questions and just to hang out\r\n - for discussing PRs, code, + and bugs\r\n- Hang out at the Public Developer Call: Thursday, 9:30 Pacific + via [Zoom](https://zoom.us/j/696660622)\r\n- Test, debug, and contribute + charts: [ArtifactHub/packages](https://artifacthub.io/packages/search?kind=0)\r\n\r\n## + Installation and Upgrading\r\n\r\nDownload Helm v3.18.3. The common platform + binaries are here:\r\n\r\n- [MacOS amd64](https://get.helm.sh/helm-v3.18.3-darwin-amd64.tar.gz) + ([checksum](https://get.helm.sh/helm-v3.18.3-darwin-amd64.tar.gz.sha256sum) + / d186851d40b1999c5d75696bc0b754e4d29e860c8d0cf4c132ac1b1940c5cffc)\r\n- + [MacOS arm64](https://get.helm.sh/helm-v3.18.3-darwin-arm64.tar.gz) ([checksum](https://get.helm.sh/helm-v3.18.3-darwin-arm64.tar.gz.sha256sum) + / 3fe3e9739ab3c75d88bfe13e464a79a2a7a804fc692c3258fa6a9d185d53e377)\r\n- + [Linux amd64](https://get.helm.sh/helm-v3.18.3-linux-amd64.tar.gz) ([checksum](https://get.helm.sh/helm-v3.18.3-linux-amd64.tar.gz.sha256sum) + / 6ec85f306dd8fe9eb05c61ba4593182b2afcfefb52f21add3fe043ebbdc48e39)\r\n- + [Linux arm](https://get.helm.sh/helm-v3.18.3-linux-arm.tar.gz) ([checksum](https://get.helm.sh/helm-v3.18.3-linux-arm.tar.gz.sha256sum) + / 5ec62879f57d6acc0436440c88459d2a5c8de233273e73ff6498d79fd2d92653)\r\n- + [Linux arm64](https://get.helm.sh/helm-v3.18.3-linux-arm64.tar.gz) ([checksum](https://get.helm.sh/helm-v3.18.3-linux-arm64.tar.gz.sha256sum) + / 3382ebdc6d6e027371551a63fc6e0a3073a1aec1061e346692932da61cfd8d24)\r\n- + [Linux i386](https://get.helm.sh/helm-v3.18.3-linux-386.tar.gz) ([checksum](https://get.helm.sh/helm-v3.18.3-linux-386.tar.gz.sha256sum) + / 22d7bad5c6012729e550e09d0b719336ea98c9c7207730456d152f32124609af)\r\n- + [Linux ppc64le](https://get.helm.sh/helm-v3.18.3-linux-ppc64le.tar.gz) + ([checksum](https://get.helm.sh/helm-v3.18.3-linux-ppc64le.tar.gz.sha256sum) + / ca5ab0bb205488276095881f04b72bfed5c0ddb92f715940dde6a7ccae72818c)\r\n- + [Linux s390x](https://get.helm.sh/helm-v3.18.3-linux-s390x.tar.gz) ([checksum](https://get.helm.sh/helm-v3.18.3-linux-s390x.tar.gz.sha256sum) + / be261f040b59c04ad4f1ce6fc2f976e500167475cadb468bf78cb9772300fb5d)\r\n- + [Linux riscv64](https://get.helm.sh/helm-v3.18.3-linux-riscv64.tar.gz) + ([checksum](https://get.helm.sh/helm-v3.18.3-linux-riscv64.tar.gz.sha256sum) + / 1f87dab39ed599af463abba2c8b2d4c625cfcbc2f2010da2c9c47db017b1c2ca)\r\n- + [Windows amd64](https://get.helm.sh/helm-v3.18.3-windows-amd64.zip) ([checksum](https://get.helm.sh/helm-v3.18.3-windows-amd64.zip.sha256sum) + / 4cb9185cd7b84395853c04c84c4524a6b794cab07211cedc2e36839f53d8e26d)\r\n- + [Windows arm64](https://get.helm.sh/helm-v3.18.3-windows-arm64.zip) ([checksum](https://get.helm.sh/helm-v3.18.3-windows-arm64.zip.sha256sum) + / 7e83d901af47ca804d99d2eb679b4622fdfe1b5b06b15550f5a432a0e4591bb8)\r\n\r\nThis + release was signed with `672C 657B E06B 4B30 969C 4A57 4614 49C2 5E36 + B98E ` and can be found at @mattfarina [keybase account](https://keybase.io/mattfarina). + Please use the attached signatures for verifying this release using `gpg`.\r\n\r\nThe + [Quickstart Guide](https://helm.sh/docs/intro/quickstart/) will get you + going from there. For **upgrade instructions** or detailed installation + notes, check the [install guide](https://helm.sh/docs/intro/install/). + You can also use a [script to install](https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3) + on any system with `bash`.\r\n\r\n## What's Next\r\n\r\n- 3.18.4 is the + next patch release and will be on July 09, 2025\r\n- 3.19.0 is the next + minor release and will be on September 11, 2025\r\n\r\n## Changelog\r\n\r\n- + build(deps): bump golang.org/x/crypto from 0.38.0 to 0.39.0 6838ebcf265a3842d1433956e8a622e3290cf324 + (dependabot[bot])\r\n- fix: user username password for login 5b9e2f6b4c4e2c8e21d85dc01fbb9d8a454a1fa9 + (Terry Howe)\r\n- Update pkg/registry/transport.go 278241207306c699aa6da71fe9e5922fa5db1743 + (Terry Howe)\r\n- Update pkg/registry/transport.go e66cf6afdd4d8f92beb80d2026ff663472fd89df + (Terry Howe)\r\n- fix: add debug logging to oci transport 191f05c068a25a80cd206c1256c6b11a63c4068b + (Terry Howe)\r\n" + created_at: "2025-06-16T19:14:08Z" + draft: false + html_url: https://github.com/helm/helm/releases/tag/v3.18.3 + id: 225664201 + mentions_count: 1 + name: Helm 3.18.3 + node_id: RE_kwDOApspmc4Nc1zJ + prerelease: false + published_at: "2025-06-16T19:31:04Z" + tag_name: v3.18.3 + tarball_url: https://api.github.com/repos/helm/helm/tarball/v3.18.3 + target_commitish: main + upload_url: https://uploads.github.com/repos/helm/helm/releases/225664201/assets{?name,label} + url: https://api.github.com/repos/helm/helm/releases/225664201 + zipball_url: https://api.github.com/repos/helm/helm/zipball/v3.18.3 + 3.18.4: + githubRelease: + assets: + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.4/helm-v3.18.4-darwin-amd64.tar.gz.asc + content_type: application/octet-stream + created_at: "2025-07-08T20:49:14Z" + digest: sha256:68db5507c9dc874421aac5ac66630c8ea73bcf951018805cb87ba4342938781f + download_count: 2 + id: 271136719 + label: null + name: helm-v3.18.4-darwin-amd64.tar.gz.asc + node_id: RA_kwDOApspmc4QKTfP + size: 228 + state: uploaded + updated_at: "2025-07-08T20:49:14Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/13884882?v=4 + events_url: https://api.github.com/users/robertsirc/events{/privacy} + followers_url: https://api.github.com/users/robertsirc/followers + following_url: https://api.github.com/users/robertsirc/following{/other_user} + gists_url: https://api.github.com/users/robertsirc/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/robertsirc + id: 13884882 + login: robertsirc + node_id: MDQ6VXNlcjEzODg0ODgy + organizations_url: https://api.github.com/users/robertsirc/orgs + received_events_url: https://api.github.com/users/robertsirc/received_events + repos_url: https://api.github.com/users/robertsirc/repos + site_admin: false + starred_url: https://api.github.com/users/robertsirc/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/robertsirc/subscriptions + type: User + url: https://api.github.com/users/robertsirc + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/271136719 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.4/helm-v3.18.4-darwin-amd64.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2025-07-08T20:49:13Z" + digest: sha256:b9e7539068dd14362cdfd689be53b39415780fc87c7c7204c00768ae3fa2cbf1 + download_count: 3 + id: 271136718 + label: null + name: helm-v3.18.4-darwin-amd64.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4QKTfO + size: 228 + state: uploaded + updated_at: "2025-07-08T20:49:14Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/13884882?v=4 + events_url: https://api.github.com/users/robertsirc/events{/privacy} + followers_url: https://api.github.com/users/robertsirc/followers + following_url: https://api.github.com/users/robertsirc/following{/other_user} + gists_url: https://api.github.com/users/robertsirc/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/robertsirc + id: 13884882 + login: robertsirc + node_id: MDQ6VXNlcjEzODg0ODgy + organizations_url: https://api.github.com/users/robertsirc/orgs + received_events_url: https://api.github.com/users/robertsirc/received_events + repos_url: https://api.github.com/users/robertsirc/repos + site_admin: false + starred_url: https://api.github.com/users/robertsirc/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/robertsirc/subscriptions + type: User + url: https://api.github.com/users/robertsirc + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/271136718 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.4/helm-v3.18.4-darwin-amd64.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2025-07-08T20:49:13Z" + digest: sha256:9e60eb097c7057d1f62c9177dc504ad4db2938365d352a295b02ecaa93264292 + download_count: 3 + id: 271136717 + label: null + name: helm-v3.18.4-darwin-amd64.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4QKTfN + size: 228 + state: uploaded + updated_at: "2025-07-08T20:49:13Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/13884882?v=4 + events_url: https://api.github.com/users/robertsirc/events{/privacy} + followers_url: https://api.github.com/users/robertsirc/followers + following_url: https://api.github.com/users/robertsirc/following{/other_user} + gists_url: https://api.github.com/users/robertsirc/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/robertsirc + id: 13884882 + login: robertsirc + node_id: MDQ6VXNlcjEzODg0ODgy + organizations_url: https://api.github.com/users/robertsirc/orgs + received_events_url: https://api.github.com/users/robertsirc/received_events + repos_url: https://api.github.com/users/robertsirc/repos + site_admin: false + starred_url: https://api.github.com/users/robertsirc/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/robertsirc/subscriptions + type: User + url: https://api.github.com/users/robertsirc + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/271136717 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.4/helm-v3.18.4-darwin-arm64.tar.gz.asc + content_type: application/octet-stream + created_at: "2025-07-08T20:49:13Z" + digest: sha256:01c6490403fb5d3bb6a4ee2e8b21347e15c95239de237886d1cfdd89ad6a97f7 + download_count: 2 + id: 271136715 + label: null + name: helm-v3.18.4-darwin-arm64.tar.gz.asc + node_id: RA_kwDOApspmc4QKTfL + size: 228 + state: uploaded + updated_at: "2025-07-08T20:49:13Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/13884882?v=4 + events_url: https://api.github.com/users/robertsirc/events{/privacy} + followers_url: https://api.github.com/users/robertsirc/followers + following_url: https://api.github.com/users/robertsirc/following{/other_user} + gists_url: https://api.github.com/users/robertsirc/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/robertsirc + id: 13884882 + login: robertsirc + node_id: MDQ6VXNlcjEzODg0ODgy + organizations_url: https://api.github.com/users/robertsirc/orgs + received_events_url: https://api.github.com/users/robertsirc/received_events + repos_url: https://api.github.com/users/robertsirc/repos + site_admin: false + starred_url: https://api.github.com/users/robertsirc/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/robertsirc/subscriptions + type: User + url: https://api.github.com/users/robertsirc + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/271136715 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.4/helm-v3.18.4-darwin-arm64.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2025-07-08T20:49:13Z" + digest: sha256:072b9b0144932ea575370702b48bd943d8e3ce2c15bc17db717e74d0560373fd + download_count: 3 + id: 271136714 + label: null + name: helm-v3.18.4-darwin-arm64.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4QKTfK + size: 228 + state: uploaded + updated_at: "2025-07-08T20:49:13Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/13884882?v=4 + events_url: https://api.github.com/users/robertsirc/events{/privacy} + followers_url: https://api.github.com/users/robertsirc/followers + following_url: https://api.github.com/users/robertsirc/following{/other_user} + gists_url: https://api.github.com/users/robertsirc/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/robertsirc + id: 13884882 + login: robertsirc + node_id: MDQ6VXNlcjEzODg0ODgy + organizations_url: https://api.github.com/users/robertsirc/orgs + received_events_url: https://api.github.com/users/robertsirc/received_events + repos_url: https://api.github.com/users/robertsirc/repos + site_admin: false + starred_url: https://api.github.com/users/robertsirc/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/robertsirc/subscriptions + type: User + url: https://api.github.com/users/robertsirc + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/271136714 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.4/helm-v3.18.4-darwin-arm64.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2025-07-08T20:49:13Z" + digest: sha256:9413d08e069195014815b5b5908f47d1da3bf5dfba2384916134dbe6dafc5f20 + download_count: 3 + id: 271136713 + label: null + name: helm-v3.18.4-darwin-arm64.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4QKTfJ + size: 228 + state: uploaded + updated_at: "2025-07-08T20:49:13Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/13884882?v=4 + events_url: https://api.github.com/users/robertsirc/events{/privacy} + followers_url: https://api.github.com/users/robertsirc/followers + following_url: https://api.github.com/users/robertsirc/following{/other_user} + gists_url: https://api.github.com/users/robertsirc/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/robertsirc + id: 13884882 + login: robertsirc + node_id: MDQ6VXNlcjEzODg0ODgy + organizations_url: https://api.github.com/users/robertsirc/orgs + received_events_url: https://api.github.com/users/robertsirc/received_events + repos_url: https://api.github.com/users/robertsirc/repos + site_admin: false + starred_url: https://api.github.com/users/robertsirc/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/robertsirc/subscriptions + type: User + url: https://api.github.com/users/robertsirc + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/271136713 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.4/helm-v3.18.4-linux-386.tar.gz.asc + content_type: application/octet-stream + created_at: "2025-07-08T20:49:12Z" + digest: sha256:8d57cdfc97b9349430fc5dec6ede8ab21d41c8303a3cabced3cd5a0fc8e2aed2 + download_count: 2 + id: 271136711 + label: null + name: helm-v3.18.4-linux-386.tar.gz.asc + node_id: RA_kwDOApspmc4QKTfH + size: 228 + state: uploaded + updated_at: "2025-07-08T20:49:13Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/13884882?v=4 + events_url: https://api.github.com/users/robertsirc/events{/privacy} + followers_url: https://api.github.com/users/robertsirc/followers + following_url: https://api.github.com/users/robertsirc/following{/other_user} + gists_url: https://api.github.com/users/robertsirc/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/robertsirc + id: 13884882 + login: robertsirc + node_id: MDQ6VXNlcjEzODg0ODgy + organizations_url: https://api.github.com/users/robertsirc/orgs + received_events_url: https://api.github.com/users/robertsirc/received_events + repos_url: https://api.github.com/users/robertsirc/repos + site_admin: false + starred_url: https://api.github.com/users/robertsirc/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/robertsirc/subscriptions + type: User + url: https://api.github.com/users/robertsirc + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/271136711 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.4/helm-v3.18.4-linux-386.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2025-07-08T20:49:12Z" + digest: sha256:1eb5cbccbf59801596ac21ae4b77b8fbe961b344aa2b0b3acf6a10c35f790356 + download_count: 3 + id: 271136710 + label: null + name: helm-v3.18.4-linux-386.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4QKTfG + size: 228 + state: uploaded + updated_at: "2025-07-08T20:49:12Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/13884882?v=4 + events_url: https://api.github.com/users/robertsirc/events{/privacy} + followers_url: https://api.github.com/users/robertsirc/followers + following_url: https://api.github.com/users/robertsirc/following{/other_user} + gists_url: https://api.github.com/users/robertsirc/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/robertsirc + id: 13884882 + login: robertsirc + node_id: MDQ6VXNlcjEzODg0ODgy + organizations_url: https://api.github.com/users/robertsirc/orgs + received_events_url: https://api.github.com/users/robertsirc/received_events + repos_url: https://api.github.com/users/robertsirc/repos + site_admin: false + starred_url: https://api.github.com/users/robertsirc/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/robertsirc/subscriptions + type: User + url: https://api.github.com/users/robertsirc + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/271136710 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.4/helm-v3.18.4-linux-386.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2025-07-08T20:49:12Z" + digest: sha256:8d0a5afc908b3c58d577f86626203aefa11eef05fb3e30ae15c23fc780d49b90 + download_count: 3 + id: 271136709 + label: null + name: helm-v3.18.4-linux-386.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4QKTfF + size: 228 + state: uploaded + updated_at: "2025-07-08T20:49:12Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/13884882?v=4 + events_url: https://api.github.com/users/robertsirc/events{/privacy} + followers_url: https://api.github.com/users/robertsirc/followers + following_url: https://api.github.com/users/robertsirc/following{/other_user} + gists_url: https://api.github.com/users/robertsirc/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/robertsirc + id: 13884882 + login: robertsirc + node_id: MDQ6VXNlcjEzODg0ODgy + organizations_url: https://api.github.com/users/robertsirc/orgs + received_events_url: https://api.github.com/users/robertsirc/received_events + repos_url: https://api.github.com/users/robertsirc/repos + site_admin: false + starred_url: https://api.github.com/users/robertsirc/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/robertsirc/subscriptions + type: User + url: https://api.github.com/users/robertsirc + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/271136709 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.4/helm-v3.18.4-linux-amd64.tar.gz.asc + content_type: application/octet-stream + created_at: "2025-07-08T20:49:12Z" + digest: sha256:d6d3afd6ade68b32faa19f5e5b0bd0b32cddb21d5cd624d565f9323d5dca0813 + download_count: 5 + id: 271136708 + label: null + name: helm-v3.18.4-linux-amd64.tar.gz.asc + node_id: RA_kwDOApspmc4QKTfE + size: 228 + state: uploaded + updated_at: "2025-07-08T20:49:12Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/13884882?v=4 + events_url: https://api.github.com/users/robertsirc/events{/privacy} + followers_url: https://api.github.com/users/robertsirc/followers + following_url: https://api.github.com/users/robertsirc/following{/other_user} + gists_url: https://api.github.com/users/robertsirc/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/robertsirc + id: 13884882 + login: robertsirc + node_id: MDQ6VXNlcjEzODg0ODgy + organizations_url: https://api.github.com/users/robertsirc/orgs + received_events_url: https://api.github.com/users/robertsirc/received_events + repos_url: https://api.github.com/users/robertsirc/repos + site_admin: false + starred_url: https://api.github.com/users/robertsirc/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/robertsirc/subscriptions + type: User + url: https://api.github.com/users/robertsirc + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/271136708 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.4/helm-v3.18.4-linux-amd64.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2025-07-08T20:49:12Z" + digest: sha256:fea9343bbfb29da961df26a7c4ac01229ef9be622cd17ee819d0a46fdf1770c9 + download_count: 6 + id: 271136707 + label: null + name: helm-v3.18.4-linux-amd64.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4QKTfD + size: 228 + state: uploaded + updated_at: "2025-07-08T20:49:12Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/13884882?v=4 + events_url: https://api.github.com/users/robertsirc/events{/privacy} + followers_url: https://api.github.com/users/robertsirc/followers + following_url: https://api.github.com/users/robertsirc/following{/other_user} + gists_url: https://api.github.com/users/robertsirc/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/robertsirc + id: 13884882 + login: robertsirc + node_id: MDQ6VXNlcjEzODg0ODgy + organizations_url: https://api.github.com/users/robertsirc/orgs + received_events_url: https://api.github.com/users/robertsirc/received_events + repos_url: https://api.github.com/users/robertsirc/repos + site_admin: false + starred_url: https://api.github.com/users/robertsirc/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/robertsirc/subscriptions + type: User + url: https://api.github.com/users/robertsirc + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/271136707 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.4/helm-v3.18.4-linux-amd64.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2025-07-08T20:49:11Z" + digest: sha256:efe63becef19d119d11185121a24763dcc5430ddaf0e3d87f356c01dd17c3d62 + download_count: 3 + id: 271136706 + label: null + name: helm-v3.18.4-linux-amd64.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4QKTfC + size: 228 + state: uploaded + updated_at: "2025-07-08T20:49:12Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/13884882?v=4 + events_url: https://api.github.com/users/robertsirc/events{/privacy} + followers_url: https://api.github.com/users/robertsirc/followers + following_url: https://api.github.com/users/robertsirc/following{/other_user} + gists_url: https://api.github.com/users/robertsirc/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/robertsirc + id: 13884882 + login: robertsirc + node_id: MDQ6VXNlcjEzODg0ODgy + organizations_url: https://api.github.com/users/robertsirc/orgs + received_events_url: https://api.github.com/users/robertsirc/received_events + repos_url: https://api.github.com/users/robertsirc/repos + site_admin: false + starred_url: https://api.github.com/users/robertsirc/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/robertsirc/subscriptions + type: User + url: https://api.github.com/users/robertsirc + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/271136706 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.4/helm-v3.18.4-linux-arm.tar.gz.asc + content_type: application/octet-stream + created_at: "2025-07-08T20:49:11Z" + digest: sha256:222d0402407456cc47dc824bf5b8b82ac0eadc3cfd80b86a418e846767656461 + download_count: 2 + id: 271136704 + label: null + name: helm-v3.18.4-linux-arm.tar.gz.asc + node_id: RA_kwDOApspmc4QKTfA + size: 228 + state: uploaded + updated_at: "2025-07-08T20:49:11Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/13884882?v=4 + events_url: https://api.github.com/users/robertsirc/events{/privacy} + followers_url: https://api.github.com/users/robertsirc/followers + following_url: https://api.github.com/users/robertsirc/following{/other_user} + gists_url: https://api.github.com/users/robertsirc/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/robertsirc + id: 13884882 + login: robertsirc + node_id: MDQ6VXNlcjEzODg0ODgy + organizations_url: https://api.github.com/users/robertsirc/orgs + received_events_url: https://api.github.com/users/robertsirc/received_events + repos_url: https://api.github.com/users/robertsirc/repos + site_admin: false + starred_url: https://api.github.com/users/robertsirc/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/robertsirc/subscriptions + type: User + url: https://api.github.com/users/robertsirc + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/271136704 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.4/helm-v3.18.4-linux-arm.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2025-07-08T20:49:11Z" + digest: sha256:0c9c9cf70034931c8a387deb9edc278255692f86b867ad9e84690a7c8bc1192c + download_count: 3 + id: 271136703 + label: null + name: helm-v3.18.4-linux-arm.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4QKTe_ + size: 228 + state: uploaded + updated_at: "2025-07-08T20:49:11Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/13884882?v=4 + events_url: https://api.github.com/users/robertsirc/events{/privacy} + followers_url: https://api.github.com/users/robertsirc/followers + following_url: https://api.github.com/users/robertsirc/following{/other_user} + gists_url: https://api.github.com/users/robertsirc/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/robertsirc + id: 13884882 + login: robertsirc + node_id: MDQ6VXNlcjEzODg0ODgy + organizations_url: https://api.github.com/users/robertsirc/orgs + received_events_url: https://api.github.com/users/robertsirc/received_events + repos_url: https://api.github.com/users/robertsirc/repos + site_admin: false + starred_url: https://api.github.com/users/robertsirc/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/robertsirc/subscriptions + type: User + url: https://api.github.com/users/robertsirc + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/271136703 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.4/helm-v3.18.4-linux-arm.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2025-07-08T20:49:11Z" + digest: sha256:d70343912144675c86173f339dc973a2415fba3a84c5af47b742225cbd5af03f + download_count: 3 + id: 271136702 + label: null + name: helm-v3.18.4-linux-arm.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4QKTe- + size: 228 + state: uploaded + updated_at: "2025-07-08T20:49:11Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/13884882?v=4 + events_url: https://api.github.com/users/robertsirc/events{/privacy} + followers_url: https://api.github.com/users/robertsirc/followers + following_url: https://api.github.com/users/robertsirc/following{/other_user} + gists_url: https://api.github.com/users/robertsirc/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/robertsirc + id: 13884882 + login: robertsirc + node_id: MDQ6VXNlcjEzODg0ODgy + organizations_url: https://api.github.com/users/robertsirc/orgs + received_events_url: https://api.github.com/users/robertsirc/received_events + repos_url: https://api.github.com/users/robertsirc/repos + site_admin: false + starred_url: https://api.github.com/users/robertsirc/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/robertsirc/subscriptions + type: User + url: https://api.github.com/users/robertsirc + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/271136702 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.4/helm-v3.18.4-linux-arm64.tar.gz.asc + content_type: application/octet-stream + created_at: "2025-07-08T20:49:11Z" + digest: sha256:71de71d7ab1b00dc7ba0faae8c04d265e010b04de8ed87d5231a02bb887faaf9 + download_count: 2 + id: 271136698 + label: null + name: helm-v3.18.4-linux-arm64.tar.gz.asc + node_id: RA_kwDOApspmc4QKTe6 + size: 228 + state: uploaded + updated_at: "2025-07-08T20:49:11Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/13884882?v=4 + events_url: https://api.github.com/users/robertsirc/events{/privacy} + followers_url: https://api.github.com/users/robertsirc/followers + following_url: https://api.github.com/users/robertsirc/following{/other_user} + gists_url: https://api.github.com/users/robertsirc/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/robertsirc + id: 13884882 + login: robertsirc + node_id: MDQ6VXNlcjEzODg0ODgy + organizations_url: https://api.github.com/users/robertsirc/orgs + received_events_url: https://api.github.com/users/robertsirc/received_events + repos_url: https://api.github.com/users/robertsirc/repos + site_admin: false + starred_url: https://api.github.com/users/robertsirc/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/robertsirc/subscriptions + type: User + url: https://api.github.com/users/robertsirc + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/271136698 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.4/helm-v3.18.4-linux-arm64.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2025-07-08T20:49:11Z" + digest: sha256:2996e4e58c31571f4d52ae330b51fead2541f506144f26241a8bfbe031bfdef0 + download_count: 3 + id: 271136697 + label: null + name: helm-v3.18.4-linux-arm64.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4QKTe5 + size: 228 + state: uploaded + updated_at: "2025-07-08T20:49:11Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/13884882?v=4 + events_url: https://api.github.com/users/robertsirc/events{/privacy} + followers_url: https://api.github.com/users/robertsirc/followers + following_url: https://api.github.com/users/robertsirc/following{/other_user} + gists_url: https://api.github.com/users/robertsirc/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/robertsirc + id: 13884882 + login: robertsirc + node_id: MDQ6VXNlcjEzODg0ODgy + organizations_url: https://api.github.com/users/robertsirc/orgs + received_events_url: https://api.github.com/users/robertsirc/received_events + repos_url: https://api.github.com/users/robertsirc/repos + site_admin: false + starred_url: https://api.github.com/users/robertsirc/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/robertsirc/subscriptions + type: User + url: https://api.github.com/users/robertsirc + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/271136697 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.4/helm-v3.18.4-linux-arm64.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2025-07-08T20:49:10Z" + digest: sha256:5b76317432f33b2bb41bc9478d7c9779ec101110541758e3848b99b03fa0e38b + download_count: 3 + id: 271136695 + label: null + name: helm-v3.18.4-linux-arm64.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4QKTe3 + size: 228 + state: uploaded + updated_at: "2025-07-08T20:49:11Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/13884882?v=4 + events_url: https://api.github.com/users/robertsirc/events{/privacy} + followers_url: https://api.github.com/users/robertsirc/followers + following_url: https://api.github.com/users/robertsirc/following{/other_user} + gists_url: https://api.github.com/users/robertsirc/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/robertsirc + id: 13884882 + login: robertsirc + node_id: MDQ6VXNlcjEzODg0ODgy + organizations_url: https://api.github.com/users/robertsirc/orgs + received_events_url: https://api.github.com/users/robertsirc/received_events + repos_url: https://api.github.com/users/robertsirc/repos + site_admin: false + starred_url: https://api.github.com/users/robertsirc/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/robertsirc/subscriptions + type: User + url: https://api.github.com/users/robertsirc + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/271136695 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.4/helm-v3.18.4-linux-ppc64le.tar.gz.asc + content_type: application/octet-stream + created_at: "2025-07-08T20:49:10Z" + digest: sha256:206b569171cfdd5c9ff88424510e6b736fd8c5b0ab338bbb4755ca80512bc1b5 + download_count: 2 + id: 271136694 + label: null + name: helm-v3.18.4-linux-ppc64le.tar.gz.asc + node_id: RA_kwDOApspmc4QKTe2 + size: 228 + state: uploaded + updated_at: "2025-07-08T20:49:10Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/13884882?v=4 + events_url: https://api.github.com/users/robertsirc/events{/privacy} + followers_url: https://api.github.com/users/robertsirc/followers + following_url: https://api.github.com/users/robertsirc/following{/other_user} + gists_url: https://api.github.com/users/robertsirc/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/robertsirc + id: 13884882 + login: robertsirc + node_id: MDQ6VXNlcjEzODg0ODgy + organizations_url: https://api.github.com/users/robertsirc/orgs + received_events_url: https://api.github.com/users/robertsirc/received_events + repos_url: https://api.github.com/users/robertsirc/repos + site_admin: false + starred_url: https://api.github.com/users/robertsirc/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/robertsirc/subscriptions + type: User + url: https://api.github.com/users/robertsirc + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/271136694 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.4/helm-v3.18.4-linux-ppc64le.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2025-07-08T20:49:10Z" + digest: sha256:3f1dc62b0aea154e8d4b68a97e6fc15226185e3e904d1f474982872c0ec782f4 + download_count: 3 + id: 271136692 + label: null + name: helm-v3.18.4-linux-ppc64le.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4QKTe0 + size: 228 + state: uploaded + updated_at: "2025-07-08T20:49:10Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/13884882?v=4 + events_url: https://api.github.com/users/robertsirc/events{/privacy} + followers_url: https://api.github.com/users/robertsirc/followers + following_url: https://api.github.com/users/robertsirc/following{/other_user} + gists_url: https://api.github.com/users/robertsirc/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/robertsirc + id: 13884882 + login: robertsirc + node_id: MDQ6VXNlcjEzODg0ODgy + organizations_url: https://api.github.com/users/robertsirc/orgs + received_events_url: https://api.github.com/users/robertsirc/received_events + repos_url: https://api.github.com/users/robertsirc/repos + site_admin: false + starred_url: https://api.github.com/users/robertsirc/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/robertsirc/subscriptions + type: User + url: https://api.github.com/users/robertsirc + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/271136692 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.4/helm-v3.18.4-linux-ppc64le.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2025-07-08T20:49:10Z" + digest: sha256:843a264fd8c27407a8df4c10eb41ed2e624e62b5e2a9cdbeff9ee2f94fb1356f + download_count: 3 + id: 271136690 + label: null + name: helm-v3.18.4-linux-ppc64le.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4QKTey + size: 228 + state: uploaded + updated_at: "2025-07-08T20:49:10Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/13884882?v=4 + events_url: https://api.github.com/users/robertsirc/events{/privacy} + followers_url: https://api.github.com/users/robertsirc/followers + following_url: https://api.github.com/users/robertsirc/following{/other_user} + gists_url: https://api.github.com/users/robertsirc/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/robertsirc + id: 13884882 + login: robertsirc + node_id: MDQ6VXNlcjEzODg0ODgy + organizations_url: https://api.github.com/users/robertsirc/orgs + received_events_url: https://api.github.com/users/robertsirc/received_events + repos_url: https://api.github.com/users/robertsirc/repos + site_admin: false + starred_url: https://api.github.com/users/robertsirc/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/robertsirc/subscriptions + type: User + url: https://api.github.com/users/robertsirc + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/271136690 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.4/helm-v3.18.4-linux-riscv64.tar.gz.asc + content_type: application/octet-stream + created_at: "2025-07-08T20:49:10Z" + digest: sha256:fc2dc28dc5e99fea1699cd44502fbd0660c78d39da1e0615d59aaa018760855d + download_count: 2 + id: 271136689 + label: null + name: helm-v3.18.4-linux-riscv64.tar.gz.asc + node_id: RA_kwDOApspmc4QKTex + size: 228 + state: uploaded + updated_at: "2025-07-08T20:49:10Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/13884882?v=4 + events_url: https://api.github.com/users/robertsirc/events{/privacy} + followers_url: https://api.github.com/users/robertsirc/followers + following_url: https://api.github.com/users/robertsirc/following{/other_user} + gists_url: https://api.github.com/users/robertsirc/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/robertsirc + id: 13884882 + login: robertsirc + node_id: MDQ6VXNlcjEzODg0ODgy + organizations_url: https://api.github.com/users/robertsirc/orgs + received_events_url: https://api.github.com/users/robertsirc/received_events + repos_url: https://api.github.com/users/robertsirc/repos + site_admin: false + starred_url: https://api.github.com/users/robertsirc/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/robertsirc/subscriptions + type: User + url: https://api.github.com/users/robertsirc + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/271136689 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.4/helm-v3.18.4-linux-riscv64.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2025-07-08T20:49:09Z" + digest: sha256:6688ece2e017e56d04dadab1f8f168c57c191e65c84be0bb9a9846d35c24c1b1 + download_count: 3 + id: 271136687 + label: null + name: helm-v3.18.4-linux-riscv64.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4QKTev + size: 228 + state: uploaded + updated_at: "2025-07-08T20:49:10Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/13884882?v=4 + events_url: https://api.github.com/users/robertsirc/events{/privacy} + followers_url: https://api.github.com/users/robertsirc/followers + following_url: https://api.github.com/users/robertsirc/following{/other_user} + gists_url: https://api.github.com/users/robertsirc/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/robertsirc + id: 13884882 + login: robertsirc + node_id: MDQ6VXNlcjEzODg0ODgy + organizations_url: https://api.github.com/users/robertsirc/orgs + received_events_url: https://api.github.com/users/robertsirc/received_events + repos_url: https://api.github.com/users/robertsirc/repos + site_admin: false + starred_url: https://api.github.com/users/robertsirc/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/robertsirc/subscriptions + type: User + url: https://api.github.com/users/robertsirc + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/271136687 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.4/helm-v3.18.4-linux-riscv64.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2025-07-08T20:49:09Z" + digest: sha256:41918631e498b4206f81cdaed069a5d5d119a90bdc60f8530b5fd8d171c0f593 + download_count: 3 + id: 271136685 + label: null + name: helm-v3.18.4-linux-riscv64.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4QKTet + size: 228 + state: uploaded + updated_at: "2025-07-08T20:49:09Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/13884882?v=4 + events_url: https://api.github.com/users/robertsirc/events{/privacy} + followers_url: https://api.github.com/users/robertsirc/followers + following_url: https://api.github.com/users/robertsirc/following{/other_user} + gists_url: https://api.github.com/users/robertsirc/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/robertsirc + id: 13884882 + login: robertsirc + node_id: MDQ6VXNlcjEzODg0ODgy + organizations_url: https://api.github.com/users/robertsirc/orgs + received_events_url: https://api.github.com/users/robertsirc/received_events + repos_url: https://api.github.com/users/robertsirc/repos + site_admin: false + starred_url: https://api.github.com/users/robertsirc/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/robertsirc/subscriptions + type: User + url: https://api.github.com/users/robertsirc + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/271136685 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.4/helm-v3.18.4-linux-s390x.tar.gz.asc + content_type: application/octet-stream + created_at: "2025-07-08T20:49:09Z" + digest: sha256:180574cb4e2b59d1f8a2fc4c481d86d0bb0b24aa9f21e23c67d15f5da2e2bddd + download_count: 2 + id: 271136678 + label: null + name: helm-v3.18.4-linux-s390x.tar.gz.asc + node_id: RA_kwDOApspmc4QKTem + size: 228 + state: uploaded + updated_at: "2025-07-08T20:49:09Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/13884882?v=4 + events_url: https://api.github.com/users/robertsirc/events{/privacy} + followers_url: https://api.github.com/users/robertsirc/followers + following_url: https://api.github.com/users/robertsirc/following{/other_user} + gists_url: https://api.github.com/users/robertsirc/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/robertsirc + id: 13884882 + login: robertsirc + node_id: MDQ6VXNlcjEzODg0ODgy + organizations_url: https://api.github.com/users/robertsirc/orgs + received_events_url: https://api.github.com/users/robertsirc/received_events + repos_url: https://api.github.com/users/robertsirc/repos + site_admin: false + starred_url: https://api.github.com/users/robertsirc/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/robertsirc/subscriptions + type: User + url: https://api.github.com/users/robertsirc + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/271136678 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.4/helm-v3.18.4-linux-s390x.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2025-07-08T20:49:09Z" + digest: sha256:71394c253fc3594e506bf13cb3892a96c11bc99a76137d8b846a30a3fc63290e + download_count: 3 + id: 271136677 + label: null + name: helm-v3.18.4-linux-s390x.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4QKTel + size: 228 + state: uploaded + updated_at: "2025-07-08T20:49:09Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/13884882?v=4 + events_url: https://api.github.com/users/robertsirc/events{/privacy} + followers_url: https://api.github.com/users/robertsirc/followers + following_url: https://api.github.com/users/robertsirc/following{/other_user} + gists_url: https://api.github.com/users/robertsirc/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/robertsirc + id: 13884882 + login: robertsirc + node_id: MDQ6VXNlcjEzODg0ODgy + organizations_url: https://api.github.com/users/robertsirc/orgs + received_events_url: https://api.github.com/users/robertsirc/received_events + repos_url: https://api.github.com/users/robertsirc/repos + site_admin: false + starred_url: https://api.github.com/users/robertsirc/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/robertsirc/subscriptions + type: User + url: https://api.github.com/users/robertsirc + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/271136677 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.4/helm-v3.18.4-linux-s390x.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2025-07-08T20:49:09Z" + digest: sha256:30c256ebc2a7af19d06d43149ab8d3aceff92ee8597930436f2d9a59822cf6ed + download_count: 3 + id: 271136676 + label: null + name: helm-v3.18.4-linux-s390x.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4QKTek + size: 228 + state: uploaded + updated_at: "2025-07-08T20:49:09Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/13884882?v=4 + events_url: https://api.github.com/users/robertsirc/events{/privacy} + followers_url: https://api.github.com/users/robertsirc/followers + following_url: https://api.github.com/users/robertsirc/following{/other_user} + gists_url: https://api.github.com/users/robertsirc/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/robertsirc + id: 13884882 + login: robertsirc + node_id: MDQ6VXNlcjEzODg0ODgy + organizations_url: https://api.github.com/users/robertsirc/orgs + received_events_url: https://api.github.com/users/robertsirc/received_events + repos_url: https://api.github.com/users/robertsirc/repos + site_admin: false + starred_url: https://api.github.com/users/robertsirc/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/robertsirc/subscriptions + type: User + url: https://api.github.com/users/robertsirc + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/271136676 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.4/helm-v3.18.4-windows-amd64.zip.asc + content_type: application/octet-stream + created_at: "2025-07-08T20:49:08Z" + digest: sha256:1ee979a8620fe5b169805940707d0a9201d280acea104e82176f039e056f63b0 + download_count: 2 + id: 271136673 + label: null + name: helm-v3.18.4-windows-amd64.zip.asc + node_id: RA_kwDOApspmc4QKTeh + size: 228 + state: uploaded + updated_at: "2025-07-08T20:49:09Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/13884882?v=4 + events_url: https://api.github.com/users/robertsirc/events{/privacy} + followers_url: https://api.github.com/users/robertsirc/followers + following_url: https://api.github.com/users/robertsirc/following{/other_user} + gists_url: https://api.github.com/users/robertsirc/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/robertsirc + id: 13884882 + login: robertsirc + node_id: MDQ6VXNlcjEzODg0ODgy + organizations_url: https://api.github.com/users/robertsirc/orgs + received_events_url: https://api.github.com/users/robertsirc/received_events + repos_url: https://api.github.com/users/robertsirc/repos + site_admin: false + starred_url: https://api.github.com/users/robertsirc/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/robertsirc/subscriptions + type: User + url: https://api.github.com/users/robertsirc + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/271136673 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.4/helm-v3.18.4-windows-amd64.zip.sha256.asc + content_type: application/octet-stream + created_at: "2025-07-08T20:49:08Z" + digest: sha256:37552366065d160c8afe7e8957c9fa8a4227e3126963966777c4f28eee2cf2b7 + download_count: 3 + id: 271136672 + label: null + name: helm-v3.18.4-windows-amd64.zip.sha256.asc + node_id: RA_kwDOApspmc4QKTeg + size: 228 + state: uploaded + updated_at: "2025-07-08T20:49:08Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/13884882?v=4 + events_url: https://api.github.com/users/robertsirc/events{/privacy} + followers_url: https://api.github.com/users/robertsirc/followers + following_url: https://api.github.com/users/robertsirc/following{/other_user} + gists_url: https://api.github.com/users/robertsirc/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/robertsirc + id: 13884882 + login: robertsirc + node_id: MDQ6VXNlcjEzODg0ODgy + organizations_url: https://api.github.com/users/robertsirc/orgs + received_events_url: https://api.github.com/users/robertsirc/received_events + repos_url: https://api.github.com/users/robertsirc/repos + site_admin: false + starred_url: https://api.github.com/users/robertsirc/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/robertsirc/subscriptions + type: User + url: https://api.github.com/users/robertsirc + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/271136672 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.4/helm-v3.18.4-windows-amd64.zip.sha256sum.asc + content_type: application/octet-stream + created_at: "2025-07-08T20:49:08Z" + digest: sha256:f37068d1e2e48fcbe853c005710996723dfef543a6f042ff84401a29984f4617 + download_count: 3 + id: 271136671 + label: null + name: helm-v3.18.4-windows-amd64.zip.sha256sum.asc + node_id: RA_kwDOApspmc4QKTef + size: 228 + state: uploaded + updated_at: "2025-07-08T20:49:08Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/13884882?v=4 + events_url: https://api.github.com/users/robertsirc/events{/privacy} + followers_url: https://api.github.com/users/robertsirc/followers + following_url: https://api.github.com/users/robertsirc/following{/other_user} + gists_url: https://api.github.com/users/robertsirc/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/robertsirc + id: 13884882 + login: robertsirc + node_id: MDQ6VXNlcjEzODg0ODgy + organizations_url: https://api.github.com/users/robertsirc/orgs + received_events_url: https://api.github.com/users/robertsirc/received_events + repos_url: https://api.github.com/users/robertsirc/repos + site_admin: false + starred_url: https://api.github.com/users/robertsirc/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/robertsirc/subscriptions + type: User + url: https://api.github.com/users/robertsirc + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/271136671 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.4/helm-v3.18.4-windows-arm64.zip.asc + content_type: application/octet-stream + created_at: "2025-07-08T20:49:08Z" + digest: sha256:5e985acf5f855a982a5df19227877e90d49b422be296956551a463e99f563145 + download_count: 2 + id: 271136670 + label: null + name: helm-v3.18.4-windows-arm64.zip.asc + node_id: RA_kwDOApspmc4QKTee + size: 228 + state: uploaded + updated_at: "2025-07-08T20:49:08Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/13884882?v=4 + events_url: https://api.github.com/users/robertsirc/events{/privacy} + followers_url: https://api.github.com/users/robertsirc/followers + following_url: https://api.github.com/users/robertsirc/following{/other_user} + gists_url: https://api.github.com/users/robertsirc/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/robertsirc + id: 13884882 + login: robertsirc + node_id: MDQ6VXNlcjEzODg0ODgy + organizations_url: https://api.github.com/users/robertsirc/orgs + received_events_url: https://api.github.com/users/robertsirc/received_events + repos_url: https://api.github.com/users/robertsirc/repos + site_admin: false + starred_url: https://api.github.com/users/robertsirc/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/robertsirc/subscriptions + type: User + url: https://api.github.com/users/robertsirc + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/271136670 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.4/helm-v3.18.4-windows-arm64.zip.sha256.asc + content_type: application/octet-stream + created_at: "2025-07-08T20:49:08Z" + digest: sha256:3f0b0d89992cdcb2fc4fa594bbabf816b7f16d448a61915fd7cefb65544fd4f1 + download_count: 3 + id: 271136668 + label: null + name: helm-v3.18.4-windows-arm64.zip.sha256.asc + node_id: RA_kwDOApspmc4QKTec + size: 228 + state: uploaded + updated_at: "2025-07-08T20:49:08Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/13884882?v=4 + events_url: https://api.github.com/users/robertsirc/events{/privacy} + followers_url: https://api.github.com/users/robertsirc/followers + following_url: https://api.github.com/users/robertsirc/following{/other_user} + gists_url: https://api.github.com/users/robertsirc/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/robertsirc + id: 13884882 + login: robertsirc + node_id: MDQ6VXNlcjEzODg0ODgy + organizations_url: https://api.github.com/users/robertsirc/orgs + received_events_url: https://api.github.com/users/robertsirc/received_events + repos_url: https://api.github.com/users/robertsirc/repos + site_admin: false + starred_url: https://api.github.com/users/robertsirc/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/robertsirc/subscriptions + type: User + url: https://api.github.com/users/robertsirc + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/271136668 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.4/helm-v3.18.4-windows-arm64.zip.sha256sum.asc + content_type: application/octet-stream + created_at: "2025-07-08T20:49:07Z" + digest: sha256:05749d19acfcfcf4b80f125a58d045403f9bb8e8156172d3aa37e2299d3faca6 + download_count: 3 + id: 271136667 + label: null + name: helm-v3.18.4-windows-arm64.zip.sha256sum.asc + node_id: RA_kwDOApspmc4QKTeb + size: 228 + state: uploaded + updated_at: "2025-07-08T20:49:08Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/13884882?v=4 + events_url: https://api.github.com/users/robertsirc/events{/privacy} + followers_url: https://api.github.com/users/robertsirc/followers + following_url: https://api.github.com/users/robertsirc/following{/other_user} + gists_url: https://api.github.com/users/robertsirc/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/robertsirc + id: 13884882 + login: robertsirc + node_id: MDQ6VXNlcjEzODg0ODgy + organizations_url: https://api.github.com/users/robertsirc/orgs + received_events_url: https://api.github.com/users/robertsirc/received_events + repos_url: https://api.github.com/users/robertsirc/repos + site_admin: false + starred_url: https://api.github.com/users/robertsirc/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/robertsirc/subscriptions + type: User + url: https://api.github.com/users/robertsirc + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/271136667 + assets_url: https://api.github.com/repos/helm/helm/releases/230962935/assets + author: + avatar_url: https://avatars.githubusercontent.com/u/13884882?v=4 + events_url: https://api.github.com/users/robertsirc/events{/privacy} + followers_url: https://api.github.com/users/robertsirc/followers + following_url: https://api.github.com/users/robertsirc/following{/other_user} + gists_url: https://api.github.com/users/robertsirc/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/robertsirc + id: 13884882 + login: robertsirc + node_id: MDQ6VXNlcjEzODg0ODgy + organizations_url: https://api.github.com/users/robertsirc/orgs + received_events_url: https://api.github.com/users/robertsirc/received_events + repos_url: https://api.github.com/users/robertsirc/repos + site_admin: false + starred_url: https://api.github.com/users/robertsirc/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/robertsirc/subscriptions + type: User + url: https://api.github.com/users/robertsirc + user_view_type: public + body: "Helm v3.18.4 is a security release. Users are encouraged to upgrade + for the best experience.\r\n\r\nThe community keeps growing, and we'd + love to see you there!\r\n\r\n- Join the discussion in [Kubernetes Slack](https://kubernetes.slack.com):\r\n + \ - for questions and just to hang out\r\n - for discussing PRs, code, + and bugs\r\n- Hang out at the Public Developer Call: Thursday, 9:30 Pacific + via [Zoom](https://zoom.us/j/696660622)\r\n- Test, debug, and contribute + charts: [ArtifactHub/packages](https://artifacthub.io/packages/search?kind=0)\r\n\r\n## + Installation and Upgrading\r\n\r\nDownload Helm v3.18.4. The common platform + binaries are here:\r\n\r\n- [MacOS amd64](https://get.helm.sh/helm-v3.18.4-darwin-amd64.tar.gz) + ([checksum](https://get.helm.sh/helm-v3.18.4-darwin-amd64.tar.gz.sha256sum) + / 860a7238285b44b5dc7b3c4dad6194316885d7015d77c34e23177e0e9554af8f)\r\n- + [MacOS arm64](https://get.helm.sh/helm-v3.18.4-darwin-arm64.tar.gz) ([checksum](https://get.helm.sh/helm-v3.18.4-darwin-arm64.tar.gz.sha256sum) + / 041849741550b20710d7ad0956e805ebd960b483fe978864f8e7fdd03ca84ec8)\r\n- + [Linux amd64](https://get.helm.sh/helm-v3.18.4-linux-amd64.tar.gz) ([checksum](https://get.helm.sh/helm-v3.18.4-linux-amd64.tar.gz.sha256sum) + / f8180838c23d7c7d797b208861fecb591d9ce1690d8704ed1e4cb8e2add966c1)\r\n- + [Linux arm](https://get.helm.sh/helm-v3.18.4-linux-arm.tar.gz) ([checksum](https://get.helm.sh/helm-v3.18.4-linux-arm.tar.gz.sha256sum) + / 34ea88aef15fd822e839da262176a36e865bb9cfdb89b1f723811c0cc527f981)\r\n- + [Linux arm64](https://get.helm.sh/helm-v3.18.4-linux-arm64.tar.gz) ([checksum](https://get.helm.sh/helm-v3.18.4-linux-arm64.tar.gz.sha256sum) + / c0a45e67eef0c7416a8a8c9e9d5d2d30d70e4f4d3f7bea5de28241fffa8f3b89)\r\n- + [Linux i386](https://get.helm.sh/helm-v3.18.4-linux-386.tar.gz) ([checksum](https://get.helm.sh/helm-v3.18.4-linux-386.tar.gz.sha256sum) + / 75c2d9858725a5907faf8f19d9fb21c0263e4cb864d27d6df8809f96f147d3c0)\r\n- + [Linux ppc64le](https://get.helm.sh/helm-v3.18.4-linux-ppc64le.tar.gz) + ([checksum](https://get.helm.sh/helm-v3.18.4-linux-ppc64le.tar.gz.sha256sum) + / dbd74c59e7710f26e058596723abbf73662b553e01f40dfb08508ffffaeb7b81)\r\n- + [Linux s390x](https://get.helm.sh/helm-v3.18.4-linux-s390x.tar.gz) ([checksum](https://get.helm.sh/helm-v3.18.4-linux-s390x.tar.gz.sha256sum) + / c8bafb34bcebd53494f0223239977e1ff7b487e714598a5843a0cb1788e20075)\r\n- + [Linux riscv64](https://get.helm.sh/helm-v3.18.4-linux-riscv64.tar.gz) + ([checksum](https://get.helm.sh/helm-v3.18.4-linux-riscv64.tar.gz.sha256sum) + / f67f39104c7e695cbba04dc3b4507a80a034ce9e5ccbe55c84e91b1553b787bd)\r\n- + [Windows amd64](https://get.helm.sh/helm-v3.18.4-windows-amd64.zip) ([checksum](https://get.helm.sh/helm-v3.18.4-windows-amd64.zip.sha256sum) + / 0af12a2233d71ef4207db1eabbf103b554631206ed5b2b34fc56b73a52596888)\r\n- + [Windows arm64](https://get.helm.sh/helm-v3.18.4-windows-arm64.zip) ([checksum](https://get.helm.sh/helm-v3.18.4-windows-arm64.zip.sha256sum) + / de6bc8fcffeb041f524a92c6026ea22ef6f939118a30e6bb8b996b77a38486b1)\r\n\r\nThe + [Quickstart Guide](https://helm.sh/docs/intro/quickstart/) will get you + going from there. For **upgrade instructions** or detailed installation + notes, check the [install guide](https://helm.sh/docs/intro/install/). + You can also use a [script to install](https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3) + on any system with `bash`.\r\n\r\n## What's Next\r\n\r\n - 3.18.5 is the + next patch release and will be on August 13, 2025\r\n - 3.19.0 is the + next minor release and will be on September 11, 2025\r\n\r\n\r\n## Changelog\r\n\r\n- + Disabling linter due to unknown issue f20a4ad1d5c953ca0fb3d3b30aa9aa796d472ef1 + (Matt Farina)\r\n- build(deps): bump the k8s-io group with 7 updates 563b0947b995c48354319aa054830db61f793a08 + (dependabot[bot])\r\n- Updating link handling 00de613324df4dd930e6d231d9aae7f9dee29c76 + (Matt Farina)\r\n" + created_at: "2025-07-08T20:31:02Z" + draft: false + html_url: https://github.com/helm/helm/releases/tag/v3.18.4 + id: 230962935 + immutable: false + name: Helm v3.18.4 + node_id: RE_kwDOApspmc4NxDb3 + prerelease: false + published_at: "2025-07-08T20:49:25Z" + tag_name: v3.18.4 + tarball_url: https://api.github.com/repos/helm/helm/tarball/v3.18.4 + target_commitish: main + upload_url: https://uploads.github.com/repos/helm/helm/releases/230962935/assets{?name,label} + url: https://api.github.com/repos/helm/helm/releases/230962935 + zipball_url: https://api.github.com/repos/helm/helm/zipball/v3.18.4 + 3.18.5: + githubRelease: + assets: + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.5/helm-v3.18.5-darwin-amd64.tar.gz.asc + content_type: application/octet-stream + created_at: "2025-08-13T19:47:56Z" + digest: sha256:278dfe0acaf7ddc47dea53b7cbe8c92071c5bbb82b8f3fc3feea308dcb2bfcfd + download_count: 3 + id: 282249117 + label: null + name: helm-v3.18.5-darwin-amd64.tar.gz.asc + node_id: RA_kwDOApspmc4Q0sed + size: 228 + state: uploaded + updated_at: "2025-08-13T19:47:56Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/13884882?v=4 + events_url: https://api.github.com/users/robertsirc/events{/privacy} + followers_url: https://api.github.com/users/robertsirc/followers + following_url: https://api.github.com/users/robertsirc/following{/other_user} + gists_url: https://api.github.com/users/robertsirc/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/robertsirc + id: 13884882 + login: robertsirc + node_id: MDQ6VXNlcjEzODg0ODgy + organizations_url: https://api.github.com/users/robertsirc/orgs + received_events_url: https://api.github.com/users/robertsirc/received_events + repos_url: https://api.github.com/users/robertsirc/repos + site_admin: false + starred_url: https://api.github.com/users/robertsirc/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/robertsirc/subscriptions + type: User + url: https://api.github.com/users/robertsirc + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/282249117 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.5/helm-v3.18.5-darwin-amd64.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2025-08-13T19:48:02Z" + digest: sha256:8e28f32b4d733f64138eb6234c9387fc00a222016311ac24d910507ea33058d8 + download_count: 4 + id: 282249171 + label: null + name: helm-v3.18.5-darwin-amd64.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4Q0sfT + size: 228 + state: uploaded + updated_at: "2025-08-13T19:48:03Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/13884882?v=4 + events_url: https://api.github.com/users/robertsirc/events{/privacy} + followers_url: https://api.github.com/users/robertsirc/followers + following_url: https://api.github.com/users/robertsirc/following{/other_user} + gists_url: https://api.github.com/users/robertsirc/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/robertsirc + id: 13884882 + login: robertsirc + node_id: MDQ6VXNlcjEzODg0ODgy + organizations_url: https://api.github.com/users/robertsirc/orgs + received_events_url: https://api.github.com/users/robertsirc/received_events + repos_url: https://api.github.com/users/robertsirc/repos + site_admin: false + starred_url: https://api.github.com/users/robertsirc/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/robertsirc/subscriptions + type: User + url: https://api.github.com/users/robertsirc + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/282249171 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.5/helm-v3.18.5-darwin-amd64.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2025-08-13T19:48:02Z" + digest: sha256:b3589459be97abbf94c43ea8843e9d931e2e1dfa492e7688c5f79b3b47d2bd7d + download_count: 4 + id: 282249169 + label: null + name: helm-v3.18.5-darwin-amd64.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4Q0sfR + size: 228 + state: uploaded + updated_at: "2025-08-13T19:48:02Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/13884882?v=4 + events_url: https://api.github.com/users/robertsirc/events{/privacy} + followers_url: https://api.github.com/users/robertsirc/followers + following_url: https://api.github.com/users/robertsirc/following{/other_user} + gists_url: https://api.github.com/users/robertsirc/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/robertsirc + id: 13884882 + login: robertsirc + node_id: MDQ6VXNlcjEzODg0ODgy + organizations_url: https://api.github.com/users/robertsirc/orgs + received_events_url: https://api.github.com/users/robertsirc/received_events + repos_url: https://api.github.com/users/robertsirc/repos + site_admin: false + starred_url: https://api.github.com/users/robertsirc/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/robertsirc/subscriptions + type: User + url: https://api.github.com/users/robertsirc + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/282249169 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.5/helm-v3.18.5-darwin-arm64.tar.gz.asc + content_type: application/octet-stream + created_at: "2025-08-13T19:48:02Z" + digest: sha256:648276cc019fc76d9fc04b92af0045e193fc85172acd4bf107d6a917c9d5afb8 + download_count: 3 + id: 282249168 + label: null + name: helm-v3.18.5-darwin-arm64.tar.gz.asc + node_id: RA_kwDOApspmc4Q0sfQ + size: 228 + state: uploaded + updated_at: "2025-08-13T19:48:02Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/13884882?v=4 + events_url: https://api.github.com/users/robertsirc/events{/privacy} + followers_url: https://api.github.com/users/robertsirc/followers + following_url: https://api.github.com/users/robertsirc/following{/other_user} + gists_url: https://api.github.com/users/robertsirc/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/robertsirc + id: 13884882 + login: robertsirc + node_id: MDQ6VXNlcjEzODg0ODgy + organizations_url: https://api.github.com/users/robertsirc/orgs + received_events_url: https://api.github.com/users/robertsirc/received_events + repos_url: https://api.github.com/users/robertsirc/repos + site_admin: false + starred_url: https://api.github.com/users/robertsirc/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/robertsirc/subscriptions + type: User + url: https://api.github.com/users/robertsirc + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/282249168 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.5/helm-v3.18.5-darwin-arm64.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2025-08-13T19:48:02Z" + digest: sha256:bc94789690e5c9d2d87921efcab4d934985b4e232b1d4b5e20f11769e30cf80a + download_count: 4 + id: 282249167 + label: null + name: helm-v3.18.5-darwin-arm64.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4Q0sfP + size: 228 + state: uploaded + updated_at: "2025-08-13T19:48:02Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/13884882?v=4 + events_url: https://api.github.com/users/robertsirc/events{/privacy} + followers_url: https://api.github.com/users/robertsirc/followers + following_url: https://api.github.com/users/robertsirc/following{/other_user} + gists_url: https://api.github.com/users/robertsirc/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/robertsirc + id: 13884882 + login: robertsirc + node_id: MDQ6VXNlcjEzODg0ODgy + organizations_url: https://api.github.com/users/robertsirc/orgs + received_events_url: https://api.github.com/users/robertsirc/received_events + repos_url: https://api.github.com/users/robertsirc/repos + site_admin: false + starred_url: https://api.github.com/users/robertsirc/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/robertsirc/subscriptions + type: User + url: https://api.github.com/users/robertsirc + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/282249167 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.5/helm-v3.18.5-darwin-arm64.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2025-08-13T19:48:01Z" + digest: sha256:9ea6439e54638eece66304ac34da2359fa9e7442794192b2eb7699878ffcadab + download_count: 4 + id: 282249166 + label: null + name: helm-v3.18.5-darwin-arm64.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4Q0sfO + size: 228 + state: uploaded + updated_at: "2025-08-13T19:48:02Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/13884882?v=4 + events_url: https://api.github.com/users/robertsirc/events{/privacy} + followers_url: https://api.github.com/users/robertsirc/followers + following_url: https://api.github.com/users/robertsirc/following{/other_user} + gists_url: https://api.github.com/users/robertsirc/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/robertsirc + id: 13884882 + login: robertsirc + node_id: MDQ6VXNlcjEzODg0ODgy + organizations_url: https://api.github.com/users/robertsirc/orgs + received_events_url: https://api.github.com/users/robertsirc/received_events + repos_url: https://api.github.com/users/robertsirc/repos + site_admin: false + starred_url: https://api.github.com/users/robertsirc/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/robertsirc/subscriptions + type: User + url: https://api.github.com/users/robertsirc + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/282249166 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.5/helm-v3.18.5-linux-386.tar.gz.asc + content_type: application/octet-stream + created_at: "2025-08-13T19:48:01Z" + digest: sha256:90959ad7895758a2366d397af3959841c5dd761b6f9a49e398cdce010afb5f17 + download_count: 3 + id: 282249164 + label: null + name: helm-v3.18.5-linux-386.tar.gz.asc + node_id: RA_kwDOApspmc4Q0sfM + size: 228 + state: uploaded + updated_at: "2025-08-13T19:48:01Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/13884882?v=4 + events_url: https://api.github.com/users/robertsirc/events{/privacy} + followers_url: https://api.github.com/users/robertsirc/followers + following_url: https://api.github.com/users/robertsirc/following{/other_user} + gists_url: https://api.github.com/users/robertsirc/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/robertsirc + id: 13884882 + login: robertsirc + node_id: MDQ6VXNlcjEzODg0ODgy + organizations_url: https://api.github.com/users/robertsirc/orgs + received_events_url: https://api.github.com/users/robertsirc/received_events + repos_url: https://api.github.com/users/robertsirc/repos + site_admin: false + starred_url: https://api.github.com/users/robertsirc/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/robertsirc/subscriptions + type: User + url: https://api.github.com/users/robertsirc + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/282249164 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.5/helm-v3.18.5-linux-386.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2025-08-13T19:48:01Z" + digest: sha256:b448b1edb90aea5551aeb956f471c1ca5ec5173363e00526a39a8da082fd6c29 + download_count: 4 + id: 282249162 + label: null + name: helm-v3.18.5-linux-386.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4Q0sfK + size: 228 + state: uploaded + updated_at: "2025-08-13T19:48:01Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/13884882?v=4 + events_url: https://api.github.com/users/robertsirc/events{/privacy} + followers_url: https://api.github.com/users/robertsirc/followers + following_url: https://api.github.com/users/robertsirc/following{/other_user} + gists_url: https://api.github.com/users/robertsirc/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/robertsirc + id: 13884882 + login: robertsirc + node_id: MDQ6VXNlcjEzODg0ODgy + organizations_url: https://api.github.com/users/robertsirc/orgs + received_events_url: https://api.github.com/users/robertsirc/received_events + repos_url: https://api.github.com/users/robertsirc/repos + site_admin: false + starred_url: https://api.github.com/users/robertsirc/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/robertsirc/subscriptions + type: User + url: https://api.github.com/users/robertsirc + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/282249162 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.5/helm-v3.18.5-linux-386.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2025-08-13T19:48:01Z" + digest: sha256:e807b5c9b56030f456de17e64caff431fad07f8daa18097bc4932bed11d7f5b6 + download_count: 4 + id: 282249161 + label: null + name: helm-v3.18.5-linux-386.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4Q0sfJ + size: 228 + state: uploaded + updated_at: "2025-08-13T19:48:01Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/13884882?v=4 + events_url: https://api.github.com/users/robertsirc/events{/privacy} + followers_url: https://api.github.com/users/robertsirc/followers + following_url: https://api.github.com/users/robertsirc/following{/other_user} + gists_url: https://api.github.com/users/robertsirc/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/robertsirc + id: 13884882 + login: robertsirc + node_id: MDQ6VXNlcjEzODg0ODgy + organizations_url: https://api.github.com/users/robertsirc/orgs + received_events_url: https://api.github.com/users/robertsirc/received_events + repos_url: https://api.github.com/users/robertsirc/repos + site_admin: false + starred_url: https://api.github.com/users/robertsirc/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/robertsirc/subscriptions + type: User + url: https://api.github.com/users/robertsirc + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/282249161 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.5/helm-v3.18.5-linux-amd64.tar.gz.asc + content_type: application/octet-stream + created_at: "2025-08-13T19:48:01Z" + digest: sha256:3bfb89d7ea036685cf7d86b975c21accf92b83de969726a86f63f7411dd1f25e + download_count: 6 + id: 282249159 + label: null + name: helm-v3.18.5-linux-amd64.tar.gz.asc + node_id: RA_kwDOApspmc4Q0sfH + size: 228 + state: uploaded + updated_at: "2025-08-13T19:48:01Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/13884882?v=4 + events_url: https://api.github.com/users/robertsirc/events{/privacy} + followers_url: https://api.github.com/users/robertsirc/followers + following_url: https://api.github.com/users/robertsirc/following{/other_user} + gists_url: https://api.github.com/users/robertsirc/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/robertsirc + id: 13884882 + login: robertsirc + node_id: MDQ6VXNlcjEzODg0ODgy + organizations_url: https://api.github.com/users/robertsirc/orgs + received_events_url: https://api.github.com/users/robertsirc/received_events + repos_url: https://api.github.com/users/robertsirc/repos + site_admin: false + starred_url: https://api.github.com/users/robertsirc/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/robertsirc/subscriptions + type: User + url: https://api.github.com/users/robertsirc + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/282249159 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.5/helm-v3.18.5-linux-amd64.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2025-08-13T19:48:00Z" + digest: sha256:073e59360584c7e82a860df3ae8d6342d7b0f3467a7fddfaccb27e71b78fc252 + download_count: 6 + id: 282249158 + label: null + name: helm-v3.18.5-linux-amd64.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4Q0sfG + size: 228 + state: uploaded + updated_at: "2025-08-13T19:48:01Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/13884882?v=4 + events_url: https://api.github.com/users/robertsirc/events{/privacy} + followers_url: https://api.github.com/users/robertsirc/followers + following_url: https://api.github.com/users/robertsirc/following{/other_user} + gists_url: https://api.github.com/users/robertsirc/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/robertsirc + id: 13884882 + login: robertsirc + node_id: MDQ6VXNlcjEzODg0ODgy + organizations_url: https://api.github.com/users/robertsirc/orgs + received_events_url: https://api.github.com/users/robertsirc/received_events + repos_url: https://api.github.com/users/robertsirc/repos + site_admin: false + starred_url: https://api.github.com/users/robertsirc/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/robertsirc/subscriptions + type: User + url: https://api.github.com/users/robertsirc + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/282249158 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.5/helm-v3.18.5-linux-amd64.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2025-08-13T19:48:00Z" + digest: sha256:bde3ae765120215e8bbce3ef45c0138ad7b24233ca03add601d773d3e944b4b4 + download_count: 4 + id: 282249156 + label: null + name: helm-v3.18.5-linux-amd64.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4Q0sfE + size: 228 + state: uploaded + updated_at: "2025-08-13T19:48:01Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/13884882?v=4 + events_url: https://api.github.com/users/robertsirc/events{/privacy} + followers_url: https://api.github.com/users/robertsirc/followers + following_url: https://api.github.com/users/robertsirc/following{/other_user} + gists_url: https://api.github.com/users/robertsirc/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/robertsirc + id: 13884882 + login: robertsirc + node_id: MDQ6VXNlcjEzODg0ODgy + organizations_url: https://api.github.com/users/robertsirc/orgs + received_events_url: https://api.github.com/users/robertsirc/received_events + repos_url: https://api.github.com/users/robertsirc/repos + site_admin: false + starred_url: https://api.github.com/users/robertsirc/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/robertsirc/subscriptions + type: User + url: https://api.github.com/users/robertsirc + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/282249156 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.5/helm-v3.18.5-linux-arm.tar.gz.asc + content_type: application/octet-stream + created_at: "2025-08-13T19:48:00Z" + digest: sha256:cbfbc1773a28b107070208aceb56e27f8bcf24a3cb40746d07d2415425a99434 + download_count: 3 + id: 282249155 + label: null + name: helm-v3.18.5-linux-arm.tar.gz.asc + node_id: RA_kwDOApspmc4Q0sfD + size: 228 + state: uploaded + updated_at: "2025-08-13T19:48:00Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/13884882?v=4 + events_url: https://api.github.com/users/robertsirc/events{/privacy} + followers_url: https://api.github.com/users/robertsirc/followers + following_url: https://api.github.com/users/robertsirc/following{/other_user} + gists_url: https://api.github.com/users/robertsirc/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/robertsirc + id: 13884882 + login: robertsirc + node_id: MDQ6VXNlcjEzODg0ODgy + organizations_url: https://api.github.com/users/robertsirc/orgs + received_events_url: https://api.github.com/users/robertsirc/received_events + repos_url: https://api.github.com/users/robertsirc/repos + site_admin: false + starred_url: https://api.github.com/users/robertsirc/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/robertsirc/subscriptions + type: User + url: https://api.github.com/users/robertsirc + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/282249155 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.5/helm-v3.18.5-linux-arm.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2025-08-13T19:48:00Z" + digest: sha256:d0cb5cfc0b4258d544951ce6b4f5382745cfb05f5b4e132cfdfd47655e67ae12 + download_count: 4 + id: 282249153 + label: null + name: helm-v3.18.5-linux-arm.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4Q0sfB + size: 228 + state: uploaded + updated_at: "2025-08-13T19:48:00Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/13884882?v=4 + events_url: https://api.github.com/users/robertsirc/events{/privacy} + followers_url: https://api.github.com/users/robertsirc/followers + following_url: https://api.github.com/users/robertsirc/following{/other_user} + gists_url: https://api.github.com/users/robertsirc/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/robertsirc + id: 13884882 + login: robertsirc + node_id: MDQ6VXNlcjEzODg0ODgy + organizations_url: https://api.github.com/users/robertsirc/orgs + received_events_url: https://api.github.com/users/robertsirc/received_events + repos_url: https://api.github.com/users/robertsirc/repos + site_admin: false + starred_url: https://api.github.com/users/robertsirc/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/robertsirc/subscriptions + type: User + url: https://api.github.com/users/robertsirc + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/282249153 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.5/helm-v3.18.5-linux-arm.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2025-08-13T19:48:00Z" + digest: sha256:706c4535e7ecf85d200efbb7ceeb63791ce643abaf668886e2296122202ae013 + download_count: 4 + id: 282249152 + label: null + name: helm-v3.18.5-linux-arm.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4Q0sfA + size: 228 + state: uploaded + updated_at: "2025-08-13T19:48:00Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/13884882?v=4 + events_url: https://api.github.com/users/robertsirc/events{/privacy} + followers_url: https://api.github.com/users/robertsirc/followers + following_url: https://api.github.com/users/robertsirc/following{/other_user} + gists_url: https://api.github.com/users/robertsirc/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/robertsirc + id: 13884882 + login: robertsirc + node_id: MDQ6VXNlcjEzODg0ODgy + organizations_url: https://api.github.com/users/robertsirc/orgs + received_events_url: https://api.github.com/users/robertsirc/received_events + repos_url: https://api.github.com/users/robertsirc/repos + site_admin: false + starred_url: https://api.github.com/users/robertsirc/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/robertsirc/subscriptions + type: User + url: https://api.github.com/users/robertsirc + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/282249152 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.5/helm-v3.18.5-linux-arm64.tar.gz.asc + content_type: application/octet-stream + created_at: "2025-08-13T19:47:59Z" + digest: sha256:95c443e393a1dc7629bba84f810814602f027fd98d23eeebff30c4711144c58b + download_count: 5 + id: 282249151 + label: null + name: helm-v3.18.5-linux-arm64.tar.gz.asc + node_id: RA_kwDOApspmc4Q0se_ + size: 228 + state: uploaded + updated_at: "2025-08-13T19:48:00Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/13884882?v=4 + events_url: https://api.github.com/users/robertsirc/events{/privacy} + followers_url: https://api.github.com/users/robertsirc/followers + following_url: https://api.github.com/users/robertsirc/following{/other_user} + gists_url: https://api.github.com/users/robertsirc/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/robertsirc + id: 13884882 + login: robertsirc + node_id: MDQ6VXNlcjEzODg0ODgy + organizations_url: https://api.github.com/users/robertsirc/orgs + received_events_url: https://api.github.com/users/robertsirc/received_events + repos_url: https://api.github.com/users/robertsirc/repos + site_admin: false + starred_url: https://api.github.com/users/robertsirc/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/robertsirc/subscriptions + type: User + url: https://api.github.com/users/robertsirc + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/282249151 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.5/helm-v3.18.5-linux-arm64.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2025-08-13T19:47:59Z" + digest: sha256:b8be0fe931a98bf9b3502e9f3e9ee35c1190b1f97826c45e24092fa2cd1ef6a1 + download_count: 6 + id: 282249150 + label: null + name: helm-v3.18.5-linux-arm64.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4Q0se- + size: 228 + state: uploaded + updated_at: "2025-08-13T19:47:59Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/13884882?v=4 + events_url: https://api.github.com/users/robertsirc/events{/privacy} + followers_url: https://api.github.com/users/robertsirc/followers + following_url: https://api.github.com/users/robertsirc/following{/other_user} + gists_url: https://api.github.com/users/robertsirc/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/robertsirc + id: 13884882 + login: robertsirc + node_id: MDQ6VXNlcjEzODg0ODgy + organizations_url: https://api.github.com/users/robertsirc/orgs + received_events_url: https://api.github.com/users/robertsirc/received_events + repos_url: https://api.github.com/users/robertsirc/repos + site_admin: false + starred_url: https://api.github.com/users/robertsirc/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/robertsirc/subscriptions + type: User + url: https://api.github.com/users/robertsirc + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/282249150 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.5/helm-v3.18.5-linux-arm64.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2025-08-13T19:47:59Z" + digest: sha256:f650e1cc9f31a00610333d10d8c7c8d7331aef55ef2c8a1f3498bb3d4e105125 + download_count: 4 + id: 282249148 + label: null + name: helm-v3.18.5-linux-arm64.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4Q0se8 + size: 228 + state: uploaded + updated_at: "2025-08-13T19:47:59Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/13884882?v=4 + events_url: https://api.github.com/users/robertsirc/events{/privacy} + followers_url: https://api.github.com/users/robertsirc/followers + following_url: https://api.github.com/users/robertsirc/following{/other_user} + gists_url: https://api.github.com/users/robertsirc/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/robertsirc + id: 13884882 + login: robertsirc + node_id: MDQ6VXNlcjEzODg0ODgy + organizations_url: https://api.github.com/users/robertsirc/orgs + received_events_url: https://api.github.com/users/robertsirc/received_events + repos_url: https://api.github.com/users/robertsirc/repos + site_admin: false + starred_url: https://api.github.com/users/robertsirc/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/robertsirc/subscriptions + type: User + url: https://api.github.com/users/robertsirc + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/282249148 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.5/helm-v3.18.5-linux-ppc64le.tar.gz.asc + content_type: application/octet-stream + created_at: "2025-08-13T19:47:59Z" + digest: sha256:e55548e4837b3044b3f0d6ce6eb212c2f5946dacb08f6f6117781dffc33f17e9 + download_count: 3 + id: 282249147 + label: null + name: helm-v3.18.5-linux-ppc64le.tar.gz.asc + node_id: RA_kwDOApspmc4Q0se7 + size: 228 + state: uploaded + updated_at: "2025-08-13T19:47:59Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/13884882?v=4 + events_url: https://api.github.com/users/robertsirc/events{/privacy} + followers_url: https://api.github.com/users/robertsirc/followers + following_url: https://api.github.com/users/robertsirc/following{/other_user} + gists_url: https://api.github.com/users/robertsirc/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/robertsirc + id: 13884882 + login: robertsirc + node_id: MDQ6VXNlcjEzODg0ODgy + organizations_url: https://api.github.com/users/robertsirc/orgs + received_events_url: https://api.github.com/users/robertsirc/received_events + repos_url: https://api.github.com/users/robertsirc/repos + site_admin: false + starred_url: https://api.github.com/users/robertsirc/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/robertsirc/subscriptions + type: User + url: https://api.github.com/users/robertsirc + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/282249147 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.5/helm-v3.18.5-linux-ppc64le.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2025-08-13T19:47:59Z" + digest: sha256:a4dde8cd6c7b84d6ee2f156b6e57f979588b2f081811030f4884549da48a3d1a + download_count: 4 + id: 282249146 + label: null + name: helm-v3.18.5-linux-ppc64le.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4Q0se6 + size: 228 + state: uploaded + updated_at: "2025-08-13T19:47:59Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/13884882?v=4 + events_url: https://api.github.com/users/robertsirc/events{/privacy} + followers_url: https://api.github.com/users/robertsirc/followers + following_url: https://api.github.com/users/robertsirc/following{/other_user} + gists_url: https://api.github.com/users/robertsirc/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/robertsirc + id: 13884882 + login: robertsirc + node_id: MDQ6VXNlcjEzODg0ODgy + organizations_url: https://api.github.com/users/robertsirc/orgs + received_events_url: https://api.github.com/users/robertsirc/received_events + repos_url: https://api.github.com/users/robertsirc/repos + site_admin: false + starred_url: https://api.github.com/users/robertsirc/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/robertsirc/subscriptions + type: User + url: https://api.github.com/users/robertsirc + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/282249146 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.5/helm-v3.18.5-linux-ppc64le.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2025-08-13T19:47:58Z" + digest: sha256:feefbc78abf5539b6fcbd7ba5ef3e087d9b539f5ab8f6693fc93efc1de95f5f5 + download_count: 4 + id: 282249145 + label: null + name: helm-v3.18.5-linux-ppc64le.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4Q0se5 + size: 228 + state: uploaded + updated_at: "2025-08-13T19:47:59Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/13884882?v=4 + events_url: https://api.github.com/users/robertsirc/events{/privacy} + followers_url: https://api.github.com/users/robertsirc/followers + following_url: https://api.github.com/users/robertsirc/following{/other_user} + gists_url: https://api.github.com/users/robertsirc/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/robertsirc + id: 13884882 + login: robertsirc + node_id: MDQ6VXNlcjEzODg0ODgy + organizations_url: https://api.github.com/users/robertsirc/orgs + received_events_url: https://api.github.com/users/robertsirc/received_events + repos_url: https://api.github.com/users/robertsirc/repos + site_admin: false + starred_url: https://api.github.com/users/robertsirc/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/robertsirc/subscriptions + type: User + url: https://api.github.com/users/robertsirc + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/282249145 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.5/helm-v3.18.5-linux-riscv64.tar.gz.asc + content_type: application/octet-stream + created_at: "2025-08-13T19:47:58Z" + digest: sha256:2c6b705539e3563e3422d6aee8f0abb331c9d73f8ef0e6764269b8b9f02b2ce5 + download_count: 3 + id: 282249144 + label: null + name: helm-v3.18.5-linux-riscv64.tar.gz.asc + node_id: RA_kwDOApspmc4Q0se4 + size: 228 + state: uploaded + updated_at: "2025-08-13T19:47:58Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/13884882?v=4 + events_url: https://api.github.com/users/robertsirc/events{/privacy} + followers_url: https://api.github.com/users/robertsirc/followers + following_url: https://api.github.com/users/robertsirc/following{/other_user} + gists_url: https://api.github.com/users/robertsirc/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/robertsirc + id: 13884882 + login: robertsirc + node_id: MDQ6VXNlcjEzODg0ODgy + organizations_url: https://api.github.com/users/robertsirc/orgs + received_events_url: https://api.github.com/users/robertsirc/received_events + repos_url: https://api.github.com/users/robertsirc/repos + site_admin: false + starred_url: https://api.github.com/users/robertsirc/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/robertsirc/subscriptions + type: User + url: https://api.github.com/users/robertsirc + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/282249144 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.5/helm-v3.18.5-linux-riscv64.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2025-08-13T19:47:58Z" + digest: sha256:270153307571e2b52966fdb4206e59a7d6b28664411aceb73cd0236313801364 + download_count: 4 + id: 282249143 + label: null + name: helm-v3.18.5-linux-riscv64.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4Q0se3 + size: 228 + state: uploaded + updated_at: "2025-08-13T19:47:58Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/13884882?v=4 + events_url: https://api.github.com/users/robertsirc/events{/privacy} + followers_url: https://api.github.com/users/robertsirc/followers + following_url: https://api.github.com/users/robertsirc/following{/other_user} + gists_url: https://api.github.com/users/robertsirc/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/robertsirc + id: 13884882 + login: robertsirc + node_id: MDQ6VXNlcjEzODg0ODgy + organizations_url: https://api.github.com/users/robertsirc/orgs + received_events_url: https://api.github.com/users/robertsirc/received_events + repos_url: https://api.github.com/users/robertsirc/repos + site_admin: false + starred_url: https://api.github.com/users/robertsirc/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/robertsirc/subscriptions + type: User + url: https://api.github.com/users/robertsirc + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/282249143 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.5/helm-v3.18.5-linux-riscv64.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2025-08-13T19:47:58Z" + digest: sha256:e15b8a681f2506cd99951a242060334843caaa438578cc6443015c92235d0062 + download_count: 4 + id: 282249142 + label: null + name: helm-v3.18.5-linux-riscv64.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4Q0se2 + size: 228 + state: uploaded + updated_at: "2025-08-13T19:47:58Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/13884882?v=4 + events_url: https://api.github.com/users/robertsirc/events{/privacy} + followers_url: https://api.github.com/users/robertsirc/followers + following_url: https://api.github.com/users/robertsirc/following{/other_user} + gists_url: https://api.github.com/users/robertsirc/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/robertsirc + id: 13884882 + login: robertsirc + node_id: MDQ6VXNlcjEzODg0ODgy + organizations_url: https://api.github.com/users/robertsirc/orgs + received_events_url: https://api.github.com/users/robertsirc/received_events + repos_url: https://api.github.com/users/robertsirc/repos + site_admin: false + starred_url: https://api.github.com/users/robertsirc/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/robertsirc/subscriptions + type: User + url: https://api.github.com/users/robertsirc + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/282249142 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.5/helm-v3.18.5-linux-s390x.tar.gz.asc + content_type: application/octet-stream + created_at: "2025-08-13T19:47:58Z" + digest: sha256:878bd7789d314c03f1d2c9ac375ef623ab687ae751f7201d6855b27b26e5a5ea + download_count: 3 + id: 282249141 + label: null + name: helm-v3.18.5-linux-s390x.tar.gz.asc + node_id: RA_kwDOApspmc4Q0se1 + size: 228 + state: uploaded + updated_at: "2025-08-13T19:47:58Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/13884882?v=4 + events_url: https://api.github.com/users/robertsirc/events{/privacy} + followers_url: https://api.github.com/users/robertsirc/followers + following_url: https://api.github.com/users/robertsirc/following{/other_user} + gists_url: https://api.github.com/users/robertsirc/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/robertsirc + id: 13884882 + login: robertsirc + node_id: MDQ6VXNlcjEzODg0ODgy + organizations_url: https://api.github.com/users/robertsirc/orgs + received_events_url: https://api.github.com/users/robertsirc/received_events + repos_url: https://api.github.com/users/robertsirc/repos + site_admin: false + starred_url: https://api.github.com/users/robertsirc/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/robertsirc/subscriptions + type: User + url: https://api.github.com/users/robertsirc + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/282249141 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.5/helm-v3.18.5-linux-s390x.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2025-08-13T19:47:57Z" + digest: sha256:69c0ec8597eb81849b2f0e71f0fdbc0ff6d457e32b5eab15b19bbc0e7bdf6987 + download_count: 4 + id: 282249139 + label: null + name: helm-v3.18.5-linux-s390x.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4Q0sez + size: 228 + state: uploaded + updated_at: "2025-08-13T19:47:58Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/13884882?v=4 + events_url: https://api.github.com/users/robertsirc/events{/privacy} + followers_url: https://api.github.com/users/robertsirc/followers + following_url: https://api.github.com/users/robertsirc/following{/other_user} + gists_url: https://api.github.com/users/robertsirc/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/robertsirc + id: 13884882 + login: robertsirc + node_id: MDQ6VXNlcjEzODg0ODgy + organizations_url: https://api.github.com/users/robertsirc/orgs + received_events_url: https://api.github.com/users/robertsirc/received_events + repos_url: https://api.github.com/users/robertsirc/repos + site_admin: false + starred_url: https://api.github.com/users/robertsirc/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/robertsirc/subscriptions + type: User + url: https://api.github.com/users/robertsirc + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/282249139 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.5/helm-v3.18.5-linux-s390x.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2025-08-13T19:47:57Z" + digest: sha256:5e0a8f88fde3cb55578c674efc602ff1d1d2b6a989373bf1a187b037c07ea702 + download_count: 4 + id: 282249138 + label: null + name: helm-v3.18.5-linux-s390x.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4Q0sey + size: 228 + state: uploaded + updated_at: "2025-08-13T19:47:57Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/13884882?v=4 + events_url: https://api.github.com/users/robertsirc/events{/privacy} + followers_url: https://api.github.com/users/robertsirc/followers + following_url: https://api.github.com/users/robertsirc/following{/other_user} + gists_url: https://api.github.com/users/robertsirc/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/robertsirc + id: 13884882 + login: robertsirc + node_id: MDQ6VXNlcjEzODg0ODgy + organizations_url: https://api.github.com/users/robertsirc/orgs + received_events_url: https://api.github.com/users/robertsirc/received_events + repos_url: https://api.github.com/users/robertsirc/repos + site_admin: false + starred_url: https://api.github.com/users/robertsirc/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/robertsirc/subscriptions + type: User + url: https://api.github.com/users/robertsirc + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/282249138 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.5/helm-v3.18.5-windows-amd64.zip.asc + content_type: application/octet-stream + created_at: "2025-08-13T19:47:57Z" + digest: sha256:b853420d9d8ad04285b75aabbd4efd9695169d11a97f5d8e529c277cb86a1fe8 + download_count: 3 + id: 282249137 + label: null + name: helm-v3.18.5-windows-amd64.zip.asc + node_id: RA_kwDOApspmc4Q0sex + size: 228 + state: uploaded + updated_at: "2025-08-13T19:47:57Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/13884882?v=4 + events_url: https://api.github.com/users/robertsirc/events{/privacy} + followers_url: https://api.github.com/users/robertsirc/followers + following_url: https://api.github.com/users/robertsirc/following{/other_user} + gists_url: https://api.github.com/users/robertsirc/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/robertsirc + id: 13884882 + login: robertsirc + node_id: MDQ6VXNlcjEzODg0ODgy + organizations_url: https://api.github.com/users/robertsirc/orgs + received_events_url: https://api.github.com/users/robertsirc/received_events + repos_url: https://api.github.com/users/robertsirc/repos + site_admin: false + starred_url: https://api.github.com/users/robertsirc/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/robertsirc/subscriptions + type: User + url: https://api.github.com/users/robertsirc + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/282249137 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.5/helm-v3.18.5-windows-amd64.zip.sha256.asc + content_type: application/octet-stream + created_at: "2025-08-13T19:47:57Z" + digest: sha256:f1482b3955f050634998e8097919288087f5e4dde2003124254332d2f394c8c1 + download_count: 4 + id: 282249135 + label: null + name: helm-v3.18.5-windows-amd64.zip.sha256.asc + node_id: RA_kwDOApspmc4Q0sev + size: 228 + state: uploaded + updated_at: "2025-08-13T19:47:57Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/13884882?v=4 + events_url: https://api.github.com/users/robertsirc/events{/privacy} + followers_url: https://api.github.com/users/robertsirc/followers + following_url: https://api.github.com/users/robertsirc/following{/other_user} + gists_url: https://api.github.com/users/robertsirc/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/robertsirc + id: 13884882 + login: robertsirc + node_id: MDQ6VXNlcjEzODg0ODgy + organizations_url: https://api.github.com/users/robertsirc/orgs + received_events_url: https://api.github.com/users/robertsirc/received_events + repos_url: https://api.github.com/users/robertsirc/repos + site_admin: false + starred_url: https://api.github.com/users/robertsirc/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/robertsirc/subscriptions + type: User + url: https://api.github.com/users/robertsirc + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/282249135 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.5/helm-v3.18.5-windows-amd64.zip.sha256sum.asc + content_type: application/octet-stream + created_at: "2025-08-13T19:47:57Z" + digest: sha256:875091f762c5c26b2683453e98c98e6e7ec32a5093e629782c8d58fa38804a0e + download_count: 4 + id: 282249132 + label: null + name: helm-v3.18.5-windows-amd64.zip.sha256sum.asc + node_id: RA_kwDOApspmc4Q0ses + size: 228 + state: uploaded + updated_at: "2025-08-13T19:47:57Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/13884882?v=4 + events_url: https://api.github.com/users/robertsirc/events{/privacy} + followers_url: https://api.github.com/users/robertsirc/followers + following_url: https://api.github.com/users/robertsirc/following{/other_user} + gists_url: https://api.github.com/users/robertsirc/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/robertsirc + id: 13884882 + login: robertsirc + node_id: MDQ6VXNlcjEzODg0ODgy + organizations_url: https://api.github.com/users/robertsirc/orgs + received_events_url: https://api.github.com/users/robertsirc/received_events + repos_url: https://api.github.com/users/robertsirc/repos + site_admin: false + starred_url: https://api.github.com/users/robertsirc/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/robertsirc/subscriptions + type: User + url: https://api.github.com/users/robertsirc + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/282249132 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.5/helm-v3.18.5-windows-arm64.zip.asc + content_type: application/octet-stream + created_at: "2025-08-13T19:47:56Z" + digest: sha256:66aa1f1e13d2d1a5cd60fbb5c1ccfbc6766e1435bea089c06174a6aafb23485b + download_count: 3 + id: 282249128 + label: null + name: helm-v3.18.5-windows-arm64.zip.asc + node_id: RA_kwDOApspmc4Q0seo + size: 228 + state: uploaded + updated_at: "2025-08-13T19:47:57Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/13884882?v=4 + events_url: https://api.github.com/users/robertsirc/events{/privacy} + followers_url: https://api.github.com/users/robertsirc/followers + following_url: https://api.github.com/users/robertsirc/following{/other_user} + gists_url: https://api.github.com/users/robertsirc/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/robertsirc + id: 13884882 + login: robertsirc + node_id: MDQ6VXNlcjEzODg0ODgy + organizations_url: https://api.github.com/users/robertsirc/orgs + received_events_url: https://api.github.com/users/robertsirc/received_events + repos_url: https://api.github.com/users/robertsirc/repos + site_admin: false + starred_url: https://api.github.com/users/robertsirc/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/robertsirc/subscriptions + type: User + url: https://api.github.com/users/robertsirc + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/282249128 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.5/helm-v3.18.5-windows-arm64.zip.sha256.asc + content_type: application/octet-stream + created_at: "2025-08-13T19:47:56Z" + digest: sha256:22a8a305d863251d8563b980bcd2c9617753c02e47a1ddb563aa714bcc8f9a34 + download_count: 4 + id: 282249126 + label: null + name: helm-v3.18.5-windows-arm64.zip.sha256.asc + node_id: RA_kwDOApspmc4Q0sem + size: 228 + state: uploaded + updated_at: "2025-08-13T19:47:56Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/13884882?v=4 + events_url: https://api.github.com/users/robertsirc/events{/privacy} + followers_url: https://api.github.com/users/robertsirc/followers + following_url: https://api.github.com/users/robertsirc/following{/other_user} + gists_url: https://api.github.com/users/robertsirc/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/robertsirc + id: 13884882 + login: robertsirc + node_id: MDQ6VXNlcjEzODg0ODgy + organizations_url: https://api.github.com/users/robertsirc/orgs + received_events_url: https://api.github.com/users/robertsirc/received_events + repos_url: https://api.github.com/users/robertsirc/repos + site_admin: false + starred_url: https://api.github.com/users/robertsirc/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/robertsirc/subscriptions + type: User + url: https://api.github.com/users/robertsirc + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/282249126 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.5/helm-v3.18.5-windows-arm64.zip.sha256sum.asc + content_type: application/octet-stream + created_at: "2025-08-13T19:47:56Z" + digest: sha256:e0d7bd06bbef0eae5dcf107556e99678830e6c7aef54f6b9a36c093e6dee32c8 + download_count: 4 + id: 282249123 + label: null + name: helm-v3.18.5-windows-arm64.zip.sha256sum.asc + node_id: RA_kwDOApspmc4Q0sej + size: 228 + state: uploaded + updated_at: "2025-08-13T19:47:56Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/13884882?v=4 + events_url: https://api.github.com/users/robertsirc/events{/privacy} + followers_url: https://api.github.com/users/robertsirc/followers + following_url: https://api.github.com/users/robertsirc/following{/other_user} + gists_url: https://api.github.com/users/robertsirc/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/robertsirc + id: 13884882 + login: robertsirc + node_id: MDQ6VXNlcjEzODg0ODgy + organizations_url: https://api.github.com/users/robertsirc/orgs + received_events_url: https://api.github.com/users/robertsirc/received_events + repos_url: https://api.github.com/users/robertsirc/repos + site_admin: false + starred_url: https://api.github.com/users/robertsirc/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/robertsirc/subscriptions + type: User + url: https://api.github.com/users/robertsirc + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/282249123 + assets_url: https://api.github.com/repos/helm/helm/releases/239793213/assets + author: + avatar_url: https://avatars.githubusercontent.com/u/13884882?v=4 + events_url: https://api.github.com/users/robertsirc/events{/privacy} + followers_url: https://api.github.com/users/robertsirc/followers + following_url: https://api.github.com/users/robertsirc/following{/other_user} + gists_url: https://api.github.com/users/robertsirc/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/robertsirc + id: 13884882 + login: robertsirc + node_id: MDQ6VXNlcjEzODg0ODgy + organizations_url: https://api.github.com/users/robertsirc/orgs + received_events_url: https://api.github.com/users/robertsirc/received_events + repos_url: https://api.github.com/users/robertsirc/repos + site_admin: false + starred_url: https://api.github.com/users/robertsirc/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/robertsirc/subscriptions + type: User + url: https://api.github.com/users/robertsirc + user_view_type: public + body: "Helm v3.18.5 is a security release. Users are encouraged to upgrade + for the best experience.\r\n\r\nThe community keeps growing, and we'd + love to see you there!\r\n\r\n- Join the discussion in [Kubernetes Slack](https://kubernetes.slack.com):\r\n + \ - for questions and just to hang out\r\n - for discussing PRs, code, + and bugs\r\n- Hang out at the Public Developer Call: Thursday, 9:30 Pacific + via [Zoom](https://zoom.us/j/696660622)\r\n- Test, debug, and contribute + charts: [ArtifactHub/packages](https://artifacthub.io/packages/search?kind=0)\r\n\r\n## + Security Advisories\r\n\r\n- [Helm Charts with Specific JSON Schema Values + Can Cause Memory Exhaustion](https://github.com/helm/helm/security/advisories/GHSA-9h84-qmv7-982p)\r\n- + \ [Incorrect YAML Content Leads To Panic](https://github.com/helm/helm/security/advisories/GHSA-f9f8-9pmf-xv68)\r\n\r\n## + Installation and Upgrading\r\n\r\nDownload Helm v3.18.5. The common platform + binaries are here:\r\n\r\n- [MacOS amd64](https://get.helm.sh/helm-v3.18.5-darwin-amd64.tar.gz) + ([checksum](https://get.helm.sh/helm-v3.18.5-darwin-amd64.tar.gz.sha256sum) + / 3200c32cf19bf69b446e97c0060af39f018d2e441e418ad174ba39052f63fb15)\r\n- + [MacOS arm64](https://get.helm.sh/helm-v3.18.5-darwin-arm64.tar.gz) ([checksum](https://get.helm.sh/helm-v3.18.5-darwin-arm64.tar.gz.sha256sum) + / 32ce3f4910d5a96c1170f3f8f230d4c8b8bc007e5d47b085b8416cfe559d7925)\r\n- + [Linux amd64](https://get.helm.sh/helm-v3.18.5-linux-amd64.tar.gz) ([checksum](https://get.helm.sh/helm-v3.18.5-linux-amd64.tar.gz.sha256sum) + / 9879bf9c471cdecbbee5ee17cf1de1849b0ffd12871ea01f17ede6861d7134f5)\r\n- + [Linux arm](https://get.helm.sh/helm-v3.18.5-linux-arm.tar.gz) ([checksum](https://get.helm.sh/helm-v3.18.5-linux-arm.tar.gz.sha256sum) + / 4be47fa77476bfd6416a44853e28983e7c8594156259813ecf35d004044fb17d)\r\n- + [Linux arm64](https://get.helm.sh/helm-v3.18.5-linux-arm64.tar.gz) ([checksum](https://get.helm.sh/helm-v3.18.5-linux-arm64.tar.gz.sha256sum) + / d25d2c1b1c5a9844755ab5c66e6df4d6b31c25e6d92dd2ce66c137a63ddf9f2c)\r\n- + [Linux i386](https://get.helm.sh/helm-v3.18.5-linux-386.tar.gz) ([checksum](https://get.helm.sh/helm-v3.18.5-linux-386.tar.gz.sha256sum) + / 1ee980e47bb37f388abdce3a7e8da64a9b372352c4cb645bda5ddd401973bee3)\r\n- + [Linux ppc64le](https://get.helm.sh/helm-v3.18.5-linux-ppc64le.tar.gz) + ([checksum](https://get.helm.sh/helm-v3.18.5-linux-ppc64le.tar.gz.sha256sum) + / 9d300e0efced9b244aedcc9d11c49647deb4c5afc8d2298c988498dc530bc932)\r\n- + [Linux s390x](https://get.helm.sh/helm-v3.18.5-linux-s390x.tar.gz) ([checksum](https://get.helm.sh/helm-v3.18.5-linux-s390x.tar.gz.sha256sum) + / c779bb4dea8026294378a9ad6447095fb8f56671a8c49437344dd342de2a3156)\r\n- + [Linux riscv64](https://get.helm.sh/helm-v3.18.5-linux-riscv64.tar.gz) + ([checksum](https://get.helm.sh/helm-v3.18.5-linux-riscv64.tar.gz.sha256sum) + / f79d06dc5e966c341fc8ad1a0d5e032f7d681e62c4a51a4d22badec4b9857144)\r\n- + [Windows amd64](https://get.helm.sh/helm-v3.18.5-windows-amd64.zip) ([checksum](https://get.helm.sh/helm-v3.18.5-windows-amd64.zip.sha256sum) + / 464bfd7792d6c682778fc1d5e5bcc9ac5ce83457fe3c4b7a3d0af4dc3ef03eb1)\r\n- + [Windows arm64](https://get.helm.sh/helm-v3.18.5-windows-arm64.zip) ([checksum](https://get.helm.sh/helm-v3.18.5-windows-arm64.zip.sha256sum) + / 82411e3ee4e349d30221ddf6c26397bb0a41666939b338ccf39f4cd2ec4e4410)\r\n\r\nThe + [Quickstart Guide](https://helm.sh/docs/intro/quickstart/) will get you + going from there. For **upgrade instructions** or detailed installation + notes, check the [install guide](https://helm.sh/docs/intro/install/). + You can also use a [script to install](https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3) + on any system with `bash`.\r\n\r\n## What's Next\r\n\r\n- 3.18.6 will + contain only bug fixes.\r\n- 3.19.5 is the next feature release. This + release will focus on ...\r\n\r\n## Changelog\r\n\r\n- fix Chart.yaml + handling 7799b483f52ceb665264a4056da3d2569d60f910 (Matt Farina)\r\n- Handle + messy index files dd8502f7b4fd5824a696c99909babd0fbed77e9e (Matt Farina)\r\n- + json schema fix cb8595bc650e2ec7459427d2b0430599431a3dbe (Robert Sirchia)" + created_at: "2025-08-13T19:29:36Z" + draft: false + html_url: https://github.com/helm/helm/releases/tag/v3.18.5 + id: 239793213 + immutable: false + name: Helm v3.18.5 + node_id: RE_kwDOApspmc4OSvQ9 + prerelease: false + published_at: "2025-08-13T19:48:31Z" + tag_name: v3.18.5 + tarball_url: https://api.github.com/repos/helm/helm/tarball/v3.18.5 + target_commitish: main + updated_at: "2025-08-13T19:48:31Z" + upload_url: https://uploads.github.com/repos/helm/helm/releases/239793213/assets{?name,label} + url: https://api.github.com/repos/helm/helm/releases/239793213 + zipball_url: https://api.github.com/repos/helm/helm/zipball/v3.18.5 + 3.18.6: + githubRelease: + assets: + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.6/helm-v3.18.6-darwin-amd64.tar.gz.asc + content_type: application/octet-stream + created_at: "2025-08-19T20:32:38Z" + digest: sha256:8001c0acabaaa4105b09d4e0355caf24d9a6602c7e2a8ac775137e9ce4515d9c + download_count: 3 + id: 284162061 + label: null + name: helm-v3.18.6-darwin-amd64.tar.gz.asc + node_id: RA_kwDOApspmc4Q7_gN + size: 833 + state: uploaded + updated_at: "2025-08-19T20:32:38Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/284162061 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.6/helm-v3.18.6-darwin-amd64.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2025-08-19T20:32:38Z" + digest: sha256:a4847567bce7c5ef4f9bf51e49d785bc1aa48b2783dbbd642ac793a587eb6054 + download_count: 4 + id: 284162058 + label: null + name: helm-v3.18.6-darwin-amd64.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4Q7_gK + size: 833 + state: uploaded + updated_at: "2025-08-19T20:32:38Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/284162058 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.6/helm-v3.18.6-darwin-amd64.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2025-08-19T20:32:37Z" + digest: sha256:241f2eda22e9bb397f25e06bf6ea2df89feffef5ba80ba12391b5fea4b97e294 + download_count: 4 + id: 284162057 + label: null + name: helm-v3.18.6-darwin-amd64.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4Q7_gJ + size: 833 + state: uploaded + updated_at: "2025-08-19T20:32:38Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/284162057 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.6/helm-v3.18.6-darwin-arm64.tar.gz.asc + content_type: application/octet-stream + created_at: "2025-08-19T20:32:37Z" + digest: sha256:234e5028e56ac4ce23e42c8a93ba760f9277f7ca9324052747a15a7edc31cccf + download_count: 3 + id: 284162055 + label: null + name: helm-v3.18.6-darwin-arm64.tar.gz.asc + node_id: RA_kwDOApspmc4Q7_gH + size: 833 + state: uploaded + updated_at: "2025-08-19T20:32:37Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/284162055 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.6/helm-v3.18.6-darwin-arm64.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2025-08-19T20:32:37Z" + digest: sha256:50d68ac35bfe9aad81fe4864f0f505b7ce21feb3b17bd3704bbc7252cf65f03a + download_count: 4 + id: 284162053 + label: null + name: helm-v3.18.6-darwin-arm64.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4Q7_gF + size: 833 + state: uploaded + updated_at: "2025-08-19T20:32:37Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/284162053 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.6/helm-v3.18.6-darwin-arm64.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2025-08-19T20:32:37Z" + digest: sha256:c1a7d428d8062b1fc5c0c01547ff2724ddd8689e0b3f4208b5cdb8b8b03f54dd + download_count: 4 + id: 284162052 + label: null + name: helm-v3.18.6-darwin-arm64.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4Q7_gE + size: 833 + state: uploaded + updated_at: "2025-08-19T20:32:37Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/284162052 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.6/helm-v3.18.6-linux-386.tar.gz.asc + content_type: application/octet-stream + created_at: "2025-08-19T20:32:36Z" + digest: sha256:a8acfc0759d82ffe33a039c010cfc041116a4fe91b80ee1912fa21b18cc52e01 + download_count: 3 + id: 284162050 + label: null + name: helm-v3.18.6-linux-386.tar.gz.asc + node_id: RA_kwDOApspmc4Q7_gC + size: 833 + state: uploaded + updated_at: "2025-08-19T20:32:37Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/284162050 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.6/helm-v3.18.6-linux-386.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2025-08-19T20:32:36Z" + digest: sha256:11f62a8e3e236e2aee21e999c979ada1f754fe8f2c0cdb57e94a842cfd7a27ae + download_count: 4 + id: 284162049 + label: null + name: helm-v3.18.6-linux-386.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4Q7_gB + size: 833 + state: uploaded + updated_at: "2025-08-19T20:32:36Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/284162049 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.6/helm-v3.18.6-linux-386.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2025-08-19T20:32:36Z" + digest: sha256:531950a85b96153f19007adf1ab9078b9db142f9b65dd134146c3574deea1f17 + download_count: 4 + id: 284162048 + label: null + name: helm-v3.18.6-linux-386.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4Q7_gA + size: 833 + state: uploaded + updated_at: "2025-08-19T20:32:36Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/284162048 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.6/helm-v3.18.6-linux-amd64.tar.gz.asc + content_type: application/octet-stream + created_at: "2025-08-19T20:32:36Z" + digest: sha256:a64ee8aa60e6fc87600ceeb94fdcb3029176f64b48e7c1c3db1956f8c79cae06 + download_count: 14 + id: 284162046 + label: null + name: helm-v3.18.6-linux-amd64.tar.gz.asc + node_id: RA_kwDOApspmc4Q7_f- + size: 833 + state: uploaded + updated_at: "2025-08-19T20:32:36Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/284162046 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.6/helm-v3.18.6-linux-amd64.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2025-08-19T20:32:35Z" + digest: sha256:6bc0763634175a5804fb4b27cb3c77f6445c16b3bf58590a83aad39e87b43f85 + download_count: 14 + id: 284162044 + label: null + name: helm-v3.18.6-linux-amd64.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4Q7_f8 + size: 833 + state: uploaded + updated_at: "2025-08-19T20:32:36Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/284162044 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.6/helm-v3.18.6-linux-amd64.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2025-08-19T20:32:35Z" + digest: sha256:df76d350d34da0782dddef9e0a61dc8217df463ee38f7720e81dc86b18c2a451 + download_count: 4 + id: 284162043 + label: null + name: helm-v3.18.6-linux-amd64.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4Q7_f7 + size: 833 + state: uploaded + updated_at: "2025-08-19T20:32:35Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/284162043 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.6/helm-v3.18.6-linux-arm.tar.gz.asc + content_type: application/octet-stream + created_at: "2025-08-19T20:32:35Z" + digest: sha256:e22aa5c344c3709c178a311c36257f9265d8e4fe330cb315e43c81a8cbdae123 + download_count: 3 + id: 284162041 + label: null + name: helm-v3.18.6-linux-arm.tar.gz.asc + node_id: RA_kwDOApspmc4Q7_f5 + size: 833 + state: uploaded + updated_at: "2025-08-19T20:32:35Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/284162041 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.6/helm-v3.18.6-linux-arm.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2025-08-19T20:32:35Z" + digest: sha256:7154dff202fcf10e560c2b7c0219c04b56cedd0c77c5aa7f54be968f4562b412 + download_count: 4 + id: 284162039 + label: null + name: helm-v3.18.6-linux-arm.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4Q7_f3 + size: 833 + state: uploaded + updated_at: "2025-08-19T20:32:35Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/284162039 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.6/helm-v3.18.6-linux-arm.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2025-08-19T20:32:35Z" + digest: sha256:1d5b16f9d1db733939a4e70532c32e294a27143f723a17982e3d497afbec8e9c + download_count: 4 + id: 284162037 + label: null + name: helm-v3.18.6-linux-arm.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4Q7_f1 + size: 833 + state: uploaded + updated_at: "2025-08-19T20:32:35Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/284162037 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.6/helm-v3.18.6-linux-arm64.tar.gz.asc + content_type: application/octet-stream + created_at: "2025-08-19T20:32:34Z" + digest: sha256:cdab35f260e97d3e3c74756dde2301bed580da8b827998a6d65eb6003d5cecfc + download_count: 4 + id: 284162035 + label: null + name: helm-v3.18.6-linux-arm64.tar.gz.asc + node_id: RA_kwDOApspmc4Q7_fz + size: 833 + state: uploaded + updated_at: "2025-08-19T20:32:35Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/284162035 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.6/helm-v3.18.6-linux-arm64.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2025-08-19T20:32:34Z" + digest: sha256:019df6b80deed655e37e50839ab438c84da253d17a41068932cb2d9e113e2794 + download_count: 5 + id: 284162034 + label: null + name: helm-v3.18.6-linux-arm64.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4Q7_fy + size: 833 + state: uploaded + updated_at: "2025-08-19T20:32:34Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/284162034 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.6/helm-v3.18.6-linux-arm64.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2025-08-19T20:32:34Z" + digest: sha256:0f14e175dd6378eaa2ec91c1e21a4bd0dc26ab5405186cc14591a829001d50cc + download_count: 4 + id: 284162033 + label: null + name: helm-v3.18.6-linux-arm64.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4Q7_fx + size: 833 + state: uploaded + updated_at: "2025-08-19T20:32:34Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/284162033 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.6/helm-v3.18.6-linux-ppc64le.tar.gz.asc + content_type: application/octet-stream + created_at: "2025-08-19T20:32:34Z" + digest: sha256:185b6268eca91ef886d754307cbb8e70b6a60d27b851c148c7372de612199ab6 + download_count: 3 + id: 284162030 + label: null + name: helm-v3.18.6-linux-ppc64le.tar.gz.asc + node_id: RA_kwDOApspmc4Q7_fu + size: 833 + state: uploaded + updated_at: "2025-08-19T20:32:34Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/284162030 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.6/helm-v3.18.6-linux-ppc64le.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2025-08-19T20:32:34Z" + digest: sha256:3fe1fee4846a4021e8f1201e43c562cda621e5a83073a5f758e4be8d526ec999 + download_count: 4 + id: 284162024 + label: null + name: helm-v3.18.6-linux-ppc64le.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4Q7_fo + size: 833 + state: uploaded + updated_at: "2025-08-19T20:32:34Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/284162024 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.6/helm-v3.18.6-linux-ppc64le.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2025-08-19T20:32:33Z" + digest: sha256:39d17de5bf8201b592f321fd74d78662bb377dc243a3d7e3f8834ab64f211711 + download_count: 4 + id: 284162021 + label: null + name: helm-v3.18.6-linux-ppc64le.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4Q7_fl + size: 833 + state: uploaded + updated_at: "2025-08-19T20:32:34Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/284162021 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.6/helm-v3.18.6-linux-riscv64.tar.gz.asc + content_type: application/octet-stream + created_at: "2025-08-19T20:32:33Z" + digest: sha256:1a4b305e4863bee440b750b5efce90da000e99dc21f5b0996065a47753b32bd6 + download_count: 3 + id: 284162019 + label: null + name: helm-v3.18.6-linux-riscv64.tar.gz.asc + node_id: RA_kwDOApspmc4Q7_fj + size: 833 + state: uploaded + updated_at: "2025-08-19T20:32:33Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/284162019 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.6/helm-v3.18.6-linux-riscv64.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2025-08-19T20:32:33Z" + digest: sha256:03cd6816481a1264aeac93bcfcff6c2c860536e2da88153b2bce5ec94bdaed0a + download_count: 4 + id: 284162016 + label: null + name: helm-v3.18.6-linux-riscv64.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4Q7_fg + size: 833 + state: uploaded + updated_at: "2025-08-19T20:32:33Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/284162016 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.6/helm-v3.18.6-linux-riscv64.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2025-08-19T20:32:33Z" + digest: sha256:020025f5a177e9c2a6d3839366ae3663b2837be7cc7b3630d44ca71c9ad7405b + download_count: 4 + id: 284162012 + label: null + name: helm-v3.18.6-linux-riscv64.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4Q7_fc + size: 833 + state: uploaded + updated_at: "2025-08-19T20:32:33Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/284162012 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.6/helm-v3.18.6-linux-s390x.tar.gz.asc + content_type: application/octet-stream + created_at: "2025-08-19T20:32:32Z" + digest: sha256:5e9e18b1ef6e76039f299cd27b5ff8f5f7def835c54c2c6a44a8d5739fabf61e + download_count: 3 + id: 284162010 + label: null + name: helm-v3.18.6-linux-s390x.tar.gz.asc + node_id: RA_kwDOApspmc4Q7_fa + size: 833 + state: uploaded + updated_at: "2025-08-19T20:32:33Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/284162010 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.6/helm-v3.18.6-linux-s390x.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2025-08-19T20:32:32Z" + digest: sha256:215683d7d445f781cc113c3020befc3922431c89de4d0b89e315ba1cd886035c + download_count: 4 + id: 284162008 + label: null + name: helm-v3.18.6-linux-s390x.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4Q7_fY + size: 833 + state: uploaded + updated_at: "2025-08-19T20:32:32Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/284162008 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.6/helm-v3.18.6-linux-s390x.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2025-08-19T20:32:32Z" + digest: sha256:b90f8c5cc4026e5bdc91e90349222d2444234d75b687e60663f82197c2ff0b98 + download_count: 4 + id: 284162007 + label: null + name: helm-v3.18.6-linux-s390x.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4Q7_fX + size: 833 + state: uploaded + updated_at: "2025-08-19T20:32:32Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/284162007 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.6/helm-v3.18.6-windows-amd64.zip.asc + content_type: application/octet-stream + created_at: "2025-08-19T20:32:32Z" + digest: sha256:b80866eded291ad5260c6a0a788b67e62efa8439f9106758ff328866cec31d6e + download_count: 3 + id: 284162002 + label: null + name: helm-v3.18.6-windows-amd64.zip.asc + node_id: RA_kwDOApspmc4Q7_fS + size: 833 + state: uploaded + updated_at: "2025-08-19T20:32:32Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/284162002 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.6/helm-v3.18.6-windows-amd64.zip.sha256.asc + content_type: application/octet-stream + created_at: "2025-08-19T20:32:31Z" + digest: sha256:3276cf990a8617a4efaf633ceefb0ec6b5100fdd8cffa6916df3dc1692d57119 + download_count: 4 + id: 284162001 + label: null + name: helm-v3.18.6-windows-amd64.zip.sha256.asc + node_id: RA_kwDOApspmc4Q7_fR + size: 833 + state: uploaded + updated_at: "2025-08-19T20:32:32Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/284162001 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.6/helm-v3.18.6-windows-amd64.zip.sha256sum.asc + content_type: application/octet-stream + created_at: "2025-08-19T20:32:31Z" + digest: sha256:fb25c44aef3a9ba899ab3e808c43255e5dc4762a056b4f5356657f95beb62430 + download_count: 4 + id: 284162000 + label: null + name: helm-v3.18.6-windows-amd64.zip.sha256sum.asc + node_id: RA_kwDOApspmc4Q7_fQ + size: 833 + state: uploaded + updated_at: "2025-08-19T20:32:31Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/284162000 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.6/helm-v3.18.6-windows-arm64.zip.asc + content_type: application/octet-stream + created_at: "2025-08-19T20:32:31Z" + digest: sha256:ceef35debd49bdba94c907b46a2c666c4eafc24aecfd75b1940f6e245616be3d + download_count: 3 + id: 284161999 + label: null + name: helm-v3.18.6-windows-arm64.zip.asc + node_id: RA_kwDOApspmc4Q7_fP + size: 833 + state: uploaded + updated_at: "2025-08-19T20:32:31Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/284161999 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.6/helm-v3.18.6-windows-arm64.zip.sha256.asc + content_type: application/octet-stream + created_at: "2025-08-19T20:32:31Z" + digest: sha256:5c507a5e38772eeeeb2a47e9959cab51c34c35e7ab993bd34f4355263e89b0a0 + download_count: 4 + id: 284161995 + label: null + name: helm-v3.18.6-windows-arm64.zip.sha256.asc + node_id: RA_kwDOApspmc4Q7_fL + size: 833 + state: uploaded + updated_at: "2025-08-19T20:32:31Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/284161995 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.18.6/helm-v3.18.6-windows-arm64.zip.sha256sum.asc + content_type: application/octet-stream + created_at: "2025-08-19T20:32:30Z" + digest: sha256:7c08c91eaa027f2754f28d1aacb96eb71d1e9fb98cc99a6c4b53e925bf5f22a1 + download_count: 4 + id: 284161992 + label: null + name: helm-v3.18.6-windows-arm64.zip.sha256sum.asc + node_id: RA_kwDOApspmc4Q7_fI + size: 833 + state: uploaded + updated_at: "2025-08-19T20:32:31Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/284161992 + assets_url: https://api.github.com/repos/helm/helm/releases/241012164/assets + author: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + body: "Helm v3.18.6 is a patch release. Users are encouraged to upgrade + for the best experience. Users are encouraged to upgrade for the best + experience.\r\n\r\nThe community keeps growing, and we'd love to see you + there!\r\n\r\n- Join the discussion in [Kubernetes Slack](https://kubernetes.slack.com):\r\n + \ - for questions and just to hang out\r\n - for discussing PRs, code, + and bugs\r\n- Hang out at the Public Developer Call: Thursday, 9:30 Pacific + via [Zoom](https://zoom.us/j/696660622)\r\n- Test, debug, and contribute + charts: [ArtifactHub/packages](https://artifacthub.io/packages/search?kind=0)\r\n\r\n## + Installation and Upgrading\r\n\r\nDownload Helm v3.18.6. The common platform + binaries are here:\r\n\r\n- [MacOS amd64](https://get.helm.sh/helm-v3.18.6-darwin-amd64.tar.gz) + ([checksum](https://get.helm.sh/helm-v3.18.6-darwin-amd64.tar.gz.sha256sum) + / 80cad0470e38cf25731cdead7c32dfbeb887bc177bd6fa01e31b065722f8f06b)\r\n- + [MacOS arm64](https://get.helm.sh/helm-v3.18.6-darwin-arm64.tar.gz) ([checksum](https://get.helm.sh/helm-v3.18.6-darwin-arm64.tar.gz.sha256sum) + / 48e30d236a1f334c6acb78501be5a851eaa2a267fefeb1131b6484eb2f9f30d7)\r\n- + [Linux amd64](https://get.helm.sh/helm-v3.18.6-linux-amd64.tar.gz) ([checksum](https://get.helm.sh/helm-v3.18.6-linux-amd64.tar.gz.sha256sum) + / 3f43c0aa57243852dd542493a0f54f1396c0bc8ec7296bbb2c01e802010819ce)\r\n- + [Linux arm](https://get.helm.sh/helm-v3.18.6-linux-arm.tar.gz) ([checksum](https://get.helm.sh/helm-v3.18.6-linux-arm.tar.gz.sha256sum) + / 13156fbe87a9db201b7d8fd0b42dee2a2e76a77388ea3bd59e3074cfa49d3619)\r\n- + [Linux arm64](https://get.helm.sh/helm-v3.18.6-linux-arm64.tar.gz) ([checksum](https://get.helm.sh/helm-v3.18.6-linux-arm64.tar.gz.sha256sum) + / 5b8e00b6709caab466cbbb0bc29ee09059b8dc9417991dd04b497530e49b1737)\r\n- + [Linux i386](https://get.helm.sh/helm-v3.18.6-linux-386.tar.gz) ([checksum](https://get.helm.sh/helm-v3.18.6-linux-386.tar.gz.sha256sum) + / d245db7c80edaf47bc42d3fab0b79d2e75d63fa49d06bc0ca599686ebdbd1422)\r\n- + [Linux ppc64le](https://get.helm.sh/helm-v3.18.6-linux-ppc64le.tar.gz) + ([checksum](https://get.helm.sh/helm-v3.18.6-linux-ppc64le.tar.gz.sha256sum) + / 61eac730dac2029d7acf1c53bd0b1056f78ca2c3f915da7fa3995e74c021eae8)\r\n- + [Linux s390x](https://get.helm.sh/helm-v3.18.6-linux-s390x.tar.gz) ([checksum](https://get.helm.sh/helm-v3.18.6-linux-s390x.tar.gz.sha256sum) + / c6435c220b2577abea11ee9281fda8a5164583fb1f502702f6ef5c2b4347e38f)\r\n- + [Linux riscv64](https://get.helm.sh/helm-v3.18.6-linux-riscv64.tar.gz) + ([checksum](https://get.helm.sh/helm-v3.18.6-linux-riscv64.tar.gz.sha256sum) + / cea696b01b66fad76b24d9ef28a86802b0931cbc25cec687e8469589438995eb)\r\n- + [Windows amd64](https://get.helm.sh/helm-v3.18.6-windows-amd64.zip) ([checksum](https://get.helm.sh/helm-v3.18.6-windows-amd64.zip.sha256sum) + / 4263320a8d70df0bb1e245534fba1b541f9889005cdb68dec9798b197c3f66b0)\r\n- + [Windows arm64](https://get.helm.sh/helm-v3.18.6-windows-arm64.zip) ([checksum](https://get.helm.sh/helm-v3.18.6-windows-arm64.zip.sha256sum) + / fdff469f270d8a155d9289843b92f7b00b2ca353b8ec61532e920eeb3fc2b480)\r\n\r\nThis + release was signed with `672C 657B E06B 4B30 969C 4A57 4614 49C2 5E36 + B98E ` and can be found at @mattfarina [keybase account](https://keybase.io/mattfarina). + Please use the attached signatures for verifying this release using `gpg`.\r\n\r\nThe + [Quickstart Guide](https://helm.sh/docs/intro/quickstart/) will get you + going from there. For **upgrade instructions** or detailed installation + notes, check the [install guide](https://helm.sh/docs/intro/install/). + You can also use a [script to install](https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3) + on any system with `bash`.\r\n\r\n## What's Next\r\n\r\n- 3.19.0 is the + next minor release and will be on September 11, 2025\r\n\r\n## Changelog\r\n\r\n- + fix(helm-lint): fmt b76a950f6835474e0906b96c9ec68a2eff3a6430 (Isaiah Lewis)\r\n- + fix(helm-lint): Add TLSClientConfig b79a4212e803ad50c66f06799b8bbdb51f918603 + (Isaiah Lewis)\r\n- fix(helm-lint): Add HTTP/HTTPS URL support for json + schema references b9180e674fccb57e6ea6934ed7deb4448a3c9ddb (Isaiah Lewis)\r\n" + created_at: "2025-08-19T20:08:00Z" + draft: false + html_url: https://github.com/helm/helm/releases/tag/v3.18.6 + id: 241012164 + immutable: false + mentions_count: 1 + name: Helm v3.18.6 + node_id: RE_kwDOApspmc4OXY3E + prerelease: false + published_at: "2025-08-19T20:33:29Z" + tag_name: v3.18.6 + tarball_url: https://api.github.com/repos/helm/helm/tarball/v3.18.6 + target_commitish: main + updated_at: "2025-08-19T20:33:29Z" + upload_url: https://uploads.github.com/repos/helm/helm/releases/241012164/assets{?name,label} + url: https://api.github.com/repos/helm/helm/releases/241012164 + zipball_url: https://api.github.com/repos/helm/helm/zipball/v3.18.6 + 3.19.0: + githubRelease: + assets: + - browser_download_url: https://github.com/helm/helm/releases/download/v3.19.0/helm-v3.19.0-darwin-amd64.tar.gz.asc + content_type: application/octet-stream + created_at: "2025-09-11T21:06:26Z" + digest: sha256:1d701fdf4250b680869f915de84e33ea3d3d34024d8626dd823658aa0827a9bb + download_count: 0 + id: 292275355 + label: null + name: helm-v3.19.0-darwin-amd64.tar.gz.asc + node_id: RA_kwDOApspmc4Ra8Sb + size: 833 + state: uploaded + updated_at: "2025-09-11T21:06:26Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/407675?v=4 + events_url: https://api.github.com/users/scottrigby/events{/privacy} + followers_url: https://api.github.com/users/scottrigby/followers + following_url: https://api.github.com/users/scottrigby/following{/other_user} + gists_url: https://api.github.com/users/scottrigby/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/scottrigby + id: 407675 + login: scottrigby + node_id: MDQ6VXNlcjQwNzY3NQ== + organizations_url: https://api.github.com/users/scottrigby/orgs + received_events_url: https://api.github.com/users/scottrigby/received_events + repos_url: https://api.github.com/users/scottrigby/repos + site_admin: false + starred_url: https://api.github.com/users/scottrigby/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/scottrigby/subscriptions + type: User + url: https://api.github.com/users/scottrigby + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/292275355 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.19.0/helm-v3.19.0-darwin-amd64.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2025-09-11T21:06:26Z" + digest: sha256:85323ffe18000fa3ee81adc52ad080191f7bb8f6d6c1ccd7ec9d026bdcb4a624 + download_count: 0 + id: 292275357 + label: null + name: helm-v3.19.0-darwin-amd64.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4Ra8Sd + size: 833 + state: uploaded + updated_at: "2025-09-11T21:06:26Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/407675?v=4 + events_url: https://api.github.com/users/scottrigby/events{/privacy} + followers_url: https://api.github.com/users/scottrigby/followers + following_url: https://api.github.com/users/scottrigby/following{/other_user} + gists_url: https://api.github.com/users/scottrigby/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/scottrigby + id: 407675 + login: scottrigby + node_id: MDQ6VXNlcjQwNzY3NQ== + organizations_url: https://api.github.com/users/scottrigby/orgs + received_events_url: https://api.github.com/users/scottrigby/received_events + repos_url: https://api.github.com/users/scottrigby/repos + site_admin: false + starred_url: https://api.github.com/users/scottrigby/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/scottrigby/subscriptions + type: User + url: https://api.github.com/users/scottrigby + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/292275357 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.19.0/helm-v3.19.0-darwin-amd64.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2025-09-11T21:06:26Z" + digest: sha256:2c0a7dd6b26061b04c4bd98fe2ba995299026da4d09e1860ecabdb5e6fc1ba44 + download_count: 0 + id: 292275358 + label: null + name: helm-v3.19.0-darwin-amd64.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4Ra8Se + size: 833 + state: uploaded + updated_at: "2025-09-11T21:06:26Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/407675?v=4 + events_url: https://api.github.com/users/scottrigby/events{/privacy} + followers_url: https://api.github.com/users/scottrigby/followers + following_url: https://api.github.com/users/scottrigby/following{/other_user} + gists_url: https://api.github.com/users/scottrigby/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/scottrigby + id: 407675 + login: scottrigby + node_id: MDQ6VXNlcjQwNzY3NQ== + organizations_url: https://api.github.com/users/scottrigby/orgs + received_events_url: https://api.github.com/users/scottrigby/received_events + repos_url: https://api.github.com/users/scottrigby/repos + site_admin: false + starred_url: https://api.github.com/users/scottrigby/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/scottrigby/subscriptions + type: User + url: https://api.github.com/users/scottrigby + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/292275358 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.19.0/helm-v3.19.0-darwin-arm64.tar.gz.asc + content_type: application/octet-stream + created_at: "2025-09-11T21:06:26Z" + digest: sha256:91314972d1aa89edf330acfb37285ab89c26d228fdf53c34b20520e387c899d1 + download_count: 0 + id: 292275359 + label: null + name: helm-v3.19.0-darwin-arm64.tar.gz.asc + node_id: RA_kwDOApspmc4Ra8Sf + size: 833 + state: uploaded + updated_at: "2025-09-11T21:06:26Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/407675?v=4 + events_url: https://api.github.com/users/scottrigby/events{/privacy} + followers_url: https://api.github.com/users/scottrigby/followers + following_url: https://api.github.com/users/scottrigby/following{/other_user} + gists_url: https://api.github.com/users/scottrigby/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/scottrigby + id: 407675 + login: scottrigby + node_id: MDQ6VXNlcjQwNzY3NQ== + organizations_url: https://api.github.com/users/scottrigby/orgs + received_events_url: https://api.github.com/users/scottrigby/received_events + repos_url: https://api.github.com/users/scottrigby/repos + site_admin: false + starred_url: https://api.github.com/users/scottrigby/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/scottrigby/subscriptions + type: User + url: https://api.github.com/users/scottrigby + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/292275359 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.19.0/helm-v3.19.0-darwin-arm64.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2025-09-11T21:06:26Z" + digest: sha256:45c4f24c3ea01e397db154b710b9eac8866f53e6cf678242b503dba03f344274 + download_count: 0 + id: 292275360 + label: null + name: helm-v3.19.0-darwin-arm64.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4Ra8Sg + size: 833 + state: uploaded + updated_at: "2025-09-11T21:06:27Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/407675?v=4 + events_url: https://api.github.com/users/scottrigby/events{/privacy} + followers_url: https://api.github.com/users/scottrigby/followers + following_url: https://api.github.com/users/scottrigby/following{/other_user} + gists_url: https://api.github.com/users/scottrigby/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/scottrigby + id: 407675 + login: scottrigby + node_id: MDQ6VXNlcjQwNzY3NQ== + organizations_url: https://api.github.com/users/scottrigby/orgs + received_events_url: https://api.github.com/users/scottrigby/received_events + repos_url: https://api.github.com/users/scottrigby/repos + site_admin: false + starred_url: https://api.github.com/users/scottrigby/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/scottrigby/subscriptions + type: User + url: https://api.github.com/users/scottrigby + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/292275360 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.19.0/helm-v3.19.0-darwin-arm64.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2025-09-11T21:06:27Z" + digest: sha256:65c2cca70f823c6514e188be9eb5b8e0d7855e9b7dbdc4afc33bcc610009d6cc + download_count: 0 + id: 292275362 + label: null + name: helm-v3.19.0-darwin-arm64.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4Ra8Si + size: 833 + state: uploaded + updated_at: "2025-09-11T21:06:27Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/407675?v=4 + events_url: https://api.github.com/users/scottrigby/events{/privacy} + followers_url: https://api.github.com/users/scottrigby/followers + following_url: https://api.github.com/users/scottrigby/following{/other_user} + gists_url: https://api.github.com/users/scottrigby/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/scottrigby + id: 407675 + login: scottrigby + node_id: MDQ6VXNlcjQwNzY3NQ== + organizations_url: https://api.github.com/users/scottrigby/orgs + received_events_url: https://api.github.com/users/scottrigby/received_events + repos_url: https://api.github.com/users/scottrigby/repos + site_admin: false + starred_url: https://api.github.com/users/scottrigby/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/scottrigby/subscriptions + type: User + url: https://api.github.com/users/scottrigby + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/292275362 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.19.0/helm-v3.19.0-linux-386.tar.gz.asc + content_type: application/octet-stream + created_at: "2025-09-11T21:06:27Z" + digest: sha256:c023ffb054c646d1be1529eb2a0e7eb19f3b19da0a8e2ac177cdcc0cbd011f3b + download_count: 0 + id: 292275363 + label: null + name: helm-v3.19.0-linux-386.tar.gz.asc + node_id: RA_kwDOApspmc4Ra8Sj + size: 833 + state: uploaded + updated_at: "2025-09-11T21:06:27Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/407675?v=4 + events_url: https://api.github.com/users/scottrigby/events{/privacy} + followers_url: https://api.github.com/users/scottrigby/followers + following_url: https://api.github.com/users/scottrigby/following{/other_user} + gists_url: https://api.github.com/users/scottrigby/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/scottrigby + id: 407675 + login: scottrigby + node_id: MDQ6VXNlcjQwNzY3NQ== + organizations_url: https://api.github.com/users/scottrigby/orgs + received_events_url: https://api.github.com/users/scottrigby/received_events + repos_url: https://api.github.com/users/scottrigby/repos + site_admin: false + starred_url: https://api.github.com/users/scottrigby/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/scottrigby/subscriptions + type: User + url: https://api.github.com/users/scottrigby + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/292275363 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.19.0/helm-v3.19.0-linux-386.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2025-09-11T21:06:27Z" + digest: sha256:6c377f049a763ed5c3d433ec24f3c19980b94e1bebd1ccfeb57aff0cf1c98793 + download_count: 0 + id: 292275364 + label: null + name: helm-v3.19.0-linux-386.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4Ra8Sk + size: 833 + state: uploaded + updated_at: "2025-09-11T21:06:27Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/407675?v=4 + events_url: https://api.github.com/users/scottrigby/events{/privacy} + followers_url: https://api.github.com/users/scottrigby/followers + following_url: https://api.github.com/users/scottrigby/following{/other_user} + gists_url: https://api.github.com/users/scottrigby/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/scottrigby + id: 407675 + login: scottrigby + node_id: MDQ6VXNlcjQwNzY3NQ== + organizations_url: https://api.github.com/users/scottrigby/orgs + received_events_url: https://api.github.com/users/scottrigby/received_events + repos_url: https://api.github.com/users/scottrigby/repos + site_admin: false + starred_url: https://api.github.com/users/scottrigby/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/scottrigby/subscriptions + type: User + url: https://api.github.com/users/scottrigby + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/292275364 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.19.0/helm-v3.19.0-linux-386.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2025-09-11T21:06:27Z" + digest: sha256:94c2e778c7d3db6f5ac39962abe30a0cc6dc5f0b05b93518a123577df4deeda4 + download_count: 0 + id: 292275366 + label: null + name: helm-v3.19.0-linux-386.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4Ra8Sm + size: 833 + state: uploaded + updated_at: "2025-09-11T21:06:27Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/407675?v=4 + events_url: https://api.github.com/users/scottrigby/events{/privacy} + followers_url: https://api.github.com/users/scottrigby/followers + following_url: https://api.github.com/users/scottrigby/following{/other_user} + gists_url: https://api.github.com/users/scottrigby/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/scottrigby + id: 407675 + login: scottrigby + node_id: MDQ6VXNlcjQwNzY3NQ== + organizations_url: https://api.github.com/users/scottrigby/orgs + received_events_url: https://api.github.com/users/scottrigby/received_events + repos_url: https://api.github.com/users/scottrigby/repos + site_admin: false + starred_url: https://api.github.com/users/scottrigby/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/scottrigby/subscriptions + type: User + url: https://api.github.com/users/scottrigby + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/292275366 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.19.0/helm-v3.19.0-linux-amd64.tar.gz.asc + content_type: application/octet-stream + created_at: "2025-09-11T21:06:27Z" + digest: sha256:e99ad29243e558021dcc0a198528af505cc853a64b6e797435daf51df72c8905 + download_count: 0 + id: 292275367 + label: null + name: helm-v3.19.0-linux-amd64.tar.gz.asc + node_id: RA_kwDOApspmc4Ra8Sn + size: 833 + state: uploaded + updated_at: "2025-09-11T21:06:27Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/407675?v=4 + events_url: https://api.github.com/users/scottrigby/events{/privacy} + followers_url: https://api.github.com/users/scottrigby/followers + following_url: https://api.github.com/users/scottrigby/following{/other_user} + gists_url: https://api.github.com/users/scottrigby/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/scottrigby + id: 407675 + login: scottrigby + node_id: MDQ6VXNlcjQwNzY3NQ== + organizations_url: https://api.github.com/users/scottrigby/orgs + received_events_url: https://api.github.com/users/scottrigby/received_events + repos_url: https://api.github.com/users/scottrigby/repos + site_admin: false + starred_url: https://api.github.com/users/scottrigby/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/scottrigby/subscriptions + type: User + url: https://api.github.com/users/scottrigby + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/292275367 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.19.0/helm-v3.19.0-linux-amd64.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2025-09-11T21:06:27Z" + digest: sha256:bc0b9fa205c07df3cd11dc6990fb21a2c75b0bffe1583ac4f4d13fddcaa9aee7 + download_count: 0 + id: 292275368 + label: null + name: helm-v3.19.0-linux-amd64.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4Ra8So + size: 833 + state: uploaded + updated_at: "2025-09-11T21:06:28Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/407675?v=4 + events_url: https://api.github.com/users/scottrigby/events{/privacy} + followers_url: https://api.github.com/users/scottrigby/followers + following_url: https://api.github.com/users/scottrigby/following{/other_user} + gists_url: https://api.github.com/users/scottrigby/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/scottrigby + id: 407675 + login: scottrigby + node_id: MDQ6VXNlcjQwNzY3NQ== + organizations_url: https://api.github.com/users/scottrigby/orgs + received_events_url: https://api.github.com/users/scottrigby/received_events + repos_url: https://api.github.com/users/scottrigby/repos + site_admin: false + starred_url: https://api.github.com/users/scottrigby/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/scottrigby/subscriptions + type: User + url: https://api.github.com/users/scottrigby + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/292275368 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.19.0/helm-v3.19.0-linux-amd64.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2025-09-11T21:06:28Z" + digest: sha256:21dfcc1ba245f26e25f00bf1280e2d834d21053c683dd71edeb49165a5dd6d7d + download_count: 0 + id: 292275369 + label: null + name: helm-v3.19.0-linux-amd64.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4Ra8Sp + size: 833 + state: uploaded + updated_at: "2025-09-11T21:06:28Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/407675?v=4 + events_url: https://api.github.com/users/scottrigby/events{/privacy} + followers_url: https://api.github.com/users/scottrigby/followers + following_url: https://api.github.com/users/scottrigby/following{/other_user} + gists_url: https://api.github.com/users/scottrigby/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/scottrigby + id: 407675 + login: scottrigby + node_id: MDQ6VXNlcjQwNzY3NQ== + organizations_url: https://api.github.com/users/scottrigby/orgs + received_events_url: https://api.github.com/users/scottrigby/received_events + repos_url: https://api.github.com/users/scottrigby/repos + site_admin: false + starred_url: https://api.github.com/users/scottrigby/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/scottrigby/subscriptions + type: User + url: https://api.github.com/users/scottrigby + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/292275369 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.19.0/helm-v3.19.0-linux-arm.tar.gz.asc + content_type: application/octet-stream + created_at: "2025-09-11T21:06:28Z" + digest: sha256:4e742e14276652e15dac2d252b0757a461f33f3203c6e4e1723a747a36ffad2d + download_count: 0 + id: 292275370 + label: null + name: helm-v3.19.0-linux-arm.tar.gz.asc + node_id: RA_kwDOApspmc4Ra8Sq + size: 833 + state: uploaded + updated_at: "2025-09-11T21:06:28Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/407675?v=4 + events_url: https://api.github.com/users/scottrigby/events{/privacy} + followers_url: https://api.github.com/users/scottrigby/followers + following_url: https://api.github.com/users/scottrigby/following{/other_user} + gists_url: https://api.github.com/users/scottrigby/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/scottrigby + id: 407675 + login: scottrigby + node_id: MDQ6VXNlcjQwNzY3NQ== + organizations_url: https://api.github.com/users/scottrigby/orgs + received_events_url: https://api.github.com/users/scottrigby/received_events + repos_url: https://api.github.com/users/scottrigby/repos + site_admin: false + starred_url: https://api.github.com/users/scottrigby/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/scottrigby/subscriptions + type: User + url: https://api.github.com/users/scottrigby + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/292275370 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.19.0/helm-v3.19.0-linux-arm.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2025-09-11T21:06:28Z" + digest: sha256:94c338965437eb05c11eeb52c3d89c2115d196d635a246bacba63a1b8dcede01 + download_count: 0 + id: 292275371 + label: null + name: helm-v3.19.0-linux-arm.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4Ra8Sr + size: 833 + state: uploaded + updated_at: "2025-09-11T21:06:28Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/407675?v=4 + events_url: https://api.github.com/users/scottrigby/events{/privacy} + followers_url: https://api.github.com/users/scottrigby/followers + following_url: https://api.github.com/users/scottrigby/following{/other_user} + gists_url: https://api.github.com/users/scottrigby/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/scottrigby + id: 407675 + login: scottrigby + node_id: MDQ6VXNlcjQwNzY3NQ== + organizations_url: https://api.github.com/users/scottrigby/orgs + received_events_url: https://api.github.com/users/scottrigby/received_events + repos_url: https://api.github.com/users/scottrigby/repos + site_admin: false + starred_url: https://api.github.com/users/scottrigby/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/scottrigby/subscriptions + type: User + url: https://api.github.com/users/scottrigby + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/292275371 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.19.0/helm-v3.19.0-linux-arm.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2025-09-11T21:06:28Z" + digest: sha256:8365166e96a4ab33e7c8ba49a0fb22a7ca4c2df5906fd8794cb8d2c35c8086b4 + download_count: 0 + id: 292275381 + label: null + name: helm-v3.19.0-linux-arm.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4Ra8S1 + size: 833 + state: uploaded + updated_at: "2025-09-11T21:06:28Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/407675?v=4 + events_url: https://api.github.com/users/scottrigby/events{/privacy} + followers_url: https://api.github.com/users/scottrigby/followers + following_url: https://api.github.com/users/scottrigby/following{/other_user} + gists_url: https://api.github.com/users/scottrigby/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/scottrigby + id: 407675 + login: scottrigby + node_id: MDQ6VXNlcjQwNzY3NQ== + organizations_url: https://api.github.com/users/scottrigby/orgs + received_events_url: https://api.github.com/users/scottrigby/received_events + repos_url: https://api.github.com/users/scottrigby/repos + site_admin: false + starred_url: https://api.github.com/users/scottrigby/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/scottrigby/subscriptions + type: User + url: https://api.github.com/users/scottrigby + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/292275381 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.19.0/helm-v3.19.0-linux-arm64.tar.gz.asc + content_type: application/octet-stream + created_at: "2025-09-11T21:06:28Z" + digest: sha256:c8141f31bf7346829f7e651625a6367a22c836507aa79bac554837d172ede16f + download_count: 0 + id: 292275382 + label: null + name: helm-v3.19.0-linux-arm64.tar.gz.asc + node_id: RA_kwDOApspmc4Ra8S2 + size: 833 + state: uploaded + updated_at: "2025-09-11T21:06:28Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/407675?v=4 + events_url: https://api.github.com/users/scottrigby/events{/privacy} + followers_url: https://api.github.com/users/scottrigby/followers + following_url: https://api.github.com/users/scottrigby/following{/other_user} + gists_url: https://api.github.com/users/scottrigby/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/scottrigby + id: 407675 + login: scottrigby + node_id: MDQ6VXNlcjQwNzY3NQ== + organizations_url: https://api.github.com/users/scottrigby/orgs + received_events_url: https://api.github.com/users/scottrigby/received_events + repos_url: https://api.github.com/users/scottrigby/repos + site_admin: false + starred_url: https://api.github.com/users/scottrigby/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/scottrigby/subscriptions + type: User + url: https://api.github.com/users/scottrigby + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/292275382 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.19.0/helm-v3.19.0-linux-arm64.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2025-09-11T21:06:28Z" + digest: sha256:3d06a147b873eb3e3493bd5961c93eb5839e7adecf67391eaa8c93c928fd50aa + download_count: 0 + id: 292275385 + label: null + name: helm-v3.19.0-linux-arm64.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4Ra8S5 + size: 833 + state: uploaded + updated_at: "2025-09-11T21:06:29Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/407675?v=4 + events_url: https://api.github.com/users/scottrigby/events{/privacy} + followers_url: https://api.github.com/users/scottrigby/followers + following_url: https://api.github.com/users/scottrigby/following{/other_user} + gists_url: https://api.github.com/users/scottrigby/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/scottrigby + id: 407675 + login: scottrigby + node_id: MDQ6VXNlcjQwNzY3NQ== + organizations_url: https://api.github.com/users/scottrigby/orgs + received_events_url: https://api.github.com/users/scottrigby/received_events + repos_url: https://api.github.com/users/scottrigby/repos + site_admin: false + starred_url: https://api.github.com/users/scottrigby/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/scottrigby/subscriptions + type: User + url: https://api.github.com/users/scottrigby + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/292275385 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.19.0/helm-v3.19.0-linux-arm64.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2025-09-11T21:06:29Z" + digest: sha256:9a8c79acee9fb501357a174373501ad9e2cd132ecdd77066d52833a645af5a75 + download_count: 0 + id: 292275386 + label: null + name: helm-v3.19.0-linux-arm64.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4Ra8S6 + size: 833 + state: uploaded + updated_at: "2025-09-11T21:06:29Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/407675?v=4 + events_url: https://api.github.com/users/scottrigby/events{/privacy} + followers_url: https://api.github.com/users/scottrigby/followers + following_url: https://api.github.com/users/scottrigby/following{/other_user} + gists_url: https://api.github.com/users/scottrigby/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/scottrigby + id: 407675 + login: scottrigby + node_id: MDQ6VXNlcjQwNzY3NQ== + organizations_url: https://api.github.com/users/scottrigby/orgs + received_events_url: https://api.github.com/users/scottrigby/received_events + repos_url: https://api.github.com/users/scottrigby/repos + site_admin: false + starred_url: https://api.github.com/users/scottrigby/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/scottrigby/subscriptions + type: User + url: https://api.github.com/users/scottrigby + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/292275386 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.19.0/helm-v3.19.0-linux-ppc64le.tar.gz.asc + content_type: application/octet-stream + created_at: "2025-09-11T21:06:29Z" + digest: sha256:0a16aed577accadc9f3c4166a5bcc03946c8865acc895800fdf2642763d9e47c + download_count: 0 + id: 292275387 + label: null + name: helm-v3.19.0-linux-ppc64le.tar.gz.asc + node_id: RA_kwDOApspmc4Ra8S7 + size: 833 + state: uploaded + updated_at: "2025-09-11T21:06:29Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/407675?v=4 + events_url: https://api.github.com/users/scottrigby/events{/privacy} + followers_url: https://api.github.com/users/scottrigby/followers + following_url: https://api.github.com/users/scottrigby/following{/other_user} + gists_url: https://api.github.com/users/scottrigby/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/scottrigby + id: 407675 + login: scottrigby + node_id: MDQ6VXNlcjQwNzY3NQ== + organizations_url: https://api.github.com/users/scottrigby/orgs + received_events_url: https://api.github.com/users/scottrigby/received_events + repos_url: https://api.github.com/users/scottrigby/repos + site_admin: false + starred_url: https://api.github.com/users/scottrigby/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/scottrigby/subscriptions + type: User + url: https://api.github.com/users/scottrigby + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/292275387 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.19.0/helm-v3.19.0-linux-ppc64le.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2025-09-11T21:06:29Z" + digest: sha256:d25c4a636595f7367eb0ddb3d434ff91cd0c9feb41717dd9dc951def041288fb + download_count: 0 + id: 292275388 + label: null + name: helm-v3.19.0-linux-ppc64le.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4Ra8S8 + size: 833 + state: uploaded + updated_at: "2025-09-11T21:06:29Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/407675?v=4 + events_url: https://api.github.com/users/scottrigby/events{/privacy} + followers_url: https://api.github.com/users/scottrigby/followers + following_url: https://api.github.com/users/scottrigby/following{/other_user} + gists_url: https://api.github.com/users/scottrigby/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/scottrigby + id: 407675 + login: scottrigby + node_id: MDQ6VXNlcjQwNzY3NQ== + organizations_url: https://api.github.com/users/scottrigby/orgs + received_events_url: https://api.github.com/users/scottrigby/received_events + repos_url: https://api.github.com/users/scottrigby/repos + site_admin: false + starred_url: https://api.github.com/users/scottrigby/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/scottrigby/subscriptions + type: User + url: https://api.github.com/users/scottrigby + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/292275388 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.19.0/helm-v3.19.0-linux-ppc64le.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2025-09-11T21:06:29Z" + digest: sha256:4d8b75645aa14ccd7bf070c500370f1ae62aed4dd15cb2d610836b4443df5e6d + download_count: 0 + id: 292275390 + label: null + name: helm-v3.19.0-linux-ppc64le.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4Ra8S- + size: 833 + state: uploaded + updated_at: "2025-09-11T21:06:29Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/407675?v=4 + events_url: https://api.github.com/users/scottrigby/events{/privacy} + followers_url: https://api.github.com/users/scottrigby/followers + following_url: https://api.github.com/users/scottrigby/following{/other_user} + gists_url: https://api.github.com/users/scottrigby/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/scottrigby + id: 407675 + login: scottrigby + node_id: MDQ6VXNlcjQwNzY3NQ== + organizations_url: https://api.github.com/users/scottrigby/orgs + received_events_url: https://api.github.com/users/scottrigby/received_events + repos_url: https://api.github.com/users/scottrigby/repos + site_admin: false + starred_url: https://api.github.com/users/scottrigby/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/scottrigby/subscriptions + type: User + url: https://api.github.com/users/scottrigby + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/292275390 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.19.0/helm-v3.19.0-linux-riscv64.tar.gz.asc + content_type: application/octet-stream + created_at: "2025-09-11T21:06:29Z" + digest: sha256:24720d09e4872175c0b4cf824cfd0241623554b361b13f7825c66debab1f7e6e + download_count: 0 + id: 292275392 + label: null + name: helm-v3.19.0-linux-riscv64.tar.gz.asc + node_id: RA_kwDOApspmc4Ra8TA + size: 833 + state: uploaded + updated_at: "2025-09-11T21:06:30Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/407675?v=4 + events_url: https://api.github.com/users/scottrigby/events{/privacy} + followers_url: https://api.github.com/users/scottrigby/followers + following_url: https://api.github.com/users/scottrigby/following{/other_user} + gists_url: https://api.github.com/users/scottrigby/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/scottrigby + id: 407675 + login: scottrigby + node_id: MDQ6VXNlcjQwNzY3NQ== + organizations_url: https://api.github.com/users/scottrigby/orgs + received_events_url: https://api.github.com/users/scottrigby/received_events + repos_url: https://api.github.com/users/scottrigby/repos + site_admin: false + starred_url: https://api.github.com/users/scottrigby/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/scottrigby/subscriptions + type: User + url: https://api.github.com/users/scottrigby + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/292275392 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.19.0/helm-v3.19.0-linux-riscv64.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2025-09-11T21:06:30Z" + digest: sha256:b12624517f1d5558fb8f4fd116e63e566d9394b60d175552fe5f5f6ec18426bd + download_count: 0 + id: 292275393 + label: null + name: helm-v3.19.0-linux-riscv64.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4Ra8TB + size: 833 + state: uploaded + updated_at: "2025-09-11T21:06:30Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/407675?v=4 + events_url: https://api.github.com/users/scottrigby/events{/privacy} + followers_url: https://api.github.com/users/scottrigby/followers + following_url: https://api.github.com/users/scottrigby/following{/other_user} + gists_url: https://api.github.com/users/scottrigby/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/scottrigby + id: 407675 + login: scottrigby + node_id: MDQ6VXNlcjQwNzY3NQ== + organizations_url: https://api.github.com/users/scottrigby/orgs + received_events_url: https://api.github.com/users/scottrigby/received_events + repos_url: https://api.github.com/users/scottrigby/repos + site_admin: false + starred_url: https://api.github.com/users/scottrigby/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/scottrigby/subscriptions + type: User + url: https://api.github.com/users/scottrigby + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/292275393 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.19.0/helm-v3.19.0-linux-riscv64.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2025-09-11T21:06:30Z" + digest: sha256:f334e086877ecef938147b003b0eb54ff7e8f93887b90118ad4bf95b33bf417e + download_count: 0 + id: 292275394 + label: null + name: helm-v3.19.0-linux-riscv64.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4Ra8TC + size: 833 + state: uploaded + updated_at: "2025-09-11T21:06:30Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/407675?v=4 + events_url: https://api.github.com/users/scottrigby/events{/privacy} + followers_url: https://api.github.com/users/scottrigby/followers + following_url: https://api.github.com/users/scottrigby/following{/other_user} + gists_url: https://api.github.com/users/scottrigby/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/scottrigby + id: 407675 + login: scottrigby + node_id: MDQ6VXNlcjQwNzY3NQ== + organizations_url: https://api.github.com/users/scottrigby/orgs + received_events_url: https://api.github.com/users/scottrigby/received_events + repos_url: https://api.github.com/users/scottrigby/repos + site_admin: false + starred_url: https://api.github.com/users/scottrigby/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/scottrigby/subscriptions + type: User + url: https://api.github.com/users/scottrigby + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/292275394 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.19.0/helm-v3.19.0-linux-s390x.tar.gz.asc + content_type: application/octet-stream + created_at: "2025-09-11T21:06:30Z" + digest: sha256:a419e9ef8118a6e6b684d6f07e7534e3cd9cc369e292282ad52d5fd4010ee0e1 + download_count: 0 + id: 292275395 + label: null + name: helm-v3.19.0-linux-s390x.tar.gz.asc + node_id: RA_kwDOApspmc4Ra8TD + size: 833 + state: uploaded + updated_at: "2025-09-11T21:06:30Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/407675?v=4 + events_url: https://api.github.com/users/scottrigby/events{/privacy} + followers_url: https://api.github.com/users/scottrigby/followers + following_url: https://api.github.com/users/scottrigby/following{/other_user} + gists_url: https://api.github.com/users/scottrigby/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/scottrigby + id: 407675 + login: scottrigby + node_id: MDQ6VXNlcjQwNzY3NQ== + organizations_url: https://api.github.com/users/scottrigby/orgs + received_events_url: https://api.github.com/users/scottrigby/received_events + repos_url: https://api.github.com/users/scottrigby/repos + site_admin: false + starred_url: https://api.github.com/users/scottrigby/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/scottrigby/subscriptions + type: User + url: https://api.github.com/users/scottrigby + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/292275395 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.19.0/helm-v3.19.0-linux-s390x.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2025-09-11T21:06:30Z" + digest: sha256:845ab073270a9bf5c713f5966fe15da9726497d4dfa8eb754dec79352f221e4b + download_count: 0 + id: 292275397 + label: null + name: helm-v3.19.0-linux-s390x.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4Ra8TF + size: 833 + state: uploaded + updated_at: "2025-09-11T21:06:30Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/407675?v=4 + events_url: https://api.github.com/users/scottrigby/events{/privacy} + followers_url: https://api.github.com/users/scottrigby/followers + following_url: https://api.github.com/users/scottrigby/following{/other_user} + gists_url: https://api.github.com/users/scottrigby/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/scottrigby + id: 407675 + login: scottrigby + node_id: MDQ6VXNlcjQwNzY3NQ== + organizations_url: https://api.github.com/users/scottrigby/orgs + received_events_url: https://api.github.com/users/scottrigby/received_events + repos_url: https://api.github.com/users/scottrigby/repos + site_admin: false + starred_url: https://api.github.com/users/scottrigby/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/scottrigby/subscriptions + type: User + url: https://api.github.com/users/scottrigby + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/292275397 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.19.0/helm-v3.19.0-linux-s390x.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2025-09-11T21:06:30Z" + digest: sha256:0a2c472b51553bf2db6e82c40b09b8be017fbae85e17fd04fafc31c5883bc3c8 + download_count: 0 + id: 292275399 + label: null + name: helm-v3.19.0-linux-s390x.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4Ra8TH + size: 833 + state: uploaded + updated_at: "2025-09-11T21:06:30Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/407675?v=4 + events_url: https://api.github.com/users/scottrigby/events{/privacy} + followers_url: https://api.github.com/users/scottrigby/followers + following_url: https://api.github.com/users/scottrigby/following{/other_user} + gists_url: https://api.github.com/users/scottrigby/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/scottrigby + id: 407675 + login: scottrigby + node_id: MDQ6VXNlcjQwNzY3NQ== + organizations_url: https://api.github.com/users/scottrigby/orgs + received_events_url: https://api.github.com/users/scottrigby/received_events + repos_url: https://api.github.com/users/scottrigby/repos + site_admin: false + starred_url: https://api.github.com/users/scottrigby/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/scottrigby/subscriptions + type: User + url: https://api.github.com/users/scottrigby + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/292275399 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.19.0/helm-v3.19.0-windows-amd64.zip.asc + content_type: application/octet-stream + created_at: "2025-09-11T21:06:30Z" + digest: sha256:e4b69284c68380232c33c43890ac03b173e700d6bf4896540539f0f5cb50fcc7 + download_count: 0 + id: 292275400 + label: null + name: helm-v3.19.0-windows-amd64.zip.asc + node_id: RA_kwDOApspmc4Ra8TI + size: 833 + state: uploaded + updated_at: "2025-09-11T21:06:31Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/407675?v=4 + events_url: https://api.github.com/users/scottrigby/events{/privacy} + followers_url: https://api.github.com/users/scottrigby/followers + following_url: https://api.github.com/users/scottrigby/following{/other_user} + gists_url: https://api.github.com/users/scottrigby/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/scottrigby + id: 407675 + login: scottrigby + node_id: MDQ6VXNlcjQwNzY3NQ== + organizations_url: https://api.github.com/users/scottrigby/orgs + received_events_url: https://api.github.com/users/scottrigby/received_events + repos_url: https://api.github.com/users/scottrigby/repos + site_admin: false + starred_url: https://api.github.com/users/scottrigby/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/scottrigby/subscriptions + type: User + url: https://api.github.com/users/scottrigby + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/292275400 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.19.0/helm-v3.19.0-windows-amd64.zip.sha256.asc + content_type: application/octet-stream + created_at: "2025-09-11T21:06:31Z" + digest: sha256:31a6156d5bf9c95c78108d279f962690a7a798161ab277ef9092cffe53cacb7e + download_count: 0 + id: 292275402 + label: null + name: helm-v3.19.0-windows-amd64.zip.sha256.asc + node_id: RA_kwDOApspmc4Ra8TK + size: 833 + state: uploaded + updated_at: "2025-09-11T21:06:31Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/407675?v=4 + events_url: https://api.github.com/users/scottrigby/events{/privacy} + followers_url: https://api.github.com/users/scottrigby/followers + following_url: https://api.github.com/users/scottrigby/following{/other_user} + gists_url: https://api.github.com/users/scottrigby/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/scottrigby + id: 407675 + login: scottrigby + node_id: MDQ6VXNlcjQwNzY3NQ== + organizations_url: https://api.github.com/users/scottrigby/orgs + received_events_url: https://api.github.com/users/scottrigby/received_events + repos_url: https://api.github.com/users/scottrigby/repos + site_admin: false + starred_url: https://api.github.com/users/scottrigby/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/scottrigby/subscriptions + type: User + url: https://api.github.com/users/scottrigby + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/292275402 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.19.0/helm-v3.19.0-windows-amd64.zip.sha256sum.asc + content_type: application/octet-stream + created_at: "2025-09-11T21:06:31Z" + digest: sha256:517a77f55c4c13a4e76edfa48c8b0cdd51601cd27e4c356222a4edff8c296fa5 + download_count: 0 + id: 292275403 + label: null + name: helm-v3.19.0-windows-amd64.zip.sha256sum.asc + node_id: RA_kwDOApspmc4Ra8TL + size: 833 + state: uploaded + updated_at: "2025-09-11T21:06:31Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/407675?v=4 + events_url: https://api.github.com/users/scottrigby/events{/privacy} + followers_url: https://api.github.com/users/scottrigby/followers + following_url: https://api.github.com/users/scottrigby/following{/other_user} + gists_url: https://api.github.com/users/scottrigby/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/scottrigby + id: 407675 + login: scottrigby + node_id: MDQ6VXNlcjQwNzY3NQ== + organizations_url: https://api.github.com/users/scottrigby/orgs + received_events_url: https://api.github.com/users/scottrigby/received_events + repos_url: https://api.github.com/users/scottrigby/repos + site_admin: false + starred_url: https://api.github.com/users/scottrigby/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/scottrigby/subscriptions + type: User + url: https://api.github.com/users/scottrigby + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/292275403 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.19.0/helm-v3.19.0-windows-arm64.zip.asc + content_type: application/octet-stream + created_at: "2025-09-11T21:06:31Z" + digest: sha256:ac15fb423c38a4ede2f0c4f5dfb07ffc386bdddd65ac6ebba3e2240d6e146798 + download_count: 0 + id: 292275404 + label: null + name: helm-v3.19.0-windows-arm64.zip.asc + node_id: RA_kwDOApspmc4Ra8TM + size: 833 + state: uploaded + updated_at: "2025-09-11T21:06:31Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/407675?v=4 + events_url: https://api.github.com/users/scottrigby/events{/privacy} + followers_url: https://api.github.com/users/scottrigby/followers + following_url: https://api.github.com/users/scottrigby/following{/other_user} + gists_url: https://api.github.com/users/scottrigby/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/scottrigby + id: 407675 + login: scottrigby + node_id: MDQ6VXNlcjQwNzY3NQ== + organizations_url: https://api.github.com/users/scottrigby/orgs + received_events_url: https://api.github.com/users/scottrigby/received_events + repos_url: https://api.github.com/users/scottrigby/repos + site_admin: false + starred_url: https://api.github.com/users/scottrigby/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/scottrigby/subscriptions + type: User + url: https://api.github.com/users/scottrigby + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/292275404 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.19.0/helm-v3.19.0-windows-arm64.zip.sha256.asc + content_type: application/octet-stream + created_at: "2025-09-11T21:06:31Z" + digest: sha256:c91ae682bb88180d3d05156b5f5b9b6ccbd7e5903692c8f9d0518bd78f09916b + download_count: 0 + id: 292275405 + label: null + name: helm-v3.19.0-windows-arm64.zip.sha256.asc + node_id: RA_kwDOApspmc4Ra8TN + size: 833 + state: uploaded + updated_at: "2025-09-11T21:06:31Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/407675?v=4 + events_url: https://api.github.com/users/scottrigby/events{/privacy} + followers_url: https://api.github.com/users/scottrigby/followers + following_url: https://api.github.com/users/scottrigby/following{/other_user} + gists_url: https://api.github.com/users/scottrigby/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/scottrigby + id: 407675 + login: scottrigby + node_id: MDQ6VXNlcjQwNzY3NQ== + organizations_url: https://api.github.com/users/scottrigby/orgs + received_events_url: https://api.github.com/users/scottrigby/received_events + repos_url: https://api.github.com/users/scottrigby/repos + site_admin: false + starred_url: https://api.github.com/users/scottrigby/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/scottrigby/subscriptions + type: User + url: https://api.github.com/users/scottrigby + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/292275405 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.19.0/helm-v3.19.0-windows-arm64.zip.sha256sum.asc + content_type: application/octet-stream + created_at: "2025-09-11T21:06:31Z" + digest: sha256:677fd2c61ea2404ebc8676e29bffe7dd72bd5146265e28c9dafdc23cfe8db14b + download_count: 0 + id: 292275406 + label: null + name: helm-v3.19.0-windows-arm64.zip.sha256sum.asc + node_id: RA_kwDOApspmc4Ra8TO + size: 833 + state: uploaded + updated_at: "2025-09-11T21:06:32Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/407675?v=4 + events_url: https://api.github.com/users/scottrigby/events{/privacy} + followers_url: https://api.github.com/users/scottrigby/followers + following_url: https://api.github.com/users/scottrigby/following{/other_user} + gists_url: https://api.github.com/users/scottrigby/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/scottrigby + id: 407675 + login: scottrigby + node_id: MDQ6VXNlcjQwNzY3NQ== + organizations_url: https://api.github.com/users/scottrigby/orgs + received_events_url: https://api.github.com/users/scottrigby/received_events + repos_url: https://api.github.com/users/scottrigby/repos + site_admin: false + starred_url: https://api.github.com/users/scottrigby/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/scottrigby/subscriptions + type: User + url: https://api.github.com/users/scottrigby + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/292275406 + assets_url: https://api.github.com/repos/helm/helm/releases/246617373/assets + author: + avatar_url: https://avatars.githubusercontent.com/u/407675?v=4 + events_url: https://api.github.com/users/scottrigby/events{/privacy} + followers_url: https://api.github.com/users/scottrigby/followers + following_url: https://api.github.com/users/scottrigby/following{/other_user} + gists_url: https://api.github.com/users/scottrigby/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/scottrigby + id: 407675 + login: scottrigby + node_id: MDQ6VXNlcjQwNzY3NQ== + organizations_url: https://api.github.com/users/scottrigby/orgs + received_events_url: https://api.github.com/users/scottrigby/received_events + repos_url: https://api.github.com/users/scottrigby/repos + site_admin: false + starred_url: https://api.github.com/users/scottrigby/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/scottrigby/subscriptions + type: User + url: https://api.github.com/users/scottrigby + user_view_type: public + body: "Helm v3.19.0 is a feature release. Users are encouraged to upgrade + for the best experience.\r\n\r\nThe community keeps growing, and we'd + love to see you there!\r\n\r\n- Join the discussion in [Kubernetes Slack](https://kubernetes.slack.com):\r\n + \ - for questions and just to hang out\r\n - for discussing PRs, code, + and bugs\r\n- Hang out at the Public Developer Call: Thursday, 9:30 Pacific + via [Zoom](https://zoom.us/j/696660622)\r\n- Test, debug, and contribute + charts: [ArtifactHub/packages](https://artifacthub.io/packages/search?kind=0)\r\n\r\n## + Notable Changes\r\n\r\n- Fixed a `helm pull` regression from 3.18 - error + pulling OCI charts with --password #31230\r\n- Fixed a `helm lint` regression + from Helm 3.18 - rejected JSON Schema $ref URLs that worked in 3.17.x + #31166\r\n- Fixed go mod tidy #31154\r\n- Fixed k8s version parsing not + matching original #31091\r\n- Fixed charts failing when using a redirect + registry #31087\r\n- Fixed missing debug logging for OCI transport \r\n- + Fixed broken legacy docker support for login #30941\r\n- Fixed bugs from + the move to ORAS v2\r\n- Fixed processing all hook deletions on failure + #30673\r\n- Feature for `helm create` added httproute from gateway-api + to create chart template #30658\r\n\r\n## Installation and Upgrading\r\n\r\nDownload + Helm v3.19.0. The common platform binaries are here:\r\n\r\n- [MacOS amd64](https://get.helm.sh/helm-v3.19.0-darwin-amd64.tar.gz) + ([checksum](https://get.helm.sh/helm-v3.19.0-darwin-amd64.tar.gz.sha256sum) + / \uFEFFBlobNotFoundThe + specified blob does not exist.\r\nRequestId:773c957a-b01e-0016-1557-2303e3000000\r\nTime:2025-09-11T20:06:13.0966152Z)\r\n- + [MacOS arm64](https://get.helm.sh/helm-v3.19.0-darwin-arm64.tar.gz) ([checksum](https://get.helm.sh/helm-v3.19.0-darwin-arm64.tar.gz.sha256sum) + / \uFEFFBlobNotFoundThe + specified blob does not exist.\r\nRequestId:c8078910-d01e-0000-3a57-23f534000000\r\nTime:2025-09-11T20:06:14.0665345Z)\r\n- + [Linux amd64](https://get.helm.sh/helm-v3.19.0-linux-amd64.tar.gz) ([checksum](https://get.helm.sh/helm-v3.19.0-linux-amd64.tar.gz.sha256sum) + / \uFEFFBlobNotFoundThe + specified blob does not exist.\r\nRequestId:5108dce3-001e-0013-4857-23d138000000\r\nTime:2025-09-11T20:06:16.8926147Z)\r\n- + [Linux arm](https://get.helm.sh/helm-v3.19.0-linux-arm.tar.gz) ([checksum](https://get.helm.sh/helm-v3.19.0-linux-arm.tar.gz.sha256sum) + / \uFEFFBlobNotFoundThe + specified blob does not exist.\r\nRequestId:89575b2a-501e-0031-7857-231427000000\r\nTime:2025-09-11T20:06:19.3033671Z)\r\n- + [Linux arm64](https://get.helm.sh/helm-v3.19.0-linux-arm64.tar.gz) ([checksum](https://get.helm.sh/helm-v3.19.0-linux-arm64.tar.gz.sha256sum) + / \uFEFFBlobNotFoundThe + specified blob does not exist.\r\nRequestId:117798a1-c01e-001c-2c57-23a754000000\r\nTime:2025-09-11T20:06:21.1773905Z)\r\n- + [Linux i386](https://get.helm.sh/helm-v3.19.0-linux-386.tar.gz) ([checksum](https://get.helm.sh/helm-v3.19.0-linux-386.tar.gz.sha256sum) + / \uFEFFBlobNotFoundThe + specified blob does not exist.\r\nRequestId:16306131-101e-001f-6c57-234630000000\r\nTime:2025-09-11T20:06:18.4658117Z)\r\n- + [Linux ppc64le](https://get.helm.sh/helm-v3.19.0-linux-ppc64le.tar.gz) + ([checksum](https://get.helm.sh/helm-v3.19.0-linux-ppc64le.tar.gz.sha256sum) + / \uFEFFBlobNotFoundThe + specified blob does not exist.\r\nRequestId:2ecb8908-e01e-0034-4257-23c6fc000000\r\nTime:2025-09-11T20:06:22.2439484Z)\r\n- + [Linux s390x](https://get.helm.sh/helm-v3.19.0-linux-s390x.tar.gz) ([checksum](https://get.helm.sh/helm-v3.19.0-linux-s390x.tar.gz.sha256sum) + / \uFEFFBlobNotFoundThe + specified blob does not exist.\r\nRequestId:773cdddd-b01e-0016-3d57-2303e3000000\r\nTime:2025-09-11T20:06:23.1206678Z)\r\n- + [Linux riscv64](https://get.helm.sh/helm-v3.19.0-linux-riscv64.tar.gz) + ([checksum](https://get.helm.sh/helm-v3.19.0-linux-riscv64.tar.gz.sha256sum) + / \uFEFFBlobNotFoundThe + specified blob does not exist.\r\nRequestId:4b177e66-d01e-0010-3f57-23305c000000\r\nTime:2025-09-11T20:06:24.2675758Z)\r\n- + [Windows amd64](https://get.helm.sh/helm-v3.19.0-windows-amd64.zip) ([checksum](https://get.helm.sh/helm-v3.19.0-windows-amd64.zip.sha256sum) + / \uFEFFBlobNotFoundThe + specified blob does not exist.\r\nRequestId:d615eea7-801e-0050-4457-233764000000\r\nTime:2025-09-11T20:06:25.3589046Z)\r\n- + [Windows arm64](https://get.helm.sh/helm-v3.19.0-windows-arm64.zip) ([checksum](https://get.helm.sh/helm-v3.19.0-windows-arm64.zip.sha256sum) + / \uFEFFBlobNotFoundThe + specified blob does not exist.\r\nRequestId:3e55cb2c-301e-0037-3457-232798000000\r\nTime:2025-09-11T20:06:26.5515621Z)\r\n\r\nThe + [Quickstart Guide](https://helm.sh/docs/intro/quickstart/) will get you + going from there. For **upgrade instructions** or detailed installation + notes, check the [install guide](https://helm.sh/docs/intro/install/). + You can also use a [script to install](https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3) + on any system with `bash`.\r\n\r\n## What's Next\r\n\r\n- 3.19.1 will + contain only bug fixes.\r\n- 3.20.0 is the next feature release.\r\n\r\n## + Changelog\r\n\r\n- bump version to v3.19.0 3d8990f0836691f0229297773f3524598f46bda6 + (Scott Rigby)\r\n- fix: use username and password if provided 9a54bf1df6245232aff6235ebc5da7616f06afa7 + (Evans Mungai)\r\n- chore(deps): bump the k8s-io group with 7 updates + 5af0f68365132bf40d6da38eac87cb94d113b5c3 (dependabot[bot])\r\n- chore(deps): + bump github.com/spf13/cobra from 1.9.1 to 1.10.1 e485606fa6c637f9d33c85d449f5add15fa75f64 + (dependabot[bot])\r\n- chore(deps): bump github.com/stretchr/testify from + 1.11.0 to 1.11.1 6355c3de11a76acc934348b2b2365c795327517b (dependabot[bot])\r\n- + chore(deps): bump github.com/stretchr/testify from 1.10.0 to 1.11.0 ec61f666994ca6572278ff05a45850606d18f12d + (dependabot[bot])\r\n- fix(helm-lint): fmt b27802031110bcfcaf0b685f7f3efda8a309ce8c + (Isaiah Lewis)\r\n- fix(helm-lint): Add TLSClientConfig d33ac5e44b4eb884d67141b00753817b091054ca + (Isaiah Lewis)\r\n- fix(helm-lint): Add HTTP/HTTPS URL support for json + schema references 854370978eb4664ed75e1918df733ecf1503e904 (Isaiah Lewis)\r\n- + chore(deps): bump the k8s-io group with 7 updates 89a3f90e7545857edbfbb7d46af1796f0fee7097 + (dependabot[bot])\r\n- fix: go mod tidy for v3 da4c583145cf4de6a291e81b499ba53785739c2b + (Terry Howe)\r\n- chore(deps): bump golang.org/x/crypto from 0.40.0 to + 0.41.0 e40b1b3b367cae275d823eadcfcef43729e16260 (dependabot[bot])\r\n- + chore(deps): bump golang.org/x/term from 0.33.0 to 0.34.0 a27e9db724540bc53b066dff7d80d075a9fa86d8 + (dependabot[bot])\r\n- fix Chart.yaml handling f13afaacd6f8f9dca4ad914d87fabbe129692eda + (Matt Farina)\r\n- Handle messy index files 039b0b18d3c83c9aa3a80da67f3cf1c2d965a598 + (Matt Farina)\r\n- chore(deps): bump github.com/containerd/containerd + from 1.7.27 to 1.7.28 bec98a91aa1f810220f4fd2a7f06b155afe68970 (dependabot[bot])\r\n- + json schema fix 6d9509aadcfb44aaaa6fc6528443815343a551b4 (Robert Sirchia)\r\n- + fix: k8s version parsing to match original 807225ed62b2901fcbaf56923111d9d7f9204a59 + (Borys Hulii)\r\n- chore(deps): bump sigs.k8s.io/yaml from 1.5.0 to 1.6.0 + cbbd569aba384d6bf04328645d8befd8555c7879 (dependabot[bot])\r\n- Do not + explicitly set SNI in HTTPGetter 5e8ff72b71fab9bda848bc2c980b2139401e1057 + (Terry Howe)\r\n- chore(deps): bump github.com/spf13/pflag from 1.0.6 + to 1.0.7 5b5fb5b6832fd210e6dfeda01ef91d6eea73abe4 (dependabot[bot])\r\n- + chore(deps): bump the k8s-io group with 7 updates d12538a23df05acb027f319766dde19a90f0c78a + (dependabot[bot])\r\n- chore(deps): bump golang.org/x/crypto from 0.39.0 + to 0.40.0 303f8031bdfbd18fa8630def8199957fa4784a20 (dependabot[bot])\r\n- + chore(deps): bump golang.org/x/term from 0.32.0 to 0.33.0 abcc2edc2722406928df731dfac8981032d7831a + (dependabot[bot])\r\n- chore(deps): bump golang.org/x/text from 0.26.0 + to 0.27.0 521c67b3588a37ccb1e19fc90130813587015291 (dependabot[bot])\r\n- + Disabling linter due to unknown issue 227c9cb6b6c4ba190fa4064c0dba91f8a3106b79 + (Matt Farina)\r\n- Updating link handling 4389fa639a4d8e6836fa8df9bb70dd69c2820c12 + (Matt Farina)\r\n- Bump github.com/Masterminds/semver/v3 from 3.3.0 to + 3.3.1 372e40376a15568ba1d9920beb9ab4fe91b90a55 (dependabot[bot])\r\n- + build(deps): bump the k8s-io group with 7 updates 4fa5a64127532cb9e69986f584aef491f36a925b + (dependabot[bot])\r\n- build(deps): bump sigs.k8s.io/yaml from 1.4.0 to + 1.5.0 6284ed853892c95b87d08a08d64199af63ed3e13 (dependabot[bot])\r\n- + fix: user username password for login 2c55a4e8ce483fe1a03d7afa46a89e26852bc3c5 + (Terry Howe)\r\n- Update pkg/registry/transport.go a16e986d4e184b4e065968c5f5c30198a12d880e + (Terry Howe)\r\n- Update pkg/registry/transport.go cea26d8bcac27f888ebb43a8ac8fe87f5851d380 + (Terry Howe)\r\n- fix: add debug logging to oci transport b52bb41484bca2eab616aed83aa922cbb5ef1e3b + (Terry Howe)\r\n- build(deps): bump golang.org/x/crypto from 0.38.0 to + 0.39.0 45075cf9434456c8d1cd59a6355265e958b71b2f (dependabot[bot])\r\n- + build(deps): bump golang.org/x/text from 0.25.0 to 0.26.0 73a78263956bf738008e158afb8d641acbb8f3b9 + (dependabot[bot])\r\n- fix: legacy docker support broken for login 733f94c86a98f2fc4a12eba510e26615d4b8aa59 + (Terry Howe)\r\n- fix: plugin installer test with no Internet fc360417024f4734e5b7356385512a08a31c743e + (Terry Howe)\r\n- Handle an empty registry config file. cfe8cef46f04f36ca33e8696573e243d14e17e79 + (Matt Farina)\r\n- Prevent fetching newReference again as we have in calling + method c33215d765e291bc9321984d4f60a0182c738938 (Benoit Tigeot)\r\n- Prevent + failure when resolving version tags in oras memory store f552b672305a420b54a725185f98e34e51fbd7ba + (Benoit Tigeot)\r\n- fix(client): skipnode utilization for PreCopy a18a52e8982b399101f7f20e2473de8514e85226 + (Brandt Keller)\r\n- test: Skip instead of returning early. looks more + intentional fedf5024d60bcb4efce9cf7f6f1b7bca642a66eb (Jesse Simpson)\r\n- + test: tests repo stripping functionality fe512bae439b5271dd7d2cdb75fadf3c39abd800 + (Jesse Simpson)\r\n- test: include tests for Login based on different + protocol prefixes 099a9e18f30db9c90a3a5e52b2af6dd630a6d757 (Jesse Simpson)\r\n- + fix(client): layers now returns manifest - remove duplicate from descriptors + b07ab77da3a2d20508b8e775981e233a81d4c753 (Brandt Keller)\r\n- fix(client): + return nil on non-allowed media types c225c124ac76eedc3ca6e013df40da8d2c50650d + (Brandt Keller)\r\n- Fix 3.18.0 regression: registry login with scheme + c0f3ace52d974b7465f33079bbf54ed961f875f1 (Scott Rigby)\r\n- Update pkg/plugin/plugin.go + dce60adb5141695b9deab023dbfa25bba681d8fa (Benoit Tigeot)\r\n- Update pkg/plugin/plugin.go + cda0865d64a4deec682fd044aa4412eb9ab643db (Benoit Tigeot)\r\n- Wait for + Helm v4 before raising when platformCommand and Command are set 5d9d9a0fb8c1700c5aa9051e3768dcdabfed642d + (Benoit Tigeot)\r\n- Revert \"fix (helm) : toToml` renders int as float + [ backport to v3 ]\" c5249c1f8d83d44081afee41efeac3ee36d6e9bc (Matt Farina)\r\n- + build(deps): bump the k8s-io group with 7 updates 5b0520d6b323b291546cb6fbc4dc0f76b570a6eb + (dependabot[bot])\r\n- chore: update generalization warning message afefca8b2dcb3c220e24075e8dabf0cffd170daf + (Feng Cao)\r\n- build(deps): bump oras.land/oras-go/v2 from 2.5.0 to 2.6.0 + 8d6d27c26aad581c3da61f7e67786949c9201fcd (dependabot[bot])\r\n- build(deps): + bump the k8s-io group with 7 updates 502c0d5f5b8563be076de69be85f8e0add11b69c + (dependabot[bot])\r\n- build(deps): bump golang.org/x/crypto from 0.37.0 + to 0.38.0 92be9ac0c8abab27efd740be6a671d6e8dd535fd (dependabot[bot])\r\n- + fix: move warning to top of block eb5b6d50474842db17330b11e0db70077e1c4510 + (Feng Cao)\r\n- fix: govulncheck workflow 6b15f26bd45c2856b36bdf3e8c32b44595e4580f + (Matthieu MOREL)\r\n- fix: replace fmt warning with slog 6b5c94475db950a981523344029f0a7c620a2e32 + (Feng Cao)\r\n- fix: add warning when ignore repo flag 247bf7c2e0c591554b6cfd4c2f62cb2700b034ee + (Feng Cao)\r\n- bump version to v3.18.0 94044595c79ddf1311a4cd3df0353fe62a7ed633 + (Robert Sirchia)\r\n- backport #30673 to dev-v3 0a800e84b033ae03fc31a46215378ac7761cb9c5 + (Gerard Nguyen)\r\n- feat: add httproute from gateway-api to create chart + template bd1b67b082122ad1264d07c5d28bbc4c4171b826 (Henrik Gerdes)\r\n\r\n**Full + Changelog**: https://github.com/helm/helm/compare/v3.18.6...v3.19.0" + created_at: "2025-09-11T20:00:38Z" + draft: false + html_url: https://github.com/helm/helm/releases/tag/v3.19.0 + id: 246617373 + immutable: false + name: Helm v3.19.0 + node_id: RE_kwDOApspmc4OsxUd + prerelease: false + published_at: "2025-09-11T21:06:02Z" + tag_name: v3.19.0 + tarball_url: https://api.github.com/repos/helm/helm/tarball/v3.19.0 + target_commitish: main + updated_at: "2025-09-11T21:06:32Z" + upload_url: https://uploads.github.com/repos/helm/helm/releases/246617373/assets{?name,label} + url: https://api.github.com/repos/helm/helm/releases/246617373 + zipball_url: https://api.github.com/repos/helm/helm/zipball/v3.19.0 + 3.19.1: + githubRelease: + assets: + - browser_download_url: https://github.com/helm/helm/releases/download/v3.19.1/helm-v3.19.1-darwin-amd64.tar.gz.asc + content_type: application/octet-stream + created_at: "2025-11-11T02:56:17Z" + digest: sha256:e9e2e527bf01f6f36e8d34078a1b7c4e2dff715d42661aecf391edd7447d0ba1 + download_count: 30 + id: 314948052 + label: null + name: helm-v3.19.1-darwin-amd64.tar.gz.asc + node_id: RA_kwDOApspmc4SxbnU + size: 833 + state: uploaded + updated_at: "2025-11-11T02:56:17Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/314948052 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.19.1/helm-v3.19.1-darwin-amd64.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2025-11-11T02:56:17Z" + digest: sha256:1ad6306b729c24d55fa06db21e989bd4bf941bc306c6b01545ced18b45544cf6 + download_count: 20 + id: 314948058 + label: null + name: helm-v3.19.1-darwin-amd64.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4Sxbna + size: 833 + state: uploaded + updated_at: "2025-11-11T02:56:17Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/314948058 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.19.1/helm-v3.19.1-darwin-amd64.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2025-11-11T02:56:17Z" + digest: sha256:826f5648bee27cb8ab6e8da4d24435e88b11b673fa9689aaed8d1f9c0d8dc88b + download_count: 20 + id: 314948059 + label: null + name: helm-v3.19.1-darwin-amd64.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4Sxbnb + size: 833 + state: uploaded + updated_at: "2025-11-11T02:56:17Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/314948059 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.19.1/helm-v3.19.1-darwin-arm64.tar.gz.asc + content_type: application/octet-stream + created_at: "2025-11-11T02:56:17Z" + digest: sha256:e330e6bfe03f2face8998a92b070d92ed04a418215cd0fc186d83ceeb6c66372 + download_count: 11 + id: 314948060 + label: null + name: helm-v3.19.1-darwin-arm64.tar.gz.asc + node_id: RA_kwDOApspmc4Sxbnc + size: 833 + state: uploaded + updated_at: "2025-11-11T02:56:18Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/314948060 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.19.1/helm-v3.19.1-darwin-arm64.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2025-11-11T02:56:18Z" + digest: sha256:7fd4bb192f2b3536e603fd51d295d7549f4a84bebdc79cc282368d73d07891a9 + download_count: 10 + id: 314948062 + label: null + name: helm-v3.19.1-darwin-arm64.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4Sxbne + size: 833 + state: uploaded + updated_at: "2025-11-11T02:56:18Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/314948062 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.19.1/helm-v3.19.1-darwin-arm64.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2025-11-11T02:56:18Z" + digest: sha256:320e7241ba408d2926f8419bed750c897ce0af55076511a4361fa27d0461759a + download_count: 10 + id: 314948063 + label: null + name: helm-v3.19.1-darwin-arm64.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4Sxbnf + size: 833 + state: uploaded + updated_at: "2025-11-11T02:56:18Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/314948063 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.19.1/helm-v3.19.1-linux-386.tar.gz.asc + content_type: application/octet-stream + created_at: "2025-11-11T02:56:18Z" + digest: sha256:a8f5d1a762c9c200d6d4730e9614ea576b129d2660c0364fa840c7d03621423e + download_count: 27 + id: 314948064 + label: null + name: helm-v3.19.1-linux-386.tar.gz.asc + node_id: RA_kwDOApspmc4Sxbng + size: 833 + state: uploaded + updated_at: "2025-11-11T02:56:18Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/314948064 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.19.1/helm-v3.19.1-linux-386.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2025-11-11T02:56:18Z" + digest: sha256:81db42a1826b1aab2d200d3734b1c6c61e1df4d93cc5c0a40a4e772d760e1820 + download_count: 24 + id: 314948065 + label: null + name: helm-v3.19.1-linux-386.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4Sxbnh + size: 833 + state: uploaded + updated_at: "2025-11-11T02:56:18Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/314948065 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.19.1/helm-v3.19.1-linux-386.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2025-11-11T02:56:18Z" + digest: sha256:7e6a3025c2725c0679c5f82f7389eac7299a6a5e29855a5fcf4a546918e11a4a + download_count: 23 + id: 314948067 + label: null + name: helm-v3.19.1-linux-386.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4Sxbnj + size: 833 + state: uploaded + updated_at: "2025-11-11T02:56:18Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/314948067 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.19.1/helm-v3.19.1-linux-amd64.tar.gz.asc + content_type: application/octet-stream + created_at: "2025-11-11T02:56:18Z" + digest: sha256:ce8322e0d5500b486e6a9bbce604f97779029d27743a0504dc35e5439afdcce7 + download_count: 645 + id: 314948070 + label: null + name: helm-v3.19.1-linux-amd64.tar.gz.asc + node_id: RA_kwDOApspmc4Sxbnm + size: 833 + state: uploaded + updated_at: "2025-11-11T02:56:19Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/314948070 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.19.1/helm-v3.19.1-linux-amd64.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2025-11-11T02:56:19Z" + digest: sha256:4115596b49cf821d2524104349238f81cffccab9767138b4b219e538b0898e80 + download_count: 582 + id: 314948071 + label: null + name: helm-v3.19.1-linux-amd64.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4Sxbnn + size: 833 + state: uploaded + updated_at: "2025-11-11T02:56:19Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/314948071 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.19.1/helm-v3.19.1-linux-amd64.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2025-11-11T02:56:19Z" + digest: sha256:bd551ca5229324c2a8f378e4291f1f296282213c89cf392aec6c9fcdf08315ad + download_count: 41 + id: 314948072 + label: null + name: helm-v3.19.1-linux-amd64.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4Sxbno + size: 833 + state: uploaded + updated_at: "2025-11-11T02:56:19Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/314948072 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.19.1/helm-v3.19.1-linux-arm.tar.gz.asc + content_type: application/octet-stream + created_at: "2025-11-11T02:56:19Z" + digest: sha256:cb0c821e7f845c21cfdec07a607316371009c3316ff2b7931455741c98c64937 + download_count: 20 + id: 314948073 + label: null + name: helm-v3.19.1-linux-arm.tar.gz.asc + node_id: RA_kwDOApspmc4Sxbnp + size: 833 + state: uploaded + updated_at: "2025-11-11T02:56:19Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/314948073 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.19.1/helm-v3.19.1-linux-arm.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2025-11-11T02:56:19Z" + digest: sha256:5978635a1dd9cd597e615aa46bb8e9675552edcb954f00705bbf7ad69f6ff310 + download_count: 19 + id: 314948074 + label: null + name: helm-v3.19.1-linux-arm.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4Sxbnq + size: 833 + state: uploaded + updated_at: "2025-11-11T02:56:19Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/314948074 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.19.1/helm-v3.19.1-linux-arm.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2025-11-11T02:56:19Z" + digest: sha256:bb06eb4620e059a318f7640d48f44c1ad62a487669ee762d61896420a168fc77 + download_count: 18 + id: 314948075 + label: null + name: helm-v3.19.1-linux-arm.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4Sxbnr + size: 833 + state: uploaded + updated_at: "2025-11-11T02:56:19Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/314948075 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.19.1/helm-v3.19.1-linux-arm64.tar.gz.asc + content_type: application/octet-stream + created_at: "2025-11-11T02:56:19Z" + digest: sha256:42cb56f02b938959be2bedb47d87873b80e6961c214b0e44bde623131778c3ee + download_count: 204 + id: 314948076 + label: null + name: helm-v3.19.1-linux-arm64.tar.gz.asc + node_id: RA_kwDOApspmc4Sxbns + size: 833 + state: uploaded + updated_at: "2025-11-11T02:56:20Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/314948076 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.19.1/helm-v3.19.1-linux-arm64.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2025-11-11T02:56:20Z" + digest: sha256:d86947157ddc872bcfc45ad5dc0f1cd23105a6902bf5b03e1d934347752a465c + download_count: 203 + id: 314948081 + label: null + name: helm-v3.19.1-linux-arm64.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4Sxbnx + size: 833 + state: uploaded + updated_at: "2025-11-11T02:56:20Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/314948081 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.19.1/helm-v3.19.1-linux-arm64.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2025-11-11T02:56:20Z" + digest: sha256:71c797738d307fbba42f285af81df39161a23aaeef409f9371192128f46906a0 + download_count: 11 + id: 314948082 + label: null + name: helm-v3.19.1-linux-arm64.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4Sxbny + size: 833 + state: uploaded + updated_at: "2025-11-11T02:56:20Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/314948082 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.19.1/helm-v3.19.1-linux-ppc64le.tar.gz.asc + content_type: application/octet-stream + created_at: "2025-11-11T02:56:20Z" + digest: sha256:11660269353fd880bf6328b1d1c06f1b590d545be7640fefb7b5ee5d358fe4b1 + download_count: 16 + id: 314948083 + label: null + name: helm-v3.19.1-linux-ppc64le.tar.gz.asc + node_id: RA_kwDOApspmc4Sxbnz + size: 833 + state: uploaded + updated_at: "2025-11-11T02:56:20Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/314948083 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.19.1/helm-v3.19.1-linux-ppc64le.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2025-11-11T02:56:20Z" + digest: sha256:efd46b2aa10bd2a368de766b20ea07cb62933f2d450450b9a17ff6df7f96d9b3 + download_count: 17 + id: 314948084 + label: null + name: helm-v3.19.1-linux-ppc64le.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4Sxbn0 + size: 833 + state: uploaded + updated_at: "2025-11-11T02:56:20Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/314948084 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.19.1/helm-v3.19.1-linux-ppc64le.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2025-11-11T02:56:20Z" + digest: sha256:2c1129c54a33836e8ba7fd772a4c12f650993f98cab5a920a315f8ac5626104f + download_count: 21 + id: 314948085 + label: null + name: helm-v3.19.1-linux-ppc64le.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4Sxbn1 + size: 833 + state: uploaded + updated_at: "2025-11-11T02:56:21Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/314948085 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.19.1/helm-v3.19.1-linux-riscv64.tar.gz.asc + content_type: application/octet-stream + created_at: "2025-11-11T02:56:21Z" + digest: sha256:393a157087e6cc57cb30bc331ecc0874ea6655f2c1f7266ddbc413f1a9d162e7 + download_count: 18 + id: 314948086 + label: null + name: helm-v3.19.1-linux-riscv64.tar.gz.asc + node_id: RA_kwDOApspmc4Sxbn2 + size: 833 + state: uploaded + updated_at: "2025-11-11T02:56:21Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/314948086 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.19.1/helm-v3.19.1-linux-riscv64.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2025-11-11T02:56:21Z" + digest: sha256:773304985944a7bddea5014d12d4167e785ddf26d51ffea255cfd4622f0ee051 + download_count: 22 + id: 314948088 + label: null + name: helm-v3.19.1-linux-riscv64.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4Sxbn4 + size: 833 + state: uploaded + updated_at: "2025-11-11T02:56:21Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/314948088 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.19.1/helm-v3.19.1-linux-riscv64.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2025-11-11T02:56:21Z" + digest: sha256:68c7891430711ac9399d09e1456e0210bada372836d39e4180cdbef276adc082 + download_count: 18 + id: 314948089 + label: null + name: helm-v3.19.1-linux-riscv64.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4Sxbn5 + size: 833 + state: uploaded + updated_at: "2025-11-11T02:56:21Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/314948089 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.19.1/helm-v3.19.1-linux-s390x.tar.gz.asc + content_type: application/octet-stream + created_at: "2025-11-11T02:56:21Z" + digest: sha256:2f16638bb9a7462880a6009e8e6edbe73158752c9347efa7702a551958120b1a + download_count: 18 + id: 314948090 + label: null + name: helm-v3.19.1-linux-s390x.tar.gz.asc + node_id: RA_kwDOApspmc4Sxbn6 + size: 833 + state: uploaded + updated_at: "2025-11-11T02:56:21Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/314948090 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.19.1/helm-v3.19.1-linux-s390x.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2025-11-11T02:56:21Z" + digest: sha256:35d76571537f11759247be021a28314e8eba403c7fcfda30945dbf01c2413528 + download_count: 19 + id: 314948091 + label: null + name: helm-v3.19.1-linux-s390x.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4Sxbn7 + size: 833 + state: uploaded + updated_at: "2025-11-11T02:56:21Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/314948091 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.19.1/helm-v3.19.1-linux-s390x.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2025-11-11T02:56:21Z" + digest: sha256:76d4a1d1af4e1762a741cf588855050a38bded65fb0d2d15354fde404e1beea8 + download_count: 18 + id: 314948092 + label: null + name: helm-v3.19.1-linux-s390x.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4Sxbn8 + size: 833 + state: uploaded + updated_at: "2025-11-11T02:56:22Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/314948092 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.19.1/helm-v3.19.1-windows-amd64.zip.asc + content_type: application/octet-stream + created_at: "2025-11-11T02:56:22Z" + digest: sha256:e50890a839e2a37f8b607d068092fa8b5b0dbb8ed17758df4cc3d8617453d653 + download_count: 47 + id: 314948093 + label: null + name: helm-v3.19.1-windows-amd64.zip.asc + node_id: RA_kwDOApspmc4Sxbn9 + size: 833 + state: uploaded + updated_at: "2025-11-11T02:56:22Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/314948093 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.19.1/helm-v3.19.1-windows-amd64.zip.sha256.asc + content_type: application/octet-stream + created_at: "2025-11-11T02:56:22Z" + digest: sha256:c6871ac43918360db30d0b53fdf33446db3325523ab60016d955b0db76e0fc90 + download_count: 29 + id: 314948094 + label: null + name: helm-v3.19.1-windows-amd64.zip.sha256.asc + node_id: RA_kwDOApspmc4Sxbn- + size: 833 + state: uploaded + updated_at: "2025-11-11T02:56:22Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/314948094 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.19.1/helm-v3.19.1-windows-amd64.zip.sha256sum.asc + content_type: application/octet-stream + created_at: "2025-11-11T02:56:22Z" + digest: sha256:7ee331e617870c7df1c21eb72a12a9e663d76774120fd76212b1990b7910606c + download_count: 26 + id: 314948099 + label: null + name: helm-v3.19.1-windows-amd64.zip.sha256sum.asc + node_id: RA_kwDOApspmc4SxboD + size: 833 + state: uploaded + updated_at: "2025-11-11T02:56:22Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/314948099 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.19.1/helm-v3.19.1-windows-arm64.zip.asc + content_type: application/octet-stream + created_at: "2025-11-11T02:56:22Z" + digest: sha256:f95b4e139bebf0c44da340e7b028e662a19d0077fb3bc5b8cec9bf6c419c9bf6 + download_count: 16 + id: 314948101 + label: null + name: helm-v3.19.1-windows-arm64.zip.asc + node_id: RA_kwDOApspmc4SxboF + size: 833 + state: uploaded + updated_at: "2025-11-11T02:56:22Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/314948101 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.19.1/helm-v3.19.1-windows-arm64.zip.sha256.asc + content_type: application/octet-stream + created_at: "2025-11-11T02:56:22Z" + digest: sha256:b320c4fb4febd97eb0f31daab09552c1e3da9aa445ae551970ea617fe254a712 + download_count: 11 + id: 314948102 + label: null + name: helm-v3.19.1-windows-arm64.zip.sha256.asc + node_id: RA_kwDOApspmc4SxboG + size: 833 + state: uploaded + updated_at: "2025-11-11T02:56:23Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/314948102 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.19.1/helm-v3.19.1-windows-arm64.zip.sha256sum.asc + content_type: application/octet-stream + created_at: "2025-11-11T02:56:23Z" + digest: sha256:e2794c8b177abcbe04c83f48b3698c108bd45a4cb51416afcf3afa29444f41a3 + download_count: 10 + id: 314948104 + label: null + name: helm-v3.19.1-windows-arm64.zip.sha256sum.asc + node_id: RA_kwDOApspmc4SxboI + size: 833 + state: uploaded + updated_at: "2025-11-11T02:56:23Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/314948104 + assets_url: https://api.github.com/repos/helm/helm/releases/261298610/assets + author: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + body: "Helm v3.19.1 is a patch release. Users are encouraged to upgrade + for the best experience. Users are encouraged to upgrade for the best + experience.\r\n\r\nThe community keeps growing, and we'd love to see you + there!\r\n\r\n- Join the discussion in [Kubernetes Slack](https://kubernetes.slack.com):\r\n + \ - for questions and just to hang out\r\n - for discussing PRs, code, + and bugs\r\n- Hang out at the Public Developer Call: Thursday, 9:30 Pacific + via [Zoom](https://zoom.us/j/696660622)\r\n- Test, debug, and contribute + charts: [ArtifactHub/packages](https://artifacthub.io/packages/search?kind=0)\r\n\r\n## + Installation and Upgrading\r\n\r\nDownload Helm v3.19.1. The common platform + binaries are here:\r\n\r\n- [MacOS amd64](https://get.helm.sh/helm-v3.19.1-darwin-amd64.tar.gz) + ([checksum](https://get.helm.sh/helm-v3.19.1-darwin-amd64.tar.gz.sha256sum) + / 567f50c5855c45e85ecfa50846bf30adad5d68e1d35ff216866b4897e91bcb80)\r\n- + [MacOS arm64](https://get.helm.sh/helm-v3.19.1-darwin-arm64.tar.gz) ([checksum](https://get.helm.sh/helm-v3.19.1-darwin-arm64.tar.gz.sha256sum) + / 080f320cfc4ee3816fd6c8f73820f4b3d941b10f709e69bf9afd78f8f8e7c92a)\r\n- + [Linux amd64](https://get.helm.sh/helm-v3.19.1-linux-amd64.tar.gz) ([checksum](https://get.helm.sh/helm-v3.19.1-linux-amd64.tar.gz.sha256sum) + / 966bed9b1e0dda11268f59bd7268c3cd3e308b37b070546e1d78a02526ff63f2)\r\n- + [Linux arm](https://get.helm.sh/helm-v3.19.1-linux-arm.tar.gz) ([checksum](https://get.helm.sh/helm-v3.19.1-linux-arm.tar.gz.sha256sum) + / cd21c7ee767b4138e13ca856f102732cae7270c1bbe6d080a3d98153953550ac)\r\n- + [Linux arm64](https://get.helm.sh/helm-v3.19.1-linux-arm64.tar.gz) ([checksum](https://get.helm.sh/helm-v3.19.1-linux-arm64.tar.gz.sha256sum) + / ceed150305a1d1ef4a37923a7f66931a6807c34a38ea487fa8340e102dd2c7f7)\r\n- + [Linux i386](https://get.helm.sh/helm-v3.19.1-linux-386.tar.gz) ([checksum](https://get.helm.sh/helm-v3.19.1-linux-386.tar.gz.sha256sum) + / be3b70efa7b0ddaddd60d94ef0a37b69e22a5ee05efbec579729cdaacc2e7c5e)\r\n- + [Linux ppc64le](https://get.helm.sh/helm-v3.19.1-linux-ppc64le.tar.gz) + ([checksum](https://get.helm.sh/helm-v3.19.1-linux-ppc64le.tar.gz.sha256sum) + / acb8a92d873cc2ae2dd44593d88a0bc3a78eb7abd6b3784c3fced9e005401018)\r\n- + [Linux s390x](https://get.helm.sh/helm-v3.19.1-linux-s390x.tar.gz) ([checksum](https://get.helm.sh/helm-v3.19.1-linux-s390x.tar.gz.sha256sum) + / 279dcdeaa9f3b42c8558e6e1815466852a80bd373f9a9e83ae7f724ff2cda17f)\r\n- + [Linux riscv64](https://get.helm.sh/helm-v3.19.1-linux-riscv64.tar.gz) + ([checksum](https://get.helm.sh/helm-v3.19.1-linux-riscv64.tar.gz.sha256sum) + / ed0a8b03c2163157a948a67702d1884f4936575f9be953c673748b41bd2a9881)\r\n- + [Windows amd64](https://get.helm.sh/helm-v3.19.1-windows-amd64.zip) ([checksum](https://get.helm.sh/helm-v3.19.1-windows-amd64.zip.sha256sum) + / 3fd3ab4a47364c04c51e0e7387e0598aa2c8c43dd535128665aa43e695cec11e)\r\n- + [Windows arm64](https://get.helm.sh/helm-v3.19.1-windows-arm64.zip) ([checksum](https://get.helm.sh/helm-v3.19.1-windows-arm64.zip.sha256sum) + / 361b04b599ada09be194461cd0347db20276849c22f57adc697963d57a515c6a)\r\n\r\nThis + release was signed with `672C 657B E06B 4B30 969C 4A57 4614 49C2 5E36 + B98E ` and can be found at @mattfarina [keybase account](https://keybase.io/mattfarina). + Please use the attached signatures for verifying this release using `gpg`.\r\n\r\nThe + [Quickstart Guide](https://helm.sh/docs/intro/quickstart/) will get you + going from there. For **upgrade instructions** or detailed installation + notes, check the [install guide](https://helm.sh/docs/intro/install/). + You can also use a [script to install](https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3) + on any system with `bash`.\r\n\r\n## What's Next\r\n\r\n - 4.0.0 is the + next major release and will be on November 12, 2025\r\n - 3.19.2 and 4.0.01 + are the next patch releases and will be on December 10, 2025\r\n - 3.20.0 + and 4.1.0 is the next minor releases and will be on January 21, 2026\r\n\r\n## + Changelog\r\n\r\n- chore(deps): bump github.com/containerd/containerd + from 1.7.28 to 1.7.29 4f953c223ba21103268e0b664c64240bc69fced7 (dependabot[bot])\r\n- + jsonschema: warn and ignore unresolved URN $ref to match v3.18.4 6801f4d6b3c97a146e21034a34b3d098d0013931 + (Benoit Tigeot)\r\n- Avoid \"panic: interface conversion: interface {} + is nil\" 2f619be224790e7b2447b10faa3b965701177e40 (Benoit Tigeot)\r\n- + Fix `helm pull` untar dir check with repo urls 8112d47cbba491a70d84005e5a88bd0e72ef5040 + (Luna Stadler)\r\n- Fix deprecation warning 5dff7ce71b53828d36121f81ac59cf389b811ebc + (Benoit Tigeot)\r\n- chore(deps): bump github.com/spf13/pflag from 1.0.7 + to 1.0.10 2dad4d27fa39e658bfb87c9f61f3aea09669536a (dependabot[bot])\r\n- + Add timeout flag to repo add and update flags a8337106b434584b600d2b51c191610dde34fc53 + (Reinhard NƤgele)\r\n- chore(deps): bump golang.org/x/crypto from 0.41.0 + to 0.43.0 2e12c81d2aa702e31340582d9f9f7fe05d2700b4 (Dirk Müller)\r\n" + created_at: "2025-11-11T02:30:49Z" + draft: false + html_url: https://github.com/helm/helm/releases/tag/v3.19.1 + id: 261298610 + immutable: false + mentions_count: 1 + name: Helm v3.19.1 + node_id: RE_kwDOApspmc4Pkxmy + prerelease: false + published_at: "2025-11-11T02:57:16Z" + reactions: + "+1": 3 + "-1": 0 + confused: 0 + eyes: 0 + heart: 0 + hooray: 0 + laugh: 0 + rocket: 2 + total_count: 5 + url: https://api.github.com/repos/helm/helm/releases/261298610/reactions + tag_name: v3.19.1 + tarball_url: https://api.github.com/repos/helm/helm/tarball/v3.19.1 + target_commitish: main + updated_at: "2025-11-11T02:57:16Z" + upload_url: https://uploads.github.com/repos/helm/helm/releases/261298610/assets{?name,label} + url: https://api.github.com/repos/helm/helm/releases/261298610 + zipball_url: https://api.github.com/repos/helm/helm/zipball/v3.19.1 + 3.19.2: + githubRelease: + assets: + - browser_download_url: https://github.com/helm/helm/releases/download/v3.19.2/helm-v3.19.2-darwin-amd64.tar.gz.asc + content_type: text/plain + created_at: "2025-11-12T14:17:19Z" + digest: sha256:6c744a9ed58289f720f1ca8104c333bec9dbb6d3b093777ddc233d503d1ab2a2 + download_count: 4 + id: 315548897 + label: null + name: helm-v3.19.2-darwin-amd64.tar.gz.asc + node_id: RA_kwDOApspmc4SzuTh + size: 833 + state: uploaded + updated_at: "2025-11-12T14:17:19Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/315548897 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.19.2/helm-v3.19.2-darwin-amd64.tar.gz.sha256.asc + content_type: text/plain + created_at: "2025-11-12T14:17:19Z" + digest: sha256:37a8ae9459e9e9df821e7eb7edbb0360f6cb8f6d6c1f286342eef22b5ae5c513 + download_count: 3 + id: 315548898 + label: null + name: helm-v3.19.2-darwin-amd64.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4SzuTi + size: 833 + state: uploaded + updated_at: "2025-11-12T14:17:20Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/315548898 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.19.2/helm-v3.19.2-darwin-amd64.tar.gz.sha256sum.asc + content_type: text/plain + created_at: "2025-11-12T14:17:19Z" + digest: sha256:d3a13b7bc587d6232f6fe97dee8c986c20039ef45bc8bba40c59101b3ff019b2 + download_count: 3 + id: 315548899 + label: null + name: helm-v3.19.2-darwin-amd64.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4SzuTj + size: 833 + state: uploaded + updated_at: "2025-11-12T14:17:20Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/315548899 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.19.2/helm-v3.19.2-darwin-arm64.tar.gz.asc + content_type: text/plain + created_at: "2025-11-12T14:17:20Z" + digest: sha256:512de4cf21fecabd99115c1be3a99ddc538aaf2797daa3c7b8e382e00764484a + download_count: 2 + id: 315548900 + label: null + name: helm-v3.19.2-darwin-arm64.tar.gz.asc + node_id: RA_kwDOApspmc4SzuTk + size: 833 + state: uploaded + updated_at: "2025-11-12T14:17:20Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/315548900 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.19.2/helm-v3.19.2-darwin-arm64.tar.gz.sha256.asc + content_type: text/plain + created_at: "2025-11-12T14:17:20Z" + digest: sha256:14a09ed32385d3345486bb9608c57fe962a3e7d0c3bb427c578abb190c92da44 + download_count: 3 + id: 315548902 + label: null + name: helm-v3.19.2-darwin-arm64.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4SzuTm + size: 833 + state: uploaded + updated_at: "2025-11-12T14:17:20Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/315548902 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.19.2/helm-v3.19.2-darwin-arm64.tar.gz.sha256sum.asc + content_type: text/plain + created_at: "2025-11-12T14:17:20Z" + digest: sha256:4a56beb65fe4fde70fa3347c78518e1537e4f1a1cdeaebfdfb1e6d45a7a273c5 + download_count: 3 + id: 315548903 + label: null + name: helm-v3.19.2-darwin-arm64.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4SzuTn + size: 833 + state: uploaded + updated_at: "2025-11-12T14:17:20Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/315548903 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.19.2/helm-v3.19.2-linux-386.tar.gz.asc + content_type: text/plain + created_at: "2025-11-12T14:17:20Z" + digest: sha256:c9c018e32c6ff0ea9a85fb03f60b5fc07e47933fbf82a18d59f47bc2be793e21 + download_count: 5 + id: 315548904 + label: null + name: helm-v3.19.2-linux-386.tar.gz.asc + node_id: RA_kwDOApspmc4SzuTo + size: 833 + state: uploaded + updated_at: "2025-11-12T14:17:20Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/315548904 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.19.2/helm-v3.19.2-linux-386.tar.gz.sha256.asc + content_type: text/plain + created_at: "2025-11-12T14:17:20Z" + digest: sha256:d9545abae2250650f0f1e3d14bcaa10bb559409c975ce4fc62164569e2cd6605 + download_count: 5 + id: 315548906 + label: null + name: helm-v3.19.2-linux-386.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4SzuTq + size: 833 + state: uploaded + updated_at: "2025-11-12T14:17:21Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/315548906 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.19.2/helm-v3.19.2-linux-386.tar.gz.sha256sum.asc + content_type: text/plain + created_at: "2025-11-12T14:17:21Z" + digest: sha256:63bc068173f137fdd7899947f008cde2b21f22a4926339d9f7912b24f1eae352 + download_count: 5 + id: 315548911 + label: null + name: helm-v3.19.2-linux-386.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4SzuTv + size: 833 + state: uploaded + updated_at: "2025-11-12T14:17:21Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/315548911 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.19.2/helm-v3.19.2-linux-amd64.tar.gz.asc + content_type: text/plain + created_at: "2025-11-12T14:17:21Z" + digest: sha256:37188fdb4e7c2064ddbff6f4e3adc735723c2c9d98545d24ef62fee8002bed91 + download_count: 12 + id: 315548913 + label: null + name: helm-v3.19.2-linux-amd64.tar.gz.asc + node_id: RA_kwDOApspmc4SzuTx + size: 833 + state: uploaded + updated_at: "2025-11-12T14:17:21Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/315548913 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.19.2/helm-v3.19.2-linux-amd64.tar.gz.sha256.asc + content_type: text/plain + created_at: "2025-11-12T14:17:21Z" + digest: sha256:920345f65475d6470d66271d758c60b86002f666e4c77a5f571cb5a3d00d6ad6 + download_count: 8 + id: 315548915 + label: null + name: helm-v3.19.2-linux-amd64.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4SzuTz + size: 833 + state: uploaded + updated_at: "2025-11-12T14:17:21Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/315548915 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.19.2/helm-v3.19.2-linux-amd64.tar.gz.sha256sum.asc + content_type: text/plain + created_at: "2025-11-12T14:17:21Z" + digest: sha256:3000e2de8d3229b3e8cf2a0c52c0ec175ddbfc72e8f17a24c8c30e209e3d4f71 + download_count: 5 + id: 315548918 + label: null + name: helm-v3.19.2-linux-amd64.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4SzuT2 + size: 833 + state: uploaded + updated_at: "2025-11-12T14:17:21Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/315548918 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.19.2/helm-v3.19.2-linux-arm.tar.gz.asc + content_type: text/plain + created_at: "2025-11-12T14:17:21Z" + digest: sha256:cab8e28fa730a7f16c8b84215f4ed46112d97f666e23128ba6996759a7ea3a01 + download_count: 2 + id: 315548919 + label: null + name: helm-v3.19.2-linux-arm.tar.gz.asc + node_id: RA_kwDOApspmc4SzuT3 + size: 833 + state: uploaded + updated_at: "2025-11-12T14:17:22Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/315548919 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.19.2/helm-v3.19.2-linux-arm.tar.gz.sha256.asc + content_type: text/plain + created_at: "2025-11-12T14:17:22Z" + digest: sha256:d18cb0b9304b85f44675996db9aa3f07498817022e99140eea7fa13e361468e8 + download_count: 3 + id: 315548920 + label: null + name: helm-v3.19.2-linux-arm.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4SzuT4 + size: 833 + state: uploaded + updated_at: "2025-11-12T14:17:22Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/315548920 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.19.2/helm-v3.19.2-linux-arm.tar.gz.sha256sum.asc + content_type: text/plain + created_at: "2025-11-12T14:17:22Z" + digest: sha256:354ce2875812d01fde1f7cf12f0dafaee07c6508543b29632bd8819a90569f3a + download_count: 3 + id: 315548922 + label: null + name: helm-v3.19.2-linux-arm.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4SzuT6 + size: 833 + state: uploaded + updated_at: "2025-11-12T14:17:22Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/315548922 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.19.2/helm-v3.19.2-linux-arm64.tar.gz.asc + content_type: text/plain + created_at: "2025-11-12T14:17:22Z" + digest: sha256:e5aebb3cc68104c1f6f9209ad87d3ede95904b03b23913c59c0ebd3c7382a399 + download_count: 2 + id: 315548924 + label: null + name: helm-v3.19.2-linux-arm64.tar.gz.asc + node_id: RA_kwDOApspmc4SzuT8 + size: 833 + state: uploaded + updated_at: "2025-11-12T14:17:22Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/315548924 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.19.2/helm-v3.19.2-linux-arm64.tar.gz.sha256.asc + content_type: text/plain + created_at: "2025-11-12T14:17:22Z" + digest: sha256:e5ff5b68b1f4ccc30e5ead286f6d1ec086b8d7d39f906106a4da329369b69784 + download_count: 3 + id: 315548925 + label: null + name: helm-v3.19.2-linux-arm64.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4SzuT9 + size: 833 + state: uploaded + updated_at: "2025-11-12T14:17:22Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/315548925 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.19.2/helm-v3.19.2-linux-arm64.tar.gz.sha256sum.asc + content_type: text/plain + created_at: "2025-11-12T14:17:22Z" + digest: sha256:bf1aa8b74ae2583b90b6575c89aed6f0f2ef3146949798a6c8c7ebe92d096e3d + download_count: 3 + id: 315548926 + label: null + name: helm-v3.19.2-linux-arm64.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4SzuT- + size: 833 + state: uploaded + updated_at: "2025-11-12T14:17:22Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/315548926 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.19.2/helm-v3.19.2-linux-ppc64le.tar.gz.asc + content_type: text/plain + created_at: "2025-11-12T14:17:22Z" + digest: sha256:7d5dd6b9a6e2de35e04f97799bfcca99400e8d0002662fc7987d1e738de435aa + download_count: 2 + id: 315548928 + label: null + name: helm-v3.19.2-linux-ppc64le.tar.gz.asc + node_id: RA_kwDOApspmc4SzuUA + size: 833 + state: uploaded + updated_at: "2025-11-12T14:17:23Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/315548928 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.19.2/helm-v3.19.2-linux-ppc64le.tar.gz.sha256.asc + content_type: text/plain + created_at: "2025-11-12T14:17:23Z" + digest: sha256:91438bd7c59860bffe7095d1e471493578ab87c6854fbd9dfdcc6f1397e7fca1 + download_count: 3 + id: 315548929 + label: null + name: helm-v3.19.2-linux-ppc64le.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4SzuUB + size: 833 + state: uploaded + updated_at: "2025-11-12T14:17:23Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/315548929 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.19.2/helm-v3.19.2-linux-ppc64le.tar.gz.sha256sum.asc + content_type: text/plain + created_at: "2025-11-12T14:17:23Z" + digest: sha256:415ff3fb4fd3eed5c4c68ed4b7c8612eb1a3dd92f5f3d68ad90ca581ff52bf7c + download_count: 3 + id: 315548932 + label: null + name: helm-v3.19.2-linux-ppc64le.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4SzuUE + size: 833 + state: uploaded + updated_at: "2025-11-12T14:17:23Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/315548932 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.19.2/helm-v3.19.2-linux-riscv64.tar.gz.asc + content_type: text/plain + created_at: "2025-11-12T14:17:23Z" + digest: sha256:63132fdbb3d53adeb501fbb4173fc5f368a74da96a1c695750e765b6693651d9 + download_count: 2 + id: 315548936 + label: null + name: helm-v3.19.2-linux-riscv64.tar.gz.asc + node_id: RA_kwDOApspmc4SzuUI + size: 833 + state: uploaded + updated_at: "2025-11-12T14:17:23Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/315548936 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.19.2/helm-v3.19.2-linux-riscv64.tar.gz.sha256.asc + content_type: text/plain + created_at: "2025-11-12T14:17:23Z" + digest: sha256:f853935e4cbce6fd1d3a3d9b85175a7e0bd97ec04768a85cf93f1e7ef5f529b5 + download_count: 3 + id: 315548937 + label: null + name: helm-v3.19.2-linux-riscv64.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4SzuUJ + size: 833 + state: uploaded + updated_at: "2025-11-12T14:17:23Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/315548937 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.19.2/helm-v3.19.2-linux-riscv64.tar.gz.sha256sum.asc + content_type: text/plain + created_at: "2025-11-12T14:17:23Z" + digest: sha256:140f6396ce23c331ebdc5de5db2039407e2da8fd80d1fea732cf21548b144073 + download_count: 3 + id: 315548938 + label: null + name: helm-v3.19.2-linux-riscv64.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4SzuUK + size: 833 + state: uploaded + updated_at: "2025-11-12T14:17:23Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/315548938 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.19.2/helm-v3.19.2-linux-s390x.tar.gz.asc + content_type: text/plain + created_at: "2025-11-12T14:17:23Z" + digest: sha256:0926433cd81664d1568bbb11a90914f0d3d442cd43d9fb70c513fa51a181350e + download_count: 2 + id: 315548941 + label: null + name: helm-v3.19.2-linux-s390x.tar.gz.asc + node_id: RA_kwDOApspmc4SzuUN + size: 833 + state: uploaded + updated_at: "2025-11-12T14:17:24Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/315548941 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.19.2/helm-v3.19.2-linux-s390x.tar.gz.sha256.asc + content_type: text/plain + created_at: "2025-11-12T14:17:24Z" + digest: sha256:c958556e02e81a7072ad9afa63a90c7daefc03cff90dd678c4a6d00d9f0915db + download_count: 3 + id: 315548943 + label: null + name: helm-v3.19.2-linux-s390x.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4SzuUP + size: 833 + state: uploaded + updated_at: "2025-11-12T14:17:24Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/315548943 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.19.2/helm-v3.19.2-linux-s390x.tar.gz.sha256sum.asc + content_type: text/plain + created_at: "2025-11-12T14:17:24Z" + digest: sha256:232443001e02f44119b89476928cf32184d425a234c1734a319e8291f2afa337 + download_count: 3 + id: 315548946 + label: null + name: helm-v3.19.2-linux-s390x.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4SzuUS + size: 833 + state: uploaded + updated_at: "2025-11-12T14:17:24Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/315548946 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.19.2/helm-v3.19.2-windows-amd64.zip.asc + content_type: text/plain + created_at: "2025-11-12T14:17:24Z" + digest: sha256:1cf93adbfdf8b7557034208ad19033de0cc0ca20f5c824759787b9e07f99219c + download_count: 4 + id: 315548947 + label: null + name: helm-v3.19.2-windows-amd64.zip.asc + node_id: RA_kwDOApspmc4SzuUT + size: 833 + state: uploaded + updated_at: "2025-11-12T14:17:24Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/315548947 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.19.2/helm-v3.19.2-windows-amd64.zip.sha256.asc + content_type: text/plain + created_at: "2025-11-12T14:17:24Z" + digest: sha256:1690d07babf25508cd2b4c04fdbee5598ca068072db47c5e08a27f0af9317e0d + download_count: 5 + id: 315548948 + label: null + name: helm-v3.19.2-windows-amd64.zip.sha256.asc + node_id: RA_kwDOApspmc4SzuUU + size: 833 + state: uploaded + updated_at: "2025-11-12T14:17:24Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/315548948 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.19.2/helm-v3.19.2-windows-amd64.zip.sha256sum.asc + content_type: text/plain + created_at: "2025-11-12T14:17:24Z" + digest: sha256:cbef790a8480b9f47ae2546db7ae72bbefa431bd3a46adc968d36488ee129c45 + download_count: 5 + id: 315548949 + label: null + name: helm-v3.19.2-windows-amd64.zip.sha256sum.asc + node_id: RA_kwDOApspmc4SzuUV + size: 833 + state: uploaded + updated_at: "2025-11-12T14:17:24Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/315548949 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.19.2/helm-v3.19.2-windows-arm64.zip.asc + content_type: text/plain + created_at: "2025-11-12T14:17:24Z" + digest: sha256:1006e88dc605ebfa0c9842e0a468db49f6d7cfffbab3b3a36add065c7de4b349 + download_count: 2 + id: 315548951 + label: null + name: helm-v3.19.2-windows-arm64.zip.asc + node_id: RA_kwDOApspmc4SzuUX + size: 833 + state: uploaded + updated_at: "2025-11-12T14:17:25Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/315548951 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.19.2/helm-v3.19.2-windows-arm64.zip.sha256.asc + content_type: text/plain + created_at: "2025-11-12T14:17:25Z" + digest: sha256:1a23bd40aa748ff9b3fc2aabce3e8760c87543cabd765744d29d3e9be6fc1267 + download_count: 3 + id: 315548953 + label: null + name: helm-v3.19.2-windows-arm64.zip.sha256.asc + node_id: RA_kwDOApspmc4SzuUZ + size: 833 + state: uploaded + updated_at: "2025-11-12T14:17:25Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/315548953 + - browser_download_url: https://github.com/helm/helm/releases/download/v3.19.2/helm-v3.19.2-windows-arm64.zip.sha256sum.asc + content_type: text/plain + created_at: "2025-11-12T14:17:25Z" + digest: sha256:ec3a54aeb2e615f099e4105735a99cbc56a1b8d35445e79f2c2fab5e6049c551 + download_count: 3 + id: 315548955 + label: null + name: helm-v3.19.2-windows-arm64.zip.sha256sum.asc + node_id: RA_kwDOApspmc4SzuUb + size: 833 + state: uploaded + updated_at: "2025-11-12T14:17:25Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/315548955 + assets_url: https://api.github.com/repos/helm/helm/releases/261771450/assets + author: + avatar_url: https://avatars.githubusercontent.com/u/62991?v=4 + events_url: https://api.github.com/users/mattfarina/events{/privacy} + followers_url: https://api.github.com/users/mattfarina/followers + following_url: https://api.github.com/users/mattfarina/following{/other_user} + gists_url: https://api.github.com/users/mattfarina/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mattfarina + id: 62991 + login: mattfarina + node_id: MDQ6VXNlcjYyOTkx + organizations_url: https://api.github.com/users/mattfarina/orgs + received_events_url: https://api.github.com/users/mattfarina/received_events + repos_url: https://api.github.com/users/mattfarina/repos + site_admin: false + starred_url: https://api.github.com/users/mattfarina/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mattfarina/subscriptions + type: User + url: https://api.github.com/users/mattfarina + user_view_type: public + body: "Helm v3.19.2 is a patch release. It is a rebuild of the v3.19.1 release + with no code changes.\r\n\r\nThe community keeps growing, and we'd love + to see you there!\r\n\r\n- Join the discussion in [Kubernetes Slack](https://kubernetes.slack.com):\r\n + \ - for questions and just to hang out\r\n - for discussing PRs, code, + and bugs\r\n- Hang out at the Public Developer Call: Thursday, 9:30 Pacific + via [Zoom](https://zoom.us/j/696660622)\r\n- Test, debug, and contribute + charts: [ArtifactHub/packages](https://artifacthub.io/packages/search?kind=0)\r\n\r\n## + Installation and Upgrading\r\n\r\nDownload Helm v3.19.2. The common platform + binaries are here:\r\n\r\n- [MacOS amd64](https://get.helm.sh/helm-v3.19.2-darwin-amd64.tar.gz) + ([checksum](https://get.helm.sh/helm-v3.19.2-darwin-amd64.tar.gz.sha256sum) + / 7ef4416cdef4c2d78a09e1c8f07a51e945dc0343c883a46b1f628deab52690b7)\r\n- + [MacOS arm64](https://get.helm.sh/helm-v3.19.2-darwin-arm64.tar.gz) ([checksum](https://get.helm.sh/helm-v3.19.2-darwin-arm64.tar.gz.sha256sum) + / f0847f899479b66a6dd8d9fcd452e8db2562e4cf3f7de28103f9fcf2b824f1d5)\r\n- + [Linux amd64](https://get.helm.sh/helm-v3.19.2-linux-amd64.tar.gz) ([checksum](https://get.helm.sh/helm-v3.19.2-linux-amd64.tar.gz.sha256sum) + / 2114c9dea2844dce6d0ee2d792a9aae846be8cf53d5b19dc2988b5a0e8fec26e)\r\n- + [Linux arm](https://get.helm.sh/helm-v3.19.2-linux-arm.tar.gz) ([checksum](https://get.helm.sh/helm-v3.19.2-linux-arm.tar.gz.sha256sum) + / 20bcb0aad82172335914e30ae3efd020d28abc1b470b4b565e67aff152c0e4ee)\r\n- + [Linux arm64](https://get.helm.sh/helm-v3.19.2-linux-arm64.tar.gz) ([checksum](https://get.helm.sh/helm-v3.19.2-linux-arm64.tar.gz.sha256sum) + / 566e9f3a5a83a81e4b03503ae37e368edd52d699619e8a9bb1fdf21561ae0e88)\r\n- + [Linux i386](https://get.helm.sh/helm-v3.19.2-linux-386.tar.gz) ([checksum](https://get.helm.sh/helm-v3.19.2-linux-386.tar.gz.sha256sum) + / 54932ecf2c46c6d3cd9926d28d56e18e70b42467d8ad682844c64cbe8f3dfc11)\r\n- + [Linux ppc64le](https://get.helm.sh/helm-v3.19.2-linux-ppc64le.tar.gz) + ([checksum](https://get.helm.sh/helm-v3.19.2-linux-ppc64le.tar.gz.sha256sum) + / 70d782fb208ebe67b5c508f6e5910a0b75f9b2c99ee3c569a9265aba147d6a37)\r\n- + [Linux s390x](https://get.helm.sh/helm-v3.19.2-linux-s390x.tar.gz) ([checksum](https://get.helm.sh/helm-v3.19.2-linux-s390x.tar.gz.sha256sum) + / 69d2a38afba43c9cd49b0bc6031d77230208506ad2b3c2772b3ad13436639e93)\r\n- + [Linux riscv64](https://get.helm.sh/helm-v3.19.2-linux-riscv64.tar.gz) + ([checksum](https://get.helm.sh/helm-v3.19.2-linux-riscv64.tar.gz.sha256sum) + / b60da5690e66acf89df796d11be91cc2052d6194a655b4d6ea5ee5c01112192b)\r\n- + [Windows amd64](https://get.helm.sh/helm-v3.19.2-windows-amd64.zip) ([checksum](https://get.helm.sh/helm-v3.19.2-windows-amd64.zip.sha256sum) + / 8b3ea37bcd7c5eda68eadd278690498fb886a17ec541b449216ab3b45748600e)\r\n- + [Windows arm64](https://get.helm.sh/helm-v3.19.2-windows-arm64.zip) ([checksum](https://get.helm.sh/helm-v3.19.2-windows-arm64.zip.sha256sum) + / ed37c24ac0f18721fe61182d24f55d8fd0d072052d3e7393338abaf10452b523)\r\n\r\nThe + [Quickstart Guide](https://helm.sh/docs/intro/quickstart/) will get you + going from there. For **upgrade instructions** or detailed installation + notes, check the [install guide](https://helm.sh/docs/intro/install/). + You can also use a [script to install](https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3) + on any system with `bash`.\r\n\r\n## What's Next\r\n\r\n- 3.19.3 and 4.0.1 + are the next patch releases and will be on December 10, 2025\r\n- 3.20.0 + and 4.1.0 is the next minor releases and will be on January 21, 2026\r\n\r\n## + Changelog\r\n\r\n- [backport] fix: get-helm-3 script use helm3-latest-version + 8766e718a0119851f10ddbe4577593a45fadf544 (George Jenkins)" + created_at: "2025-11-12T13:06:54Z" + draft: false + html_url: https://github.com/helm/helm/releases/tag/v3.19.2 + id: 261771450 + immutable: false + name: Helm v3.19.2 + node_id: RE_kwDOApspmc4PmlC6 + prerelease: false + published_at: "2025-11-12T14:17:59Z" + tag_name: v3.19.2 + tarball_url: https://api.github.com/repos/helm/helm/tarball/v3.19.2 + target_commitish: main + updated_at: "2025-11-12T14:17:59Z" + upload_url: https://uploads.github.com/repos/helm/helm/releases/261771450/assets{?name,label} + url: https://api.github.com/repos/helm/helm/releases/261771450 + zipball_url: https://api.github.com/repos/helm/helm/zipball/v3.19.2 + 4.1.1: + githubRelease: + assets: + - browser_download_url: https://github.com/helm/helm/releases/download/v4.1.1/helm-v4.1.1-darwin-amd64.tar.gz.asc + content_type: application/octet-stream + created_at: "2026-02-09T18:32:45Z" + digest: sha256:b8b7d9705f133fdfded5741f82f4c2794d09ce37544176414f9ea36558c173ab + download_count: 53 + id: 353200012 + label: null + name: helm-v4.1.1-darwin-amd64.tar.gz.asc + node_id: RA_kwDOApspmc4VDWeM + size: 228 + state: uploaded + updated_at: "2026-02-09T18:32:45Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/2787248?v=4 + events_url: https://api.github.com/users/gjenkins8/events{/privacy} + followers_url: https://api.github.com/users/gjenkins8/followers + following_url: https://api.github.com/users/gjenkins8/following{/other_user} + gists_url: https://api.github.com/users/gjenkins8/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/gjenkins8 + id: 2787248 + login: gjenkins8 + node_id: MDQ6VXNlcjI3ODcyNDg= + organizations_url: https://api.github.com/users/gjenkins8/orgs + received_events_url: https://api.github.com/users/gjenkins8/received_events + repos_url: https://api.github.com/users/gjenkins8/repos + site_admin: false + starred_url: https://api.github.com/users/gjenkins8/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/gjenkins8/subscriptions + type: User + url: https://api.github.com/users/gjenkins8 + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/353200012 + - browser_download_url: https://github.com/helm/helm/releases/download/v4.1.1/helm-v4.1.1-darwin-amd64.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2026-02-09T18:32:45Z" + digest: sha256:d90dafa0199a6a73c1a0a60b5b9a266435fa2bd3ee157f1a022f72de6ecace4e + download_count: 19 + id: 353200010 + label: null + name: helm-v4.1.1-darwin-amd64.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4VDWeK + size: 228 + state: uploaded + updated_at: "2026-02-09T18:32:45Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/2787248?v=4 + events_url: https://api.github.com/users/gjenkins8/events{/privacy} + followers_url: https://api.github.com/users/gjenkins8/followers + following_url: https://api.github.com/users/gjenkins8/following{/other_user} + gists_url: https://api.github.com/users/gjenkins8/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/gjenkins8 + id: 2787248 + login: gjenkins8 + node_id: MDQ6VXNlcjI3ODcyNDg= + organizations_url: https://api.github.com/users/gjenkins8/orgs + received_events_url: https://api.github.com/users/gjenkins8/received_events + repos_url: https://api.github.com/users/gjenkins8/repos + site_admin: false + starred_url: https://api.github.com/users/gjenkins8/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/gjenkins8/subscriptions + type: User + url: https://api.github.com/users/gjenkins8 + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/353200010 + - browser_download_url: https://github.com/helm/helm/releases/download/v4.1.1/helm-v4.1.1-darwin-amd64.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2026-02-09T18:32:44Z" + digest: sha256:8387448adad3f4a4a9146b257d6ef59dc6d8373e2b1e6314e63c7140201cf6b0 + download_count: 21 + id: 353200007 + label: null + name: helm-v4.1.1-darwin-amd64.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4VDWeH + size: 228 + state: uploaded + updated_at: "2026-02-09T18:32:45Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/2787248?v=4 + events_url: https://api.github.com/users/gjenkins8/events{/privacy} + followers_url: https://api.github.com/users/gjenkins8/followers + following_url: https://api.github.com/users/gjenkins8/following{/other_user} + gists_url: https://api.github.com/users/gjenkins8/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/gjenkins8 + id: 2787248 + login: gjenkins8 + node_id: MDQ6VXNlcjI3ODcyNDg= + organizations_url: https://api.github.com/users/gjenkins8/orgs + received_events_url: https://api.github.com/users/gjenkins8/received_events + repos_url: https://api.github.com/users/gjenkins8/repos + site_admin: false + starred_url: https://api.github.com/users/gjenkins8/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/gjenkins8/subscriptions + type: User + url: https://api.github.com/users/gjenkins8 + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/353200007 + - browser_download_url: https://github.com/helm/helm/releases/download/v4.1.1/helm-v4.1.1-darwin-arm64.tar.gz.asc + content_type: application/octet-stream + created_at: "2026-02-09T18:32:44Z" + digest: sha256:5ccea021d9b7b6574cbe3458c28e1524d14f3c5891aaf9c1c23be90db710f9f1 + download_count: 27 + id: 353199998 + label: null + name: helm-v4.1.1-darwin-arm64.tar.gz.asc + node_id: RA_kwDOApspmc4VDWd- + size: 228 + state: uploaded + updated_at: "2026-02-09T18:32:44Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/2787248?v=4 + events_url: https://api.github.com/users/gjenkins8/events{/privacy} + followers_url: https://api.github.com/users/gjenkins8/followers + following_url: https://api.github.com/users/gjenkins8/following{/other_user} + gists_url: https://api.github.com/users/gjenkins8/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/gjenkins8 + id: 2787248 + login: gjenkins8 + node_id: MDQ6VXNlcjI3ODcyNDg= + organizations_url: https://api.github.com/users/gjenkins8/orgs + received_events_url: https://api.github.com/users/gjenkins8/received_events + repos_url: https://api.github.com/users/gjenkins8/repos + site_admin: false + starred_url: https://api.github.com/users/gjenkins8/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/gjenkins8/subscriptions + type: User + url: https://api.github.com/users/gjenkins8 + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/353199998 + - browser_download_url: https://github.com/helm/helm/releases/download/v4.1.1/helm-v4.1.1-darwin-arm64.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2026-02-09T18:32:44Z" + digest: sha256:87ea29a61719559e76dcc9546d24c65dc6da01825481e55f269470306c31d3ca + download_count: 18 + id: 353199995 + label: null + name: helm-v4.1.1-darwin-arm64.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4VDWd7 + size: 228 + state: uploaded + updated_at: "2026-02-09T18:32:44Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/2787248?v=4 + events_url: https://api.github.com/users/gjenkins8/events{/privacy} + followers_url: https://api.github.com/users/gjenkins8/followers + following_url: https://api.github.com/users/gjenkins8/following{/other_user} + gists_url: https://api.github.com/users/gjenkins8/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/gjenkins8 + id: 2787248 + login: gjenkins8 + node_id: MDQ6VXNlcjI3ODcyNDg= + organizations_url: https://api.github.com/users/gjenkins8/orgs + received_events_url: https://api.github.com/users/gjenkins8/received_events + repos_url: https://api.github.com/users/gjenkins8/repos + site_admin: false + starred_url: https://api.github.com/users/gjenkins8/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/gjenkins8/subscriptions + type: User + url: https://api.github.com/users/gjenkins8 + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/353199995 + - browser_download_url: https://github.com/helm/helm/releases/download/v4.1.1/helm-v4.1.1-darwin-arm64.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2026-02-09T18:32:43Z" + digest: sha256:b71187d43242cb46531767cbf00abf5c1b90867cce2511ef283c4c6e7aa0ff01 + download_count: 19 + id: 353199992 + label: null + name: helm-v4.1.1-darwin-arm64.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4VDWd4 + size: 228 + state: uploaded + updated_at: "2026-02-09T18:32:43Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/2787248?v=4 + events_url: https://api.github.com/users/gjenkins8/events{/privacy} + followers_url: https://api.github.com/users/gjenkins8/followers + following_url: https://api.github.com/users/gjenkins8/following{/other_user} + gists_url: https://api.github.com/users/gjenkins8/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/gjenkins8 + id: 2787248 + login: gjenkins8 + node_id: MDQ6VXNlcjI3ODcyNDg= + organizations_url: https://api.github.com/users/gjenkins8/orgs + received_events_url: https://api.github.com/users/gjenkins8/received_events + repos_url: https://api.github.com/users/gjenkins8/repos + site_admin: false + starred_url: https://api.github.com/users/gjenkins8/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/gjenkins8/subscriptions + type: User + url: https://api.github.com/users/gjenkins8 + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/353199992 + - browser_download_url: https://github.com/helm/helm/releases/download/v4.1.1/helm-v4.1.1-linux-386.tar.gz.asc + content_type: application/octet-stream + created_at: "2026-02-09T18:32:42Z" + digest: sha256:7505034b8e8a77419e75961da618abdf82982deedb737b4a4a80ba280994f014 + download_count: 37 + id: 353199971 + label: null + name: helm-v4.1.1-linux-386.tar.gz.asc + node_id: RA_kwDOApspmc4VDWdj + size: 228 + state: uploaded + updated_at: "2026-02-09T18:32:43Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/2787248?v=4 + events_url: https://api.github.com/users/gjenkins8/events{/privacy} + followers_url: https://api.github.com/users/gjenkins8/followers + following_url: https://api.github.com/users/gjenkins8/following{/other_user} + gists_url: https://api.github.com/users/gjenkins8/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/gjenkins8 + id: 2787248 + login: gjenkins8 + node_id: MDQ6VXNlcjI3ODcyNDg= + organizations_url: https://api.github.com/users/gjenkins8/orgs + received_events_url: https://api.github.com/users/gjenkins8/received_events + repos_url: https://api.github.com/users/gjenkins8/repos + site_admin: false + starred_url: https://api.github.com/users/gjenkins8/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/gjenkins8/subscriptions + type: User + url: https://api.github.com/users/gjenkins8 + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/353199971 + - browser_download_url: https://github.com/helm/helm/releases/download/v4.1.1/helm-v4.1.1-linux-386.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2026-02-09T18:32:42Z" + digest: sha256:b9506f3be422de9a502b5f992429474bca8c6039d7ba01749240fe8fa5d8747b + download_count: 19 + id: 353199969 + label: null + name: helm-v4.1.1-linux-386.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4VDWdh + size: 228 + state: uploaded + updated_at: "2026-02-09T18:32:42Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/2787248?v=4 + events_url: https://api.github.com/users/gjenkins8/events{/privacy} + followers_url: https://api.github.com/users/gjenkins8/followers + following_url: https://api.github.com/users/gjenkins8/following{/other_user} + gists_url: https://api.github.com/users/gjenkins8/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/gjenkins8 + id: 2787248 + login: gjenkins8 + node_id: MDQ6VXNlcjI3ODcyNDg= + organizations_url: https://api.github.com/users/gjenkins8/orgs + received_events_url: https://api.github.com/users/gjenkins8/received_events + repos_url: https://api.github.com/users/gjenkins8/repos + site_admin: false + starred_url: https://api.github.com/users/gjenkins8/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/gjenkins8/subscriptions + type: User + url: https://api.github.com/users/gjenkins8 + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/353199969 + - browser_download_url: https://github.com/helm/helm/releases/download/v4.1.1/helm-v4.1.1-linux-386.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2026-02-09T18:32:41Z" + digest: sha256:027c8ea63bbf5880c6b7ed643f9bf1bda399656bfe6f9f6d50b43393776bc957 + download_count: 20 + id: 353199967 + label: null + name: helm-v4.1.1-linux-386.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4VDWdf + size: 228 + state: uploaded + updated_at: "2026-02-09T18:32:42Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/2787248?v=4 + events_url: https://api.github.com/users/gjenkins8/events{/privacy} + followers_url: https://api.github.com/users/gjenkins8/followers + following_url: https://api.github.com/users/gjenkins8/following{/other_user} + gists_url: https://api.github.com/users/gjenkins8/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/gjenkins8 + id: 2787248 + login: gjenkins8 + node_id: MDQ6VXNlcjI3ODcyNDg= + organizations_url: https://api.github.com/users/gjenkins8/orgs + received_events_url: https://api.github.com/users/gjenkins8/received_events + repos_url: https://api.github.com/users/gjenkins8/repos + site_admin: false + starred_url: https://api.github.com/users/gjenkins8/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/gjenkins8/subscriptions + type: User + url: https://api.github.com/users/gjenkins8 + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/353199967 + - browser_download_url: https://github.com/helm/helm/releases/download/v4.1.1/helm-v4.1.1-linux-amd64.tar.gz.asc + content_type: application/octet-stream + created_at: "2026-02-09T18:32:41Z" + digest: sha256:51ea8c5dd8d5f3873950e81d3ed6e673aa3757aa508b75d78c41e7efa02812e6 + download_count: 1852 + id: 353199961 + label: null + name: helm-v4.1.1-linux-amd64.tar.gz.asc + node_id: RA_kwDOApspmc4VDWdZ + size: 228 + state: uploaded + updated_at: "2026-02-09T18:32:41Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/2787248?v=4 + events_url: https://api.github.com/users/gjenkins8/events{/privacy} + followers_url: https://api.github.com/users/gjenkins8/followers + following_url: https://api.github.com/users/gjenkins8/following{/other_user} + gists_url: https://api.github.com/users/gjenkins8/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/gjenkins8 + id: 2787248 + login: gjenkins8 + node_id: MDQ6VXNlcjI3ODcyNDg= + organizations_url: https://api.github.com/users/gjenkins8/orgs + received_events_url: https://api.github.com/users/gjenkins8/received_events + repos_url: https://api.github.com/users/gjenkins8/repos + site_admin: false + starred_url: https://api.github.com/users/gjenkins8/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/gjenkins8/subscriptions + type: User + url: https://api.github.com/users/gjenkins8 + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/353199961 + - browser_download_url: https://github.com/helm/helm/releases/download/v4.1.1/helm-v4.1.1-linux-amd64.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2026-02-09T18:32:41Z" + digest: sha256:e48cf518c1518a3eb030062624f027c88fd4f97374346e38d19dbc9f08c89cf0 + download_count: 1640 + id: 353199957 + label: null + name: helm-v4.1.1-linux-amd64.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4VDWdV + size: 228 + state: uploaded + updated_at: "2026-02-09T18:32:41Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/2787248?v=4 + events_url: https://api.github.com/users/gjenkins8/events{/privacy} + followers_url: https://api.github.com/users/gjenkins8/followers + following_url: https://api.github.com/users/gjenkins8/following{/other_user} + gists_url: https://api.github.com/users/gjenkins8/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/gjenkins8 + id: 2787248 + login: gjenkins8 + node_id: MDQ6VXNlcjI3ODcyNDg= + organizations_url: https://api.github.com/users/gjenkins8/orgs + received_events_url: https://api.github.com/users/gjenkins8/received_events + repos_url: https://api.github.com/users/gjenkins8/repos + site_admin: false + starred_url: https://api.github.com/users/gjenkins8/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/gjenkins8/subscriptions + type: User + url: https://api.github.com/users/gjenkins8 + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/353199957 + - browser_download_url: https://github.com/helm/helm/releases/download/v4.1.1/helm-v4.1.1-linux-amd64.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2026-02-09T18:32:40Z" + digest: sha256:f76c2e59687fb5ca1cd8ca67ca4fc42f648b93739e0a8eb7a0117fe0d542f22d + download_count: 69 + id: 353199955 + label: null + name: helm-v4.1.1-linux-amd64.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4VDWdT + size: 228 + state: uploaded + updated_at: "2026-02-09T18:32:41Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/2787248?v=4 + events_url: https://api.github.com/users/gjenkins8/events{/privacy} + followers_url: https://api.github.com/users/gjenkins8/followers + following_url: https://api.github.com/users/gjenkins8/following{/other_user} + gists_url: https://api.github.com/users/gjenkins8/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/gjenkins8 + id: 2787248 + login: gjenkins8 + node_id: MDQ6VXNlcjI3ODcyNDg= + organizations_url: https://api.github.com/users/gjenkins8/orgs + received_events_url: https://api.github.com/users/gjenkins8/received_events + repos_url: https://api.github.com/users/gjenkins8/repos + site_admin: false + starred_url: https://api.github.com/users/gjenkins8/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/gjenkins8/subscriptions + type: User + url: https://api.github.com/users/gjenkins8 + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/353199955 + - browser_download_url: https://github.com/helm/helm/releases/download/v4.1.1/helm-v4.1.1-linux-arm.tar.gz.asc + content_type: application/octet-stream + created_at: "2026-02-09T18:32:40Z" + digest: sha256:1b6e783de418d6a5e276ae431616370ea18e1b4e4db8bf13f7e7061886ec2a73 + download_count: 16 + id: 353199953 + label: null + name: helm-v4.1.1-linux-arm.tar.gz.asc + node_id: RA_kwDOApspmc4VDWdR + size: 228 + state: uploaded + updated_at: "2026-02-09T18:32:40Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/2787248?v=4 + events_url: https://api.github.com/users/gjenkins8/events{/privacy} + followers_url: https://api.github.com/users/gjenkins8/followers + following_url: https://api.github.com/users/gjenkins8/following{/other_user} + gists_url: https://api.github.com/users/gjenkins8/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/gjenkins8 + id: 2787248 + login: gjenkins8 + node_id: MDQ6VXNlcjI3ODcyNDg= + organizations_url: https://api.github.com/users/gjenkins8/orgs + received_events_url: https://api.github.com/users/gjenkins8/received_events + repos_url: https://api.github.com/users/gjenkins8/repos + site_admin: false + starred_url: https://api.github.com/users/gjenkins8/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/gjenkins8/subscriptions + type: User + url: https://api.github.com/users/gjenkins8 + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/353199953 + - browser_download_url: https://github.com/helm/helm/releases/download/v4.1.1/helm-v4.1.1-linux-arm.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2026-02-09T18:32:40Z" + digest: sha256:08c13b4e74cda8e90ba4edc57ed05d33065aceb74aeb3f444d7997876a8b172a + download_count: 17 + id: 353199950 + label: null + name: helm-v4.1.1-linux-arm.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4VDWdO + size: 228 + state: uploaded + updated_at: "2026-02-09T18:32:40Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/2787248?v=4 + events_url: https://api.github.com/users/gjenkins8/events{/privacy} + followers_url: https://api.github.com/users/gjenkins8/followers + following_url: https://api.github.com/users/gjenkins8/following{/other_user} + gists_url: https://api.github.com/users/gjenkins8/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/gjenkins8 + id: 2787248 + login: gjenkins8 + node_id: MDQ6VXNlcjI3ODcyNDg= + organizations_url: https://api.github.com/users/gjenkins8/orgs + received_events_url: https://api.github.com/users/gjenkins8/received_events + repos_url: https://api.github.com/users/gjenkins8/repos + site_admin: false + starred_url: https://api.github.com/users/gjenkins8/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/gjenkins8/subscriptions + type: User + url: https://api.github.com/users/gjenkins8 + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/353199950 + - browser_download_url: https://github.com/helm/helm/releases/download/v4.1.1/helm-v4.1.1-linux-arm.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2026-02-09T18:32:39Z" + digest: sha256:26bc82a4ac2c246cbcf8a5c176df0e3789796a9ebcd9d683141236b5e883d1be + download_count: 17 + id: 353199945 + label: null + name: helm-v4.1.1-linux-arm.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4VDWdJ + size: 228 + state: uploaded + updated_at: "2026-02-09T18:32:40Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/2787248?v=4 + events_url: https://api.github.com/users/gjenkins8/events{/privacy} + followers_url: https://api.github.com/users/gjenkins8/followers + following_url: https://api.github.com/users/gjenkins8/following{/other_user} + gists_url: https://api.github.com/users/gjenkins8/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/gjenkins8 + id: 2787248 + login: gjenkins8 + node_id: MDQ6VXNlcjI3ODcyNDg= + organizations_url: https://api.github.com/users/gjenkins8/orgs + received_events_url: https://api.github.com/users/gjenkins8/received_events + repos_url: https://api.github.com/users/gjenkins8/repos + site_admin: false + starred_url: https://api.github.com/users/gjenkins8/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/gjenkins8/subscriptions + type: User + url: https://api.github.com/users/gjenkins8 + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/353199945 + - browser_download_url: https://github.com/helm/helm/releases/download/v4.1.1/helm-v4.1.1-linux-arm64.tar.gz.asc + content_type: application/octet-stream + created_at: "2026-02-09T18:32:39Z" + digest: sha256:2c482158467962fc5e55a22f227d297a5c765ea0494e8800d283687f5509d80c + download_count: 433 + id: 353199942 + label: null + name: helm-v4.1.1-linux-arm64.tar.gz.asc + node_id: RA_kwDOApspmc4VDWdG + size: 228 + state: uploaded + updated_at: "2026-02-09T18:32:39Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/2787248?v=4 + events_url: https://api.github.com/users/gjenkins8/events{/privacy} + followers_url: https://api.github.com/users/gjenkins8/followers + following_url: https://api.github.com/users/gjenkins8/following{/other_user} + gists_url: https://api.github.com/users/gjenkins8/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/gjenkins8 + id: 2787248 + login: gjenkins8 + node_id: MDQ6VXNlcjI3ODcyNDg= + organizations_url: https://api.github.com/users/gjenkins8/orgs + received_events_url: https://api.github.com/users/gjenkins8/received_events + repos_url: https://api.github.com/users/gjenkins8/repos + site_admin: false + starred_url: https://api.github.com/users/gjenkins8/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/gjenkins8/subscriptions + type: User + url: https://api.github.com/users/gjenkins8 + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/353199942 + - browser_download_url: https://github.com/helm/helm/releases/download/v4.1.1/helm-v4.1.1-linux-arm64.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2026-02-09T18:32:38Z" + digest: sha256:9b95a716e85cade1fcf324d132aae284c6a267c77924d0ea3ef5e7e4a93e4398 + download_count: 425 + id: 353199937 + label: null + name: helm-v4.1.1-linux-arm64.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4VDWdB + size: 228 + state: uploaded + updated_at: "2026-02-09T18:32:39Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/2787248?v=4 + events_url: https://api.github.com/users/gjenkins8/events{/privacy} + followers_url: https://api.github.com/users/gjenkins8/followers + following_url: https://api.github.com/users/gjenkins8/following{/other_user} + gists_url: https://api.github.com/users/gjenkins8/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/gjenkins8 + id: 2787248 + login: gjenkins8 + node_id: MDQ6VXNlcjI3ODcyNDg= + organizations_url: https://api.github.com/users/gjenkins8/orgs + received_events_url: https://api.github.com/users/gjenkins8/received_events + repos_url: https://api.github.com/users/gjenkins8/repos + site_admin: false + starred_url: https://api.github.com/users/gjenkins8/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/gjenkins8/subscriptions + type: User + url: https://api.github.com/users/gjenkins8 + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/353199937 + - browser_download_url: https://github.com/helm/helm/releases/download/v4.1.1/helm-v4.1.1-linux-arm64.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2026-02-09T18:32:38Z" + digest: sha256:1c7cafad549f7685664bdea03886e951861e20e08543a196efe30f189aa940be + download_count: 17 + id: 353199934 + label: null + name: helm-v4.1.1-linux-arm64.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4VDWc- + size: 228 + state: uploaded + updated_at: "2026-02-09T18:32:38Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/2787248?v=4 + events_url: https://api.github.com/users/gjenkins8/events{/privacy} + followers_url: https://api.github.com/users/gjenkins8/followers + following_url: https://api.github.com/users/gjenkins8/following{/other_user} + gists_url: https://api.github.com/users/gjenkins8/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/gjenkins8 + id: 2787248 + login: gjenkins8 + node_id: MDQ6VXNlcjI3ODcyNDg= + organizations_url: https://api.github.com/users/gjenkins8/orgs + received_events_url: https://api.github.com/users/gjenkins8/received_events + repos_url: https://api.github.com/users/gjenkins8/repos + site_admin: false + starred_url: https://api.github.com/users/gjenkins8/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/gjenkins8/subscriptions + type: User + url: https://api.github.com/users/gjenkins8 + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/353199934 + - browser_download_url: https://github.com/helm/helm/releases/download/v4.1.1/helm-v4.1.1-linux-ppc64le.tar.gz.asc + content_type: application/octet-stream + created_at: "2026-02-09T18:32:37Z" + digest: sha256:d9719d6f3db765759238472327b1af9b627bf6ed3e8536b6cf2ab43ae32ba328 + download_count: 16 + id: 353199923 + label: null + name: helm-v4.1.1-linux-ppc64le.tar.gz.asc + node_id: RA_kwDOApspmc4VDWcz + size: 228 + state: uploaded + updated_at: "2026-02-09T18:32:37Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/2787248?v=4 + events_url: https://api.github.com/users/gjenkins8/events{/privacy} + followers_url: https://api.github.com/users/gjenkins8/followers + following_url: https://api.github.com/users/gjenkins8/following{/other_user} + gists_url: https://api.github.com/users/gjenkins8/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/gjenkins8 + id: 2787248 + login: gjenkins8 + node_id: MDQ6VXNlcjI3ODcyNDg= + organizations_url: https://api.github.com/users/gjenkins8/orgs + received_events_url: https://api.github.com/users/gjenkins8/received_events + repos_url: https://api.github.com/users/gjenkins8/repos + site_admin: false + starred_url: https://api.github.com/users/gjenkins8/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/gjenkins8/subscriptions + type: User + url: https://api.github.com/users/gjenkins8 + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/353199923 + - browser_download_url: https://github.com/helm/helm/releases/download/v4.1.1/helm-v4.1.1-linux-ppc64le.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2026-02-09T18:32:36Z" + digest: sha256:07ff1a6c2fa072006781c78ebf37f54461ee771cac68f160d09d5fc20bc1a001 + download_count: 17 + id: 353199921 + label: null + name: helm-v4.1.1-linux-ppc64le.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4VDWcx + size: 228 + state: uploaded + updated_at: "2026-02-09T18:32:37Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/2787248?v=4 + events_url: https://api.github.com/users/gjenkins8/events{/privacy} + followers_url: https://api.github.com/users/gjenkins8/followers + following_url: https://api.github.com/users/gjenkins8/following{/other_user} + gists_url: https://api.github.com/users/gjenkins8/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/gjenkins8 + id: 2787248 + login: gjenkins8 + node_id: MDQ6VXNlcjI3ODcyNDg= + organizations_url: https://api.github.com/users/gjenkins8/orgs + received_events_url: https://api.github.com/users/gjenkins8/received_events + repos_url: https://api.github.com/users/gjenkins8/repos + site_admin: false + starred_url: https://api.github.com/users/gjenkins8/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/gjenkins8/subscriptions + type: User + url: https://api.github.com/users/gjenkins8 + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/353199921 + - browser_download_url: https://github.com/helm/helm/releases/download/v4.1.1/helm-v4.1.1-linux-ppc64le.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2026-02-09T18:32:36Z" + digest: sha256:578e062097f31d215020112870b928a71192e7552f75284572559933ca302520 + download_count: 17 + id: 353199916 + label: null + name: helm-v4.1.1-linux-ppc64le.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4VDWcs + size: 228 + state: uploaded + updated_at: "2026-02-09T18:32:36Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/2787248?v=4 + events_url: https://api.github.com/users/gjenkins8/events{/privacy} + followers_url: https://api.github.com/users/gjenkins8/followers + following_url: https://api.github.com/users/gjenkins8/following{/other_user} + gists_url: https://api.github.com/users/gjenkins8/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/gjenkins8 + id: 2787248 + login: gjenkins8 + node_id: MDQ6VXNlcjI3ODcyNDg= + organizations_url: https://api.github.com/users/gjenkins8/orgs + received_events_url: https://api.github.com/users/gjenkins8/received_events + repos_url: https://api.github.com/users/gjenkins8/repos + site_admin: false + starred_url: https://api.github.com/users/gjenkins8/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/gjenkins8/subscriptions + type: User + url: https://api.github.com/users/gjenkins8 + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/353199916 + - browser_download_url: https://github.com/helm/helm/releases/download/v4.1.1/helm-v4.1.1-linux-riscv64.tar.gz.asc + content_type: application/octet-stream + created_at: "2026-02-09T18:32:36Z" + digest: sha256:3cbdd33dc7385a7822f920c78c999879b7a47a16399ac7d574fb73d89c2c2da4 + download_count: 17 + id: 353199912 + label: null + name: helm-v4.1.1-linux-riscv64.tar.gz.asc + node_id: RA_kwDOApspmc4VDWco + size: 228 + state: uploaded + updated_at: "2026-02-09T18:32:36Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/2787248?v=4 + events_url: https://api.github.com/users/gjenkins8/events{/privacy} + followers_url: https://api.github.com/users/gjenkins8/followers + following_url: https://api.github.com/users/gjenkins8/following{/other_user} + gists_url: https://api.github.com/users/gjenkins8/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/gjenkins8 + id: 2787248 + login: gjenkins8 + node_id: MDQ6VXNlcjI3ODcyNDg= + organizations_url: https://api.github.com/users/gjenkins8/orgs + received_events_url: https://api.github.com/users/gjenkins8/received_events + repos_url: https://api.github.com/users/gjenkins8/repos + site_admin: false + starred_url: https://api.github.com/users/gjenkins8/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/gjenkins8/subscriptions + type: User + url: https://api.github.com/users/gjenkins8 + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/353199912 + - browser_download_url: https://github.com/helm/helm/releases/download/v4.1.1/helm-v4.1.1-linux-riscv64.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2026-02-09T18:32:35Z" + digest: sha256:b57bb91a81770cfaa2856525aed5503bea0eb7fff88ab24d61be5cf3b4c0eb90 + download_count: 19 + id: 353199903 + label: null + name: helm-v4.1.1-linux-riscv64.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4VDWcf + size: 228 + state: uploaded + updated_at: "2026-02-09T18:32:36Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/2787248?v=4 + events_url: https://api.github.com/users/gjenkins8/events{/privacy} + followers_url: https://api.github.com/users/gjenkins8/followers + following_url: https://api.github.com/users/gjenkins8/following{/other_user} + gists_url: https://api.github.com/users/gjenkins8/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/gjenkins8 + id: 2787248 + login: gjenkins8 + node_id: MDQ6VXNlcjI3ODcyNDg= + organizations_url: https://api.github.com/users/gjenkins8/orgs + received_events_url: https://api.github.com/users/gjenkins8/received_events + repos_url: https://api.github.com/users/gjenkins8/repos + site_admin: false + starred_url: https://api.github.com/users/gjenkins8/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/gjenkins8/subscriptions + type: User + url: https://api.github.com/users/gjenkins8 + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/353199903 + - browser_download_url: https://github.com/helm/helm/releases/download/v4.1.1/helm-v4.1.1-linux-riscv64.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2026-02-09T18:32:35Z" + digest: sha256:6f413517bf41f2bf073f4ec1df8760f66df9c7237c4451ada7d55dd65195ef72 + download_count: 18 + id: 353199902 + label: null + name: helm-v4.1.1-linux-riscv64.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4VDWce + size: 228 + state: uploaded + updated_at: "2026-02-09T18:32:35Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/2787248?v=4 + events_url: https://api.github.com/users/gjenkins8/events{/privacy} + followers_url: https://api.github.com/users/gjenkins8/followers + following_url: https://api.github.com/users/gjenkins8/following{/other_user} + gists_url: https://api.github.com/users/gjenkins8/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/gjenkins8 + id: 2787248 + login: gjenkins8 + node_id: MDQ6VXNlcjI3ODcyNDg= + organizations_url: https://api.github.com/users/gjenkins8/orgs + received_events_url: https://api.github.com/users/gjenkins8/received_events + repos_url: https://api.github.com/users/gjenkins8/repos + site_admin: false + starred_url: https://api.github.com/users/gjenkins8/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/gjenkins8/subscriptions + type: User + url: https://api.github.com/users/gjenkins8 + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/353199902 + - browser_download_url: https://github.com/helm/helm/releases/download/v4.1.1/helm-v4.1.1-linux-s390x.tar.gz.asc + content_type: application/octet-stream + created_at: "2026-02-09T18:32:34Z" + digest: sha256:6cfd03c0a08b10afa638ef9a02650872b72c6e8d5c7d85f0162733473878dde5 + download_count: 19 + id: 353199900 + label: null + name: helm-v4.1.1-linux-s390x.tar.gz.asc + node_id: RA_kwDOApspmc4VDWcc + size: 228 + state: uploaded + updated_at: "2026-02-09T18:32:35Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/2787248?v=4 + events_url: https://api.github.com/users/gjenkins8/events{/privacy} + followers_url: https://api.github.com/users/gjenkins8/followers + following_url: https://api.github.com/users/gjenkins8/following{/other_user} + gists_url: https://api.github.com/users/gjenkins8/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/gjenkins8 + id: 2787248 + login: gjenkins8 + node_id: MDQ6VXNlcjI3ODcyNDg= + organizations_url: https://api.github.com/users/gjenkins8/orgs + received_events_url: https://api.github.com/users/gjenkins8/received_events + repos_url: https://api.github.com/users/gjenkins8/repos + site_admin: false + starred_url: https://api.github.com/users/gjenkins8/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/gjenkins8/subscriptions + type: User + url: https://api.github.com/users/gjenkins8 + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/353199900 + - browser_download_url: https://github.com/helm/helm/releases/download/v4.1.1/helm-v4.1.1-linux-s390x.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2026-02-09T18:32:34Z" + digest: sha256:04422158f708a3b00044a0cc7aea4390e8c310a270e61de9bb7cab8694e6a5d3 + download_count: 16 + id: 353199899 + label: null + name: helm-v4.1.1-linux-s390x.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4VDWcb + size: 228 + state: uploaded + updated_at: "2026-02-09T18:32:34Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/2787248?v=4 + events_url: https://api.github.com/users/gjenkins8/events{/privacy} + followers_url: https://api.github.com/users/gjenkins8/followers + following_url: https://api.github.com/users/gjenkins8/following{/other_user} + gists_url: https://api.github.com/users/gjenkins8/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/gjenkins8 + id: 2787248 + login: gjenkins8 + node_id: MDQ6VXNlcjI3ODcyNDg= + organizations_url: https://api.github.com/users/gjenkins8/orgs + received_events_url: https://api.github.com/users/gjenkins8/received_events + repos_url: https://api.github.com/users/gjenkins8/repos + site_admin: false + starred_url: https://api.github.com/users/gjenkins8/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/gjenkins8/subscriptions + type: User + url: https://api.github.com/users/gjenkins8 + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/353199899 + - browser_download_url: https://github.com/helm/helm/releases/download/v4.1.1/helm-v4.1.1-linux-s390x.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2026-02-09T18:32:34Z" + digest: sha256:e37891b8268d1e3d2f1a18fa51271b050ddf3ce347d88290864e86060bd405a6 + download_count: 16 + id: 353199898 + label: null + name: helm-v4.1.1-linux-s390x.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4VDWca + size: 228 + state: uploaded + updated_at: "2026-02-09T18:32:34Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/2787248?v=4 + events_url: https://api.github.com/users/gjenkins8/events{/privacy} + followers_url: https://api.github.com/users/gjenkins8/followers + following_url: https://api.github.com/users/gjenkins8/following{/other_user} + gists_url: https://api.github.com/users/gjenkins8/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/gjenkins8 + id: 2787248 + login: gjenkins8 + node_id: MDQ6VXNlcjI3ODcyNDg= + organizations_url: https://api.github.com/users/gjenkins8/orgs + received_events_url: https://api.github.com/users/gjenkins8/received_events + repos_url: https://api.github.com/users/gjenkins8/repos + site_admin: false + starred_url: https://api.github.com/users/gjenkins8/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/gjenkins8/subscriptions + type: User + url: https://api.github.com/users/gjenkins8 + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/353199898 + - browser_download_url: https://github.com/helm/helm/releases/download/v4.1.1/helm-v4.1.1-windows-amd64.zip.asc + content_type: application/octet-stream + created_at: "2026-02-09T18:32:33Z" + digest: sha256:6911ba292d46fcfb3a625f521197b0341eb9c0c24c202330e902cecc20e12171 + download_count: 75 + id: 353199888 + label: null + name: helm-v4.1.1-windows-amd64.zip.asc + node_id: RA_kwDOApspmc4VDWcQ + size: 228 + state: uploaded + updated_at: "2026-02-09T18:32:34Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/2787248?v=4 + events_url: https://api.github.com/users/gjenkins8/events{/privacy} + followers_url: https://api.github.com/users/gjenkins8/followers + following_url: https://api.github.com/users/gjenkins8/following{/other_user} + gists_url: https://api.github.com/users/gjenkins8/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/gjenkins8 + id: 2787248 + login: gjenkins8 + node_id: MDQ6VXNlcjI3ODcyNDg= + organizations_url: https://api.github.com/users/gjenkins8/orgs + received_events_url: https://api.github.com/users/gjenkins8/received_events + repos_url: https://api.github.com/users/gjenkins8/repos + site_admin: false + starred_url: https://api.github.com/users/gjenkins8/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/gjenkins8/subscriptions + type: User + url: https://api.github.com/users/gjenkins8 + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/353199888 + - browser_download_url: https://github.com/helm/helm/releases/download/v4.1.1/helm-v4.1.1-windows-amd64.zip.sha256.asc + content_type: application/octet-stream + created_at: "2026-02-09T18:32:33Z" + digest: sha256:0afc7c22a75bf75b5298866b327be2de6a39310d881224489445f8b0b43d56cb + download_count: 26 + id: 353199886 + label: null + name: helm-v4.1.1-windows-amd64.zip.sha256.asc + node_id: RA_kwDOApspmc4VDWcO + size: 228 + state: uploaded + updated_at: "2026-02-09T18:32:33Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/2787248?v=4 + events_url: https://api.github.com/users/gjenkins8/events{/privacy} + followers_url: https://api.github.com/users/gjenkins8/followers + following_url: https://api.github.com/users/gjenkins8/following{/other_user} + gists_url: https://api.github.com/users/gjenkins8/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/gjenkins8 + id: 2787248 + login: gjenkins8 + node_id: MDQ6VXNlcjI3ODcyNDg= + organizations_url: https://api.github.com/users/gjenkins8/orgs + received_events_url: https://api.github.com/users/gjenkins8/received_events + repos_url: https://api.github.com/users/gjenkins8/repos + site_admin: false + starred_url: https://api.github.com/users/gjenkins8/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/gjenkins8/subscriptions + type: User + url: https://api.github.com/users/gjenkins8 + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/353199886 + - browser_download_url: https://github.com/helm/helm/releases/download/v4.1.1/helm-v4.1.1-windows-amd64.zip.sha256sum.asc + content_type: application/octet-stream + created_at: "2026-02-09T18:32:32Z" + digest: sha256:f2b7c2d20ea0e64ffc71cdaf9f5a0a6abc0f3756d43a4fa7019339f6b8f75114 + download_count: 22 + id: 353199884 + label: null + name: helm-v4.1.1-windows-amd64.zip.sha256sum.asc + node_id: RA_kwDOApspmc4VDWcM + size: 228 + state: uploaded + updated_at: "2026-02-09T18:32:33Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/2787248?v=4 + events_url: https://api.github.com/users/gjenkins8/events{/privacy} + followers_url: https://api.github.com/users/gjenkins8/followers + following_url: https://api.github.com/users/gjenkins8/following{/other_user} + gists_url: https://api.github.com/users/gjenkins8/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/gjenkins8 + id: 2787248 + login: gjenkins8 + node_id: MDQ6VXNlcjI3ODcyNDg= + organizations_url: https://api.github.com/users/gjenkins8/orgs + received_events_url: https://api.github.com/users/gjenkins8/received_events + repos_url: https://api.github.com/users/gjenkins8/repos + site_admin: false + starred_url: https://api.github.com/users/gjenkins8/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/gjenkins8/subscriptions + type: User + url: https://api.github.com/users/gjenkins8 + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/353199884 + - browser_download_url: https://github.com/helm/helm/releases/download/v4.1.1/helm-v4.1.1-windows-arm64.zip.asc + content_type: application/octet-stream + created_at: "2026-02-09T18:32:32Z" + digest: sha256:b079bad3eb0eac51fbcf3d64cf9aa9096109767df9c299f74521d12af06f9870 + download_count: 26 + id: 353199882 + label: null + name: helm-v4.1.1-windows-arm64.zip.asc + node_id: RA_kwDOApspmc4VDWcK + size: 228 + state: uploaded + updated_at: "2026-02-09T18:32:33Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/2787248?v=4 + events_url: https://api.github.com/users/gjenkins8/events{/privacy} + followers_url: https://api.github.com/users/gjenkins8/followers + following_url: https://api.github.com/users/gjenkins8/following{/other_user} + gists_url: https://api.github.com/users/gjenkins8/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/gjenkins8 + id: 2787248 + login: gjenkins8 + node_id: MDQ6VXNlcjI3ODcyNDg= + organizations_url: https://api.github.com/users/gjenkins8/orgs + received_events_url: https://api.github.com/users/gjenkins8/received_events + repos_url: https://api.github.com/users/gjenkins8/repos + site_admin: false + starred_url: https://api.github.com/users/gjenkins8/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/gjenkins8/subscriptions + type: User + url: https://api.github.com/users/gjenkins8 + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/353199882 + - browser_download_url: https://github.com/helm/helm/releases/download/v4.1.1/helm-v4.1.1-windows-arm64.zip.sha256.asc + content_type: application/octet-stream + created_at: "2026-02-09T18:32:32Z" + digest: sha256:7afd65629f2c70dbf5f366a6d5155b0bdbdf46cf4763fc6917559dbd58bfb188 + download_count: 17 + id: 353199881 + label: null + name: helm-v4.1.1-windows-arm64.zip.sha256.asc + node_id: RA_kwDOApspmc4VDWcJ + size: 228 + state: uploaded + updated_at: "2026-02-09T18:32:32Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/2787248?v=4 + events_url: https://api.github.com/users/gjenkins8/events{/privacy} + followers_url: https://api.github.com/users/gjenkins8/followers + following_url: https://api.github.com/users/gjenkins8/following{/other_user} + gists_url: https://api.github.com/users/gjenkins8/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/gjenkins8 + id: 2787248 + login: gjenkins8 + node_id: MDQ6VXNlcjI3ODcyNDg= + organizations_url: https://api.github.com/users/gjenkins8/orgs + received_events_url: https://api.github.com/users/gjenkins8/received_events + repos_url: https://api.github.com/users/gjenkins8/repos + site_admin: false + starred_url: https://api.github.com/users/gjenkins8/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/gjenkins8/subscriptions + type: User + url: https://api.github.com/users/gjenkins8 + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/353199881 + - browser_download_url: https://github.com/helm/helm/releases/download/v4.1.1/helm-v4.1.1-windows-arm64.zip.sha256sum.asc + content_type: application/octet-stream + created_at: "2026-02-09T18:32:31Z" + digest: sha256:9bf24414f6461e2d96899be200b43b40320d872374ea9f1b62be1eaab4005bba + download_count: 17 + id: 353199878 + label: null + name: helm-v4.1.1-windows-arm64.zip.sha256sum.asc + node_id: RA_kwDOApspmc4VDWcG + size: 228 + state: uploaded + updated_at: "2026-02-09T18:32:32Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/2787248?v=4 + events_url: https://api.github.com/users/gjenkins8/events{/privacy} + followers_url: https://api.github.com/users/gjenkins8/followers + following_url: https://api.github.com/users/gjenkins8/following{/other_user} + gists_url: https://api.github.com/users/gjenkins8/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/gjenkins8 + id: 2787248 + login: gjenkins8 + node_id: MDQ6VXNlcjI3ODcyNDg= + organizations_url: https://api.github.com/users/gjenkins8/orgs + received_events_url: https://api.github.com/users/gjenkins8/received_events + repos_url: https://api.github.com/users/gjenkins8/repos + site_admin: false + starred_url: https://api.github.com/users/gjenkins8/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/gjenkins8/subscriptions + type: User + url: https://api.github.com/users/gjenkins8 + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/353199878 + assets_url: https://api.github.com/repos/helm/helm/releases/284516696/assets + author: + avatar_url: https://avatars.githubusercontent.com/u/2787248?v=4 + events_url: https://api.github.com/users/gjenkins8/events{/privacy} + followers_url: https://api.github.com/users/gjenkins8/followers + following_url: https://api.github.com/users/gjenkins8/following{/other_user} + gists_url: https://api.github.com/users/gjenkins8/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/gjenkins8 + id: 2787248 + login: gjenkins8 + node_id: MDQ6VXNlcjI3ODcyNDg= + organizations_url: https://api.github.com/users/gjenkins8/orgs + received_events_url: https://api.github.com/users/gjenkins8/received_events + repos_url: https://api.github.com/users/gjenkins8/repos + site_admin: false + starred_url: https://api.github.com/users/gjenkins8/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/gjenkins8/subscriptions + type: User + url: https://api.github.com/users/gjenkins8 + user_view_type: public + body: "Helm v4.1.1 is a patch release. Users are encouraged to upgrade for + the best experience.\r\n\r\nThe community keeps growing, and we'd love + to see you there!\r\n\r\n- Join the discussion in [Kubernetes Slack](https://kubernetes.slack.com):\r\n + \ - for questions and just to hang out\r\n - for discussing PRs, code, + and bugs\r\n- Hang out at the Public Developer Call: Thursday, 9:30 Pacific + via [Zoom](https://zoom.us/j/696660622)\r\n- Test, debug, and contribute + charts: [ArtifactHub/packages](https://artifacthub.io/packages/search?kind=0)\r\n\r\n## + Notable Changes\r\n\r\n- fix: fine-grained context options for waiting + #31735\r\n- fix: kstatus do not wait forever on failed resources #31730\r\n- + fix: Revert \"Consider GroupVersionKind when matching resources\" #31772\r\n- + fix: handle nil elements in slice copying #31751\r\n\r\n## Installation + and Upgrading\r\n\r\nDownload Helm v4.1.1. The common platform binaries + are here:\r\n\r\n- [MacOS amd64](https://get.helm.sh/helm-v4.1.1-darwin-amd64.tar.gz) + ([checksum](https://get.helm.sh/helm-v4.1.1-darwin-amd64.tar.gz.sha256sum) + / 6b8dbb03abb74e9ab8e69ca3f9b6459178be11317d0ac502f922621c05fdc866)\r\n- + [MacOS arm64](https://get.helm.sh/helm-v4.1.1-darwin-arm64.tar.gz) ([checksum](https://get.helm.sh/helm-v4.1.1-darwin-arm64.tar.gz.sha256sum) + / b8f49e105b1d2fd8c8a90ba3fc9af48db91d2d1ca3b9e788352fc7c896bbb71a)\r\n- + [Linux amd64](https://get.helm.sh/helm-v4.1.1-linux-amd64.tar.gz) ([checksum](https://get.helm.sh/helm-v4.1.1-linux-amd64.tar.gz.sha256sum) + / 5d4c7623283e6dfb1971957f4b755468ab64917066a8567dd50464af298f4031)\r\n- + [Linux arm](https://get.helm.sh/helm-v4.1.1-linux-arm.tar.gz) ([checksum](https://get.helm.sh/helm-v4.1.1-linux-arm.tar.gz.sha256sum) + / e8b42ce9210ca6dc96c8dad24192544fc99ddbdf93292e25d762569156c09b85)\r\n- + [Linux arm64](https://get.helm.sh/helm-v4.1.1-linux-arm64.tar.gz) ([checksum](https://get.helm.sh/helm-v4.1.1-linux-arm64.tar.gz.sha256sum) + / 02a5fb7742469d2d132e24cb7c3f52885894043576588c6788b6813297629edd)\r\n- + [Linux i386](https://get.helm.sh/helm-v4.1.1-linux-386.tar.gz) ([checksum](https://get.helm.sh/helm-v4.1.1-linux-386.tar.gz.sha256sum) + / a5d237c606a7b520340d288a94dbd54aa7f1ab09f882221272227515b9bc4a74)\r\n- + [Linux ppc64le](https://get.helm.sh/helm-v4.1.1-linux-ppc64le.tar.gz) + ([checksum](https://get.helm.sh/helm-v4.1.1-linux-ppc64le.tar.gz.sha256sum) + / 080c411ba2bbed1c0a6d1c91c31c5079e23ae5db1e82ef563d5db6edbc3be2bf)\r\n- + [Linux s390x](https://get.helm.sh/helm-v4.1.1-linux-s390x.tar.gz) ([checksum](https://get.helm.sh/helm-v4.1.1-linux-s390x.tar.gz.sha256sum) + / d2af312a4cfb525133ede9990daafd36381d3e000ccec32ad5ab08ba400b0ad0)\r\n- + [Linux riscv64](https://get.helm.sh/helm-v4.1.1-linux-riscv64.tar.gz) + ([checksum](https://get.helm.sh/helm-v4.1.1-linux-riscv64.tar.gz.sha256sum) + / 2d2aa1cdd4d53cdd50204c9548ab8a696f2a0603bd04c98ec4b34cbc3294ada8)\r\n- + [Windows amd64](https://get.helm.sh/helm-v4.1.1-windows-amd64.zip) ([checksum](https://get.helm.sh/helm-v4.1.1-windows-amd64.zip.sha256sum) + / 665161eba861d86bdb6969aa15d0d0cac3f04ce950ca12b4ee0552d7967a61fa)\r\n- + [Windows arm64](https://get.helm.sh/helm-v4.1.1-windows-arm64.zip) ([checksum](https://get.helm.sh/helm-v4.1.1-windows-arm64.zip.sha256sum) + / bd73ebc89311de201d6d86fc20ced76d7f448579332c54093fc086a2279d905d)\r\n\r\nThe + [Quickstart Guide](https://helm.sh/docs/intro/quickstart/) will get you + going from there. For **upgrade instructions** or detailed installation + notes, check the [install guide](https://helm.sh/docs/intro/install/). + You can also use a [script to install](https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3) + on any system with `bash`.\r\n\r\nThis release was signed by @gjenkins8 + with key `BF88 8333 D96A 1C18 E268 2AAE D79D 67C9 EC01 6739`, which can + be found at . + Please use the attached signatures for verifying this release using `gpg`.\r\n\r\nThe + [Quickstart Guide](https://helm.sh/docs/intro/quickstart/) will get you + going from there. For **upgrade instructions** or detailed installation + notes, check the [install guide](https://helm.sh/docs/intro/install/). + You can also use a [script to install](https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3) + on any system with `bash`.\r\n\r\n## What's Next\r\n\r\n- 4.2.0 and 3.21.0 + are the next minor releases and will be on May 13, 2026\r\n- 4.1.2 and + 3.20.2 are the next patch releases and will be on March 11, 2026\r\n\r\n## + Changelog\r\n\r\n- feat(kstatus): fine-grained context options for waiting + 5caf0044d4ef3d62a955440272999e139aafbbed (Matheus Pimenta)\r\n- bugfix(kstatus): + do not wait forever on failed resources 2519a88b0b8ec7c69623f616617b01f626d9aaf5 + (Matheus Pimenta)\r\n- Revert \"Consider GroupVersionKind when matching + resources\" b2c487c4368db88fe9267d2ed62de9a52b333b5b (Matheus Pimenta)\r\n- + fix(copystructure): handle nil elements in slice copying 261387a112bd91edca6511d34de23f7cc5ce9f8b + (Philipp Born)" + created_at: "2026-02-09T18:09:39Z" + draft: false + html_url: https://github.com/helm/helm/releases/tag/v4.1.1 + id: 284516696 + immutable: false + mentions_count: 1 + name: Helm v4.1.1 + node_id: RE_kwDOApspmc4Q9WFY + prerelease: false + published_at: "2026-02-09T18:33:58Z" + reactions: + "+1": 2 + "-1": 0 + confused: 0 + eyes: 0 + heart: 0 + hooray: 0 + laugh: 0 + rocket: 2 + total_count: 4 + url: https://api.github.com/repos/helm/helm/releases/284516696/reactions + tag_name: v4.1.1 + tarball_url: https://api.github.com/repos/helm/helm/tarball/v4.1.1 + target_commitish: main + updated_at: "2026-02-09T18:34:39Z" + upload_url: https://uploads.github.com/repos/helm/helm/releases/284516696/assets{?name,label} + url: https://api.github.com/repos/helm/helm/releases/284516696 + zipball_url: https://api.github.com/repos/helm/helm/zipball/v4.1.1 + 4.1.3: + githubRelease: + assets: + - browser_download_url: https://github.com/helm/helm/releases/download/v4.1.3/helm-v4.1.3-darwin-amd64.tar.gz.asc + content_type: application/octet-stream + created_at: "2026-03-11T23:01:14Z" + digest: sha256:dae6abb79e83dfd1e1c3f629e3a27fc6bb44f58770029b8a165bd43b4ddd3696 + download_count: 0 + id: 371882460 + label: null + name: helm-v4.1.3-darwin-amd64.tar.gz.asc + node_id: RA_kwDOApspmc4WKnnc + size: 833 + state: uploaded + updated_at: "2026-03-11T23:01:14Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/407675?v=4 + events_url: https://api.github.com/users/scottrigby/events{/privacy} + followers_url: https://api.github.com/users/scottrigby/followers + following_url: https://api.github.com/users/scottrigby/following{/other_user} + gists_url: https://api.github.com/users/scottrigby/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/scottrigby + id: 407675 + login: scottrigby + node_id: MDQ6VXNlcjQwNzY3NQ== + organizations_url: https://api.github.com/users/scottrigby/orgs + received_events_url: https://api.github.com/users/scottrigby/received_events + repos_url: https://api.github.com/users/scottrigby/repos + site_admin: false + starred_url: https://api.github.com/users/scottrigby/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/scottrigby/subscriptions + type: User + url: https://api.github.com/users/scottrigby + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/371882460 + - browser_download_url: https://github.com/helm/helm/releases/download/v4.1.3/helm-v4.1.3-darwin-amd64.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2026-03-11T23:01:14Z" + digest: sha256:084c23c12bbedab87d74d5fbc87ef266811c0424b2f628f61dabd5e5bdbcdd08 + download_count: 0 + id: 371882461 + label: null + name: helm-v4.1.3-darwin-amd64.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4WKnnd + size: 833 + state: uploaded + updated_at: "2026-03-11T23:01:14Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/407675?v=4 + events_url: https://api.github.com/users/scottrigby/events{/privacy} + followers_url: https://api.github.com/users/scottrigby/followers + following_url: https://api.github.com/users/scottrigby/following{/other_user} + gists_url: https://api.github.com/users/scottrigby/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/scottrigby + id: 407675 + login: scottrigby + node_id: MDQ6VXNlcjQwNzY3NQ== + organizations_url: https://api.github.com/users/scottrigby/orgs + received_events_url: https://api.github.com/users/scottrigby/received_events + repos_url: https://api.github.com/users/scottrigby/repos + site_admin: false + starred_url: https://api.github.com/users/scottrigby/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/scottrigby/subscriptions + type: User + url: https://api.github.com/users/scottrigby + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/371882461 + - browser_download_url: https://github.com/helm/helm/releases/download/v4.1.3/helm-v4.1.3-darwin-amd64.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2026-03-11T23:01:14Z" + digest: sha256:455c81b5b148de217339d1addde09bfd7337e0e25f3f3f913a9c3c9a5ab5c4e8 + download_count: 0 + id: 371882462 + label: null + name: helm-v4.1.3-darwin-amd64.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4WKnne + size: 833 + state: uploaded + updated_at: "2026-03-11T23:01:14Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/407675?v=4 + events_url: https://api.github.com/users/scottrigby/events{/privacy} + followers_url: https://api.github.com/users/scottrigby/followers + following_url: https://api.github.com/users/scottrigby/following{/other_user} + gists_url: https://api.github.com/users/scottrigby/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/scottrigby + id: 407675 + login: scottrigby + node_id: MDQ6VXNlcjQwNzY3NQ== + organizations_url: https://api.github.com/users/scottrigby/orgs + received_events_url: https://api.github.com/users/scottrigby/received_events + repos_url: https://api.github.com/users/scottrigby/repos + site_admin: false + starred_url: https://api.github.com/users/scottrigby/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/scottrigby/subscriptions + type: User + url: https://api.github.com/users/scottrigby + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/371882462 + - browser_download_url: https://github.com/helm/helm/releases/download/v4.1.3/helm-v4.1.3-darwin-arm64.tar.gz.asc + content_type: application/octet-stream + created_at: "2026-03-11T23:01:14Z" + digest: sha256:b21e81e51c7c19c283f8cb80574fdafe1c494a125d3ff0052304f86eacd5685e + download_count: 0 + id: 371882463 + label: null + name: helm-v4.1.3-darwin-arm64.tar.gz.asc + node_id: RA_kwDOApspmc4WKnnf + size: 833 + state: uploaded + updated_at: "2026-03-11T23:01:15Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/407675?v=4 + events_url: https://api.github.com/users/scottrigby/events{/privacy} + followers_url: https://api.github.com/users/scottrigby/followers + following_url: https://api.github.com/users/scottrigby/following{/other_user} + gists_url: https://api.github.com/users/scottrigby/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/scottrigby + id: 407675 + login: scottrigby + node_id: MDQ6VXNlcjQwNzY3NQ== + organizations_url: https://api.github.com/users/scottrigby/orgs + received_events_url: https://api.github.com/users/scottrigby/received_events + repos_url: https://api.github.com/users/scottrigby/repos + site_admin: false + starred_url: https://api.github.com/users/scottrigby/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/scottrigby/subscriptions + type: User + url: https://api.github.com/users/scottrigby + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/371882463 + - browser_download_url: https://github.com/helm/helm/releases/download/v4.1.3/helm-v4.1.3-darwin-arm64.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2026-03-11T23:01:15Z" + digest: sha256:a93e2862c6fd0097343f22e7fab19bf5b4cc69be2380484b81d4364680b82393 + download_count: 0 + id: 371882464 + label: null + name: helm-v4.1.3-darwin-arm64.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4WKnng + size: 833 + state: uploaded + updated_at: "2026-03-11T23:01:15Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/407675?v=4 + events_url: https://api.github.com/users/scottrigby/events{/privacy} + followers_url: https://api.github.com/users/scottrigby/followers + following_url: https://api.github.com/users/scottrigby/following{/other_user} + gists_url: https://api.github.com/users/scottrigby/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/scottrigby + id: 407675 + login: scottrigby + node_id: MDQ6VXNlcjQwNzY3NQ== + organizations_url: https://api.github.com/users/scottrigby/orgs + received_events_url: https://api.github.com/users/scottrigby/received_events + repos_url: https://api.github.com/users/scottrigby/repos + site_admin: false + starred_url: https://api.github.com/users/scottrigby/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/scottrigby/subscriptions + type: User + url: https://api.github.com/users/scottrigby + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/371882464 + - browser_download_url: https://github.com/helm/helm/releases/download/v4.1.3/helm-v4.1.3-darwin-arm64.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2026-03-11T23:01:15Z" + digest: sha256:d96d30047d4e101556c30013d32dce051805d9376b2c6e91ae327fddb89a5a27 + download_count: 0 + id: 371882467 + label: null + name: helm-v4.1.3-darwin-arm64.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4WKnnj + size: 833 + state: uploaded + updated_at: "2026-03-11T23:01:15Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/407675?v=4 + events_url: https://api.github.com/users/scottrigby/events{/privacy} + followers_url: https://api.github.com/users/scottrigby/followers + following_url: https://api.github.com/users/scottrigby/following{/other_user} + gists_url: https://api.github.com/users/scottrigby/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/scottrigby + id: 407675 + login: scottrigby + node_id: MDQ6VXNlcjQwNzY3NQ== + organizations_url: https://api.github.com/users/scottrigby/orgs + received_events_url: https://api.github.com/users/scottrigby/received_events + repos_url: https://api.github.com/users/scottrigby/repos + site_admin: false + starred_url: https://api.github.com/users/scottrigby/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/scottrigby/subscriptions + type: User + url: https://api.github.com/users/scottrigby + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/371882467 + - browser_download_url: https://github.com/helm/helm/releases/download/v4.1.3/helm-v4.1.3-linux-386.tar.gz.asc + content_type: application/octet-stream + created_at: "2026-03-11T23:01:15Z" + digest: sha256:4b25614975234e46762e0ace9aaf83f4d6e8f24e3134d577ab750d10ab36d7ce + download_count: 0 + id: 371882473 + label: null + name: helm-v4.1.3-linux-386.tar.gz.asc + node_id: RA_kwDOApspmc4WKnnp + size: 833 + state: uploaded + updated_at: "2026-03-11T23:01:15Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/407675?v=4 + events_url: https://api.github.com/users/scottrigby/events{/privacy} + followers_url: https://api.github.com/users/scottrigby/followers + following_url: https://api.github.com/users/scottrigby/following{/other_user} + gists_url: https://api.github.com/users/scottrigby/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/scottrigby + id: 407675 + login: scottrigby + node_id: MDQ6VXNlcjQwNzY3NQ== + organizations_url: https://api.github.com/users/scottrigby/orgs + received_events_url: https://api.github.com/users/scottrigby/received_events + repos_url: https://api.github.com/users/scottrigby/repos + site_admin: false + starred_url: https://api.github.com/users/scottrigby/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/scottrigby/subscriptions + type: User + url: https://api.github.com/users/scottrigby + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/371882473 + - browser_download_url: https://github.com/helm/helm/releases/download/v4.1.3/helm-v4.1.3-linux-386.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2026-03-11T23:01:15Z" + digest: sha256:81f7746b830065da170abde824a28a1056122345aac67a36a238ed60e8096660 + download_count: 0 + id: 371882477 + label: null + name: helm-v4.1.3-linux-386.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4WKnnt + size: 833 + state: uploaded + updated_at: "2026-03-11T23:01:15Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/407675?v=4 + events_url: https://api.github.com/users/scottrigby/events{/privacy} + followers_url: https://api.github.com/users/scottrigby/followers + following_url: https://api.github.com/users/scottrigby/following{/other_user} + gists_url: https://api.github.com/users/scottrigby/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/scottrigby + id: 407675 + login: scottrigby + node_id: MDQ6VXNlcjQwNzY3NQ== + organizations_url: https://api.github.com/users/scottrigby/orgs + received_events_url: https://api.github.com/users/scottrigby/received_events + repos_url: https://api.github.com/users/scottrigby/repos + site_admin: false + starred_url: https://api.github.com/users/scottrigby/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/scottrigby/subscriptions + type: User + url: https://api.github.com/users/scottrigby + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/371882477 + - browser_download_url: https://github.com/helm/helm/releases/download/v4.1.3/helm-v4.1.3-linux-386.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2026-03-11T23:01:15Z" + digest: sha256:8122b9b4b62f810a4f97c15fe0f8a8ec5d21b57e77576e689e52ef16245fb328 + download_count: 0 + id: 371882479 + label: null + name: helm-v4.1.3-linux-386.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4WKnnv + size: 833 + state: uploaded + updated_at: "2026-03-11T23:01:15Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/407675?v=4 + events_url: https://api.github.com/users/scottrigby/events{/privacy} + followers_url: https://api.github.com/users/scottrigby/followers + following_url: https://api.github.com/users/scottrigby/following{/other_user} + gists_url: https://api.github.com/users/scottrigby/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/scottrigby + id: 407675 + login: scottrigby + node_id: MDQ6VXNlcjQwNzY3NQ== + organizations_url: https://api.github.com/users/scottrigby/orgs + received_events_url: https://api.github.com/users/scottrigby/received_events + repos_url: https://api.github.com/users/scottrigby/repos + site_admin: false + starred_url: https://api.github.com/users/scottrigby/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/scottrigby/subscriptions + type: User + url: https://api.github.com/users/scottrigby + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/371882479 + - browser_download_url: https://github.com/helm/helm/releases/download/v4.1.3/helm-v4.1.3-linux-amd64.tar.gz.asc + content_type: application/octet-stream + created_at: "2026-03-11T23:01:15Z" + digest: sha256:838b764561b7e69443c93ce6da7353759cdaf63af0bf4815f5bd31169e39a296 + download_count: 0 + id: 371882480 + label: null + name: helm-v4.1.3-linux-amd64.tar.gz.asc + node_id: RA_kwDOApspmc4WKnnw + size: 833 + state: uploaded + updated_at: "2026-03-11T23:01:16Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/407675?v=4 + events_url: https://api.github.com/users/scottrigby/events{/privacy} + followers_url: https://api.github.com/users/scottrigby/followers + following_url: https://api.github.com/users/scottrigby/following{/other_user} + gists_url: https://api.github.com/users/scottrigby/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/scottrigby + id: 407675 + login: scottrigby + node_id: MDQ6VXNlcjQwNzY3NQ== + organizations_url: https://api.github.com/users/scottrigby/orgs + received_events_url: https://api.github.com/users/scottrigby/received_events + repos_url: https://api.github.com/users/scottrigby/repos + site_admin: false + starred_url: https://api.github.com/users/scottrigby/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/scottrigby/subscriptions + type: User + url: https://api.github.com/users/scottrigby + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/371882480 + - browser_download_url: https://github.com/helm/helm/releases/download/v4.1.3/helm-v4.1.3-linux-amd64.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2026-03-11T23:01:16Z" + digest: sha256:4d18e0227c2f5856dd1a780703d9bd224f229d186680174431d96e9a063e65eb + download_count: 0 + id: 371882482 + label: null + name: helm-v4.1.3-linux-amd64.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4WKnny + size: 833 + state: uploaded + updated_at: "2026-03-11T23:01:16Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/407675?v=4 + events_url: https://api.github.com/users/scottrigby/events{/privacy} + followers_url: https://api.github.com/users/scottrigby/followers + following_url: https://api.github.com/users/scottrigby/following{/other_user} + gists_url: https://api.github.com/users/scottrigby/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/scottrigby + id: 407675 + login: scottrigby + node_id: MDQ6VXNlcjQwNzY3NQ== + organizations_url: https://api.github.com/users/scottrigby/orgs + received_events_url: https://api.github.com/users/scottrigby/received_events + repos_url: https://api.github.com/users/scottrigby/repos + site_admin: false + starred_url: https://api.github.com/users/scottrigby/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/scottrigby/subscriptions + type: User + url: https://api.github.com/users/scottrigby + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/371882482 + - browser_download_url: https://github.com/helm/helm/releases/download/v4.1.3/helm-v4.1.3-linux-amd64.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2026-03-11T23:01:16Z" + digest: sha256:0387e8340319f227f9f2ca54920181a2505a041aa838387f224bf304ebeb3707 + download_count: 0 + id: 371882483 + label: null + name: helm-v4.1.3-linux-amd64.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4WKnnz + size: 833 + state: uploaded + updated_at: "2026-03-11T23:01:16Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/407675?v=4 + events_url: https://api.github.com/users/scottrigby/events{/privacy} + followers_url: https://api.github.com/users/scottrigby/followers + following_url: https://api.github.com/users/scottrigby/following{/other_user} + gists_url: https://api.github.com/users/scottrigby/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/scottrigby + id: 407675 + login: scottrigby + node_id: MDQ6VXNlcjQwNzY3NQ== + organizations_url: https://api.github.com/users/scottrigby/orgs + received_events_url: https://api.github.com/users/scottrigby/received_events + repos_url: https://api.github.com/users/scottrigby/repos + site_admin: false + starred_url: https://api.github.com/users/scottrigby/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/scottrigby/subscriptions + type: User + url: https://api.github.com/users/scottrigby + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/371882483 + - browser_download_url: https://github.com/helm/helm/releases/download/v4.1.3/helm-v4.1.3-linux-arm.tar.gz.asc + content_type: application/octet-stream + created_at: "2026-03-11T23:01:16Z" + digest: sha256:3dd958fd06bc69350ea81c0a59f226b309cac5dd2d3d7f0ab68d37de6d4124cf + download_count: 0 + id: 371882484 + label: null + name: helm-v4.1.3-linux-arm.tar.gz.asc + node_id: RA_kwDOApspmc4WKnn0 + size: 833 + state: uploaded + updated_at: "2026-03-11T23:01:16Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/407675?v=4 + events_url: https://api.github.com/users/scottrigby/events{/privacy} + followers_url: https://api.github.com/users/scottrigby/followers + following_url: https://api.github.com/users/scottrigby/following{/other_user} + gists_url: https://api.github.com/users/scottrigby/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/scottrigby + id: 407675 + login: scottrigby + node_id: MDQ6VXNlcjQwNzY3NQ== + organizations_url: https://api.github.com/users/scottrigby/orgs + received_events_url: https://api.github.com/users/scottrigby/received_events + repos_url: https://api.github.com/users/scottrigby/repos + site_admin: false + starred_url: https://api.github.com/users/scottrigby/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/scottrigby/subscriptions + type: User + url: https://api.github.com/users/scottrigby + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/371882484 + - browser_download_url: https://github.com/helm/helm/releases/download/v4.1.3/helm-v4.1.3-linux-arm.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2026-03-11T23:01:16Z" + digest: sha256:02bf8dbb1ad622248c660f477e0748a92ed9dbc3538d1017224a30bb2c0b28bb + download_count: 0 + id: 371882485 + label: null + name: helm-v4.1.3-linux-arm.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4WKnn1 + size: 833 + state: uploaded + updated_at: "2026-03-11T23:01:16Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/407675?v=4 + events_url: https://api.github.com/users/scottrigby/events{/privacy} + followers_url: https://api.github.com/users/scottrigby/followers + following_url: https://api.github.com/users/scottrigby/following{/other_user} + gists_url: https://api.github.com/users/scottrigby/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/scottrigby + id: 407675 + login: scottrigby + node_id: MDQ6VXNlcjQwNzY3NQ== + organizations_url: https://api.github.com/users/scottrigby/orgs + received_events_url: https://api.github.com/users/scottrigby/received_events + repos_url: https://api.github.com/users/scottrigby/repos + site_admin: false + starred_url: https://api.github.com/users/scottrigby/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/scottrigby/subscriptions + type: User + url: https://api.github.com/users/scottrigby + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/371882485 + - browser_download_url: https://github.com/helm/helm/releases/download/v4.1.3/helm-v4.1.3-linux-arm.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2026-03-11T23:01:16Z" + digest: sha256:8c6662dcaed09c885890fd0ea805265ea6e9c6177b996cff00cf0b923a2ee67b + download_count: 0 + id: 371882487 + label: null + name: helm-v4.1.3-linux-arm.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4WKnn3 + size: 833 + state: uploaded + updated_at: "2026-03-11T23:01:16Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/407675?v=4 + events_url: https://api.github.com/users/scottrigby/events{/privacy} + followers_url: https://api.github.com/users/scottrigby/followers + following_url: https://api.github.com/users/scottrigby/following{/other_user} + gists_url: https://api.github.com/users/scottrigby/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/scottrigby + id: 407675 + login: scottrigby + node_id: MDQ6VXNlcjQwNzY3NQ== + organizations_url: https://api.github.com/users/scottrigby/orgs + received_events_url: https://api.github.com/users/scottrigby/received_events + repos_url: https://api.github.com/users/scottrigby/repos + site_admin: false + starred_url: https://api.github.com/users/scottrigby/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/scottrigby/subscriptions + type: User + url: https://api.github.com/users/scottrigby + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/371882487 + - browser_download_url: https://github.com/helm/helm/releases/download/v4.1.3/helm-v4.1.3-linux-arm64.tar.gz.asc + content_type: application/octet-stream + created_at: "2026-03-11T23:01:16Z" + digest: sha256:c89d957d7807da3ae3fb2553039a4afef1764351bc9688a4927aced184553ebc + download_count: 0 + id: 371882489 + label: null + name: helm-v4.1.3-linux-arm64.tar.gz.asc + node_id: RA_kwDOApspmc4WKnn5 + size: 833 + state: uploaded + updated_at: "2026-03-11T23:01:16Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/407675?v=4 + events_url: https://api.github.com/users/scottrigby/events{/privacy} + followers_url: https://api.github.com/users/scottrigby/followers + following_url: https://api.github.com/users/scottrigby/following{/other_user} + gists_url: https://api.github.com/users/scottrigby/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/scottrigby + id: 407675 + login: scottrigby + node_id: MDQ6VXNlcjQwNzY3NQ== + organizations_url: https://api.github.com/users/scottrigby/orgs + received_events_url: https://api.github.com/users/scottrigby/received_events + repos_url: https://api.github.com/users/scottrigby/repos + site_admin: false + starred_url: https://api.github.com/users/scottrigby/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/scottrigby/subscriptions + type: User + url: https://api.github.com/users/scottrigby + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/371882489 + - browser_download_url: https://github.com/helm/helm/releases/download/v4.1.3/helm-v4.1.3-linux-arm64.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2026-03-11T23:01:16Z" + digest: sha256:38ca626a7236688c29721a11d65cdf0dbcf7f0401a7ec39c2a045a94dbc9bc94 + download_count: 0 + id: 371882490 + label: null + name: helm-v4.1.3-linux-arm64.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4WKnn6 + size: 833 + state: uploaded + updated_at: "2026-03-11T23:01:17Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/407675?v=4 + events_url: https://api.github.com/users/scottrigby/events{/privacy} + followers_url: https://api.github.com/users/scottrigby/followers + following_url: https://api.github.com/users/scottrigby/following{/other_user} + gists_url: https://api.github.com/users/scottrigby/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/scottrigby + id: 407675 + login: scottrigby + node_id: MDQ6VXNlcjQwNzY3NQ== + organizations_url: https://api.github.com/users/scottrigby/orgs + received_events_url: https://api.github.com/users/scottrigby/received_events + repos_url: https://api.github.com/users/scottrigby/repos + site_admin: false + starred_url: https://api.github.com/users/scottrigby/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/scottrigby/subscriptions + type: User + url: https://api.github.com/users/scottrigby + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/371882490 + - browser_download_url: https://github.com/helm/helm/releases/download/v4.1.3/helm-v4.1.3-linux-arm64.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2026-03-11T23:01:17Z" + digest: sha256:65d21e1509c8204f8f37498f927f2e7f26edfdcf067c7948d798f5cd5f957490 + download_count: 0 + id: 371882491 + label: null + name: helm-v4.1.3-linux-arm64.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4WKnn7 + size: 833 + state: uploaded + updated_at: "2026-03-11T23:01:17Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/407675?v=4 + events_url: https://api.github.com/users/scottrigby/events{/privacy} + followers_url: https://api.github.com/users/scottrigby/followers + following_url: https://api.github.com/users/scottrigby/following{/other_user} + gists_url: https://api.github.com/users/scottrigby/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/scottrigby + id: 407675 + login: scottrigby + node_id: MDQ6VXNlcjQwNzY3NQ== + organizations_url: https://api.github.com/users/scottrigby/orgs + received_events_url: https://api.github.com/users/scottrigby/received_events + repos_url: https://api.github.com/users/scottrigby/repos + site_admin: false + starred_url: https://api.github.com/users/scottrigby/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/scottrigby/subscriptions + type: User + url: https://api.github.com/users/scottrigby + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/371882491 + - browser_download_url: https://github.com/helm/helm/releases/download/v4.1.3/helm-v4.1.3-linux-loong64.tar.gz.asc + content_type: application/octet-stream + created_at: "2026-03-11T23:01:17Z" + digest: sha256:cd1b136f0f3927698a80eadc5d04c8b9e5bdf128030ff600eff0c046862366f8 + download_count: 0 + id: 371882493 + label: null + name: helm-v4.1.3-linux-loong64.tar.gz.asc + node_id: RA_kwDOApspmc4WKnn9 + size: 833 + state: uploaded + updated_at: "2026-03-11T23:01:17Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/407675?v=4 + events_url: https://api.github.com/users/scottrigby/events{/privacy} + followers_url: https://api.github.com/users/scottrigby/followers + following_url: https://api.github.com/users/scottrigby/following{/other_user} + gists_url: https://api.github.com/users/scottrigby/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/scottrigby + id: 407675 + login: scottrigby + node_id: MDQ6VXNlcjQwNzY3NQ== + organizations_url: https://api.github.com/users/scottrigby/orgs + received_events_url: https://api.github.com/users/scottrigby/received_events + repos_url: https://api.github.com/users/scottrigby/repos + site_admin: false + starred_url: https://api.github.com/users/scottrigby/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/scottrigby/subscriptions + type: User + url: https://api.github.com/users/scottrigby + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/371882493 + - browser_download_url: https://github.com/helm/helm/releases/download/v4.1.3/helm-v4.1.3-linux-loong64.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2026-03-11T23:01:17Z" + digest: sha256:76dfdd9941bf69c4d3f2024e967c423d72e9dd2c14c6489926f99e77993857d0 + download_count: 0 + id: 371882494 + label: null + name: helm-v4.1.3-linux-loong64.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4WKnn- + size: 833 + state: uploaded + updated_at: "2026-03-11T23:01:17Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/407675?v=4 + events_url: https://api.github.com/users/scottrigby/events{/privacy} + followers_url: https://api.github.com/users/scottrigby/followers + following_url: https://api.github.com/users/scottrigby/following{/other_user} + gists_url: https://api.github.com/users/scottrigby/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/scottrigby + id: 407675 + login: scottrigby + node_id: MDQ6VXNlcjQwNzY3NQ== + organizations_url: https://api.github.com/users/scottrigby/orgs + received_events_url: https://api.github.com/users/scottrigby/received_events + repos_url: https://api.github.com/users/scottrigby/repos + site_admin: false + starred_url: https://api.github.com/users/scottrigby/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/scottrigby/subscriptions + type: User + url: https://api.github.com/users/scottrigby + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/371882494 + - browser_download_url: https://github.com/helm/helm/releases/download/v4.1.3/helm-v4.1.3-linux-loong64.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2026-03-11T23:01:17Z" + digest: sha256:e987889c7928d064ec47f109c1dbb43088b98497f22a687e09b0ecfee370eb6f + download_count: 0 + id: 371882495 + label: null + name: helm-v4.1.3-linux-loong64.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4WKnn_ + size: 833 + state: uploaded + updated_at: "2026-03-11T23:01:17Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/407675?v=4 + events_url: https://api.github.com/users/scottrigby/events{/privacy} + followers_url: https://api.github.com/users/scottrigby/followers + following_url: https://api.github.com/users/scottrigby/following{/other_user} + gists_url: https://api.github.com/users/scottrigby/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/scottrigby + id: 407675 + login: scottrigby + node_id: MDQ6VXNlcjQwNzY3NQ== + organizations_url: https://api.github.com/users/scottrigby/orgs + received_events_url: https://api.github.com/users/scottrigby/received_events + repos_url: https://api.github.com/users/scottrigby/repos + site_admin: false + starred_url: https://api.github.com/users/scottrigby/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/scottrigby/subscriptions + type: User + url: https://api.github.com/users/scottrigby + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/371882495 + - browser_download_url: https://github.com/helm/helm/releases/download/v4.1.3/helm-v4.1.3-linux-ppc64le.tar.gz.asc + content_type: application/octet-stream + created_at: "2026-03-11T23:01:17Z" + digest: sha256:e3e42df1aa4329139bd7f67b42c340f9cb33ddd01bf7567e4cdebd96daf6fb94 + download_count: 0 + id: 371882496 + label: null + name: helm-v4.1.3-linux-ppc64le.tar.gz.asc + node_id: RA_kwDOApspmc4WKnoA + size: 833 + state: uploaded + updated_at: "2026-03-11T23:01:17Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/407675?v=4 + events_url: https://api.github.com/users/scottrigby/events{/privacy} + followers_url: https://api.github.com/users/scottrigby/followers + following_url: https://api.github.com/users/scottrigby/following{/other_user} + gists_url: https://api.github.com/users/scottrigby/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/scottrigby + id: 407675 + login: scottrigby + node_id: MDQ6VXNlcjQwNzY3NQ== + organizations_url: https://api.github.com/users/scottrigby/orgs + received_events_url: https://api.github.com/users/scottrigby/received_events + repos_url: https://api.github.com/users/scottrigby/repos + site_admin: false + starred_url: https://api.github.com/users/scottrigby/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/scottrigby/subscriptions + type: User + url: https://api.github.com/users/scottrigby + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/371882496 + - browser_download_url: https://github.com/helm/helm/releases/download/v4.1.3/helm-v4.1.3-linux-ppc64le.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2026-03-11T23:01:17Z" + digest: sha256:75508161a7633b31fd84b4152e308568de9f661f55d91f4a2b24d02d4dca418d + download_count: 0 + id: 371882502 + label: null + name: helm-v4.1.3-linux-ppc64le.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4WKnoG + size: 833 + state: uploaded + updated_at: "2026-03-11T23:01:17Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/407675?v=4 + events_url: https://api.github.com/users/scottrigby/events{/privacy} + followers_url: https://api.github.com/users/scottrigby/followers + following_url: https://api.github.com/users/scottrigby/following{/other_user} + gists_url: https://api.github.com/users/scottrigby/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/scottrigby + id: 407675 + login: scottrigby + node_id: MDQ6VXNlcjQwNzY3NQ== + organizations_url: https://api.github.com/users/scottrigby/orgs + received_events_url: https://api.github.com/users/scottrigby/received_events + repos_url: https://api.github.com/users/scottrigby/repos + site_admin: false + starred_url: https://api.github.com/users/scottrigby/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/scottrigby/subscriptions + type: User + url: https://api.github.com/users/scottrigby + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/371882502 + - browser_download_url: https://github.com/helm/helm/releases/download/v4.1.3/helm-v4.1.3-linux-ppc64le.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2026-03-11T23:01:18Z" + digest: sha256:ff25bd2233b6c6e46992e8a6f219ecf1c23cbba668f7253e6f94d586d6a0633b + download_count: 0 + id: 371882505 + label: null + name: helm-v4.1.3-linux-ppc64le.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4WKnoJ + size: 833 + state: uploaded + updated_at: "2026-03-11T23:01:18Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/407675?v=4 + events_url: https://api.github.com/users/scottrigby/events{/privacy} + followers_url: https://api.github.com/users/scottrigby/followers + following_url: https://api.github.com/users/scottrigby/following{/other_user} + gists_url: https://api.github.com/users/scottrigby/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/scottrigby + id: 407675 + login: scottrigby + node_id: MDQ6VXNlcjQwNzY3NQ== + organizations_url: https://api.github.com/users/scottrigby/orgs + received_events_url: https://api.github.com/users/scottrigby/received_events + repos_url: https://api.github.com/users/scottrigby/repos + site_admin: false + starred_url: https://api.github.com/users/scottrigby/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/scottrigby/subscriptions + type: User + url: https://api.github.com/users/scottrigby + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/371882505 + - browser_download_url: https://github.com/helm/helm/releases/download/v4.1.3/helm-v4.1.3-linux-riscv64.tar.gz.asc + content_type: application/octet-stream + created_at: "2026-03-11T23:01:18Z" + digest: sha256:c3b1e637211adb493e6dcb26a4a6f95d2c6561fd3760609e9aa9d3107ee77905 + download_count: 0 + id: 371882506 + label: null + name: helm-v4.1.3-linux-riscv64.tar.gz.asc + node_id: RA_kwDOApspmc4WKnoK + size: 833 + state: uploaded + updated_at: "2026-03-11T23:01:18Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/407675?v=4 + events_url: https://api.github.com/users/scottrigby/events{/privacy} + followers_url: https://api.github.com/users/scottrigby/followers + following_url: https://api.github.com/users/scottrigby/following{/other_user} + gists_url: https://api.github.com/users/scottrigby/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/scottrigby + id: 407675 + login: scottrigby + node_id: MDQ6VXNlcjQwNzY3NQ== + organizations_url: https://api.github.com/users/scottrigby/orgs + received_events_url: https://api.github.com/users/scottrigby/received_events + repos_url: https://api.github.com/users/scottrigby/repos + site_admin: false + starred_url: https://api.github.com/users/scottrigby/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/scottrigby/subscriptions + type: User + url: https://api.github.com/users/scottrigby + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/371882506 + - browser_download_url: https://github.com/helm/helm/releases/download/v4.1.3/helm-v4.1.3-linux-riscv64.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2026-03-11T23:01:18Z" + digest: sha256:e8882b57ab96d503377ae367d6f4e4c7d21aa2ffca582ac5b85c86f93164ffc6 + download_count: 0 + id: 371882508 + label: null + name: helm-v4.1.3-linux-riscv64.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4WKnoM + size: 833 + state: uploaded + updated_at: "2026-03-11T23:01:18Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/407675?v=4 + events_url: https://api.github.com/users/scottrigby/events{/privacy} + followers_url: https://api.github.com/users/scottrigby/followers + following_url: https://api.github.com/users/scottrigby/following{/other_user} + gists_url: https://api.github.com/users/scottrigby/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/scottrigby + id: 407675 + login: scottrigby + node_id: MDQ6VXNlcjQwNzY3NQ== + organizations_url: https://api.github.com/users/scottrigby/orgs + received_events_url: https://api.github.com/users/scottrigby/received_events + repos_url: https://api.github.com/users/scottrigby/repos + site_admin: false + starred_url: https://api.github.com/users/scottrigby/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/scottrigby/subscriptions + type: User + url: https://api.github.com/users/scottrigby + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/371882508 + - browser_download_url: https://github.com/helm/helm/releases/download/v4.1.3/helm-v4.1.3-linux-riscv64.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2026-03-11T23:01:18Z" + digest: sha256:7a15c16011c5250550ca12dd9d2debfc7e8b05260692fdc388fa53b430c879bd + download_count: 0 + id: 371882510 + label: null + name: helm-v4.1.3-linux-riscv64.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4WKnoO + size: 833 + state: uploaded + updated_at: "2026-03-11T23:01:18Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/407675?v=4 + events_url: https://api.github.com/users/scottrigby/events{/privacy} + followers_url: https://api.github.com/users/scottrigby/followers + following_url: https://api.github.com/users/scottrigby/following{/other_user} + gists_url: https://api.github.com/users/scottrigby/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/scottrigby + id: 407675 + login: scottrigby + node_id: MDQ6VXNlcjQwNzY3NQ== + organizations_url: https://api.github.com/users/scottrigby/orgs + received_events_url: https://api.github.com/users/scottrigby/received_events + repos_url: https://api.github.com/users/scottrigby/repos + site_admin: false + starred_url: https://api.github.com/users/scottrigby/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/scottrigby/subscriptions + type: User + url: https://api.github.com/users/scottrigby + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/371882510 + - browser_download_url: https://github.com/helm/helm/releases/download/v4.1.3/helm-v4.1.3-linux-s390x.tar.gz.asc + content_type: application/octet-stream + created_at: "2026-03-11T23:01:18Z" + digest: sha256:1ab6e2f874b986e9bab618a0a540c4600e096f7aa6304a3d848b4e7d3d152515 + download_count: 0 + id: 371882514 + label: null + name: helm-v4.1.3-linux-s390x.tar.gz.asc + node_id: RA_kwDOApspmc4WKnoS + size: 833 + state: uploaded + updated_at: "2026-03-11T23:01:18Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/407675?v=4 + events_url: https://api.github.com/users/scottrigby/events{/privacy} + followers_url: https://api.github.com/users/scottrigby/followers + following_url: https://api.github.com/users/scottrigby/following{/other_user} + gists_url: https://api.github.com/users/scottrigby/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/scottrigby + id: 407675 + login: scottrigby + node_id: MDQ6VXNlcjQwNzY3NQ== + organizations_url: https://api.github.com/users/scottrigby/orgs + received_events_url: https://api.github.com/users/scottrigby/received_events + repos_url: https://api.github.com/users/scottrigby/repos + site_admin: false + starred_url: https://api.github.com/users/scottrigby/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/scottrigby/subscriptions + type: User + url: https://api.github.com/users/scottrigby + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/371882514 + - browser_download_url: https://github.com/helm/helm/releases/download/v4.1.3/helm-v4.1.3-linux-s390x.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2026-03-11T23:01:18Z" + digest: sha256:96877598780656f1811a3ddbb37174d96fbfd944633a2558064f76219d2e7e54 + download_count: 0 + id: 371882515 + label: null + name: helm-v4.1.3-linux-s390x.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4WKnoT + size: 833 + state: uploaded + updated_at: "2026-03-11T23:01:19Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/407675?v=4 + events_url: https://api.github.com/users/scottrigby/events{/privacy} + followers_url: https://api.github.com/users/scottrigby/followers + following_url: https://api.github.com/users/scottrigby/following{/other_user} + gists_url: https://api.github.com/users/scottrigby/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/scottrigby + id: 407675 + login: scottrigby + node_id: MDQ6VXNlcjQwNzY3NQ== + organizations_url: https://api.github.com/users/scottrigby/orgs + received_events_url: https://api.github.com/users/scottrigby/received_events + repos_url: https://api.github.com/users/scottrigby/repos + site_admin: false + starred_url: https://api.github.com/users/scottrigby/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/scottrigby/subscriptions + type: User + url: https://api.github.com/users/scottrigby + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/371882515 + - browser_download_url: https://github.com/helm/helm/releases/download/v4.1.3/helm-v4.1.3-linux-s390x.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2026-03-11T23:01:19Z" + digest: sha256:8cf0e8a49d044da289fb69dd4200643e34663b63b08aa3bd69cec16c23714f82 + download_count: 0 + id: 371882517 + label: null + name: helm-v4.1.3-linux-s390x.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4WKnoV + size: 833 + state: uploaded + updated_at: "2026-03-11T23:01:19Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/407675?v=4 + events_url: https://api.github.com/users/scottrigby/events{/privacy} + followers_url: https://api.github.com/users/scottrigby/followers + following_url: https://api.github.com/users/scottrigby/following{/other_user} + gists_url: https://api.github.com/users/scottrigby/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/scottrigby + id: 407675 + login: scottrigby + node_id: MDQ6VXNlcjQwNzY3NQ== + organizations_url: https://api.github.com/users/scottrigby/orgs + received_events_url: https://api.github.com/users/scottrigby/received_events + repos_url: https://api.github.com/users/scottrigby/repos + site_admin: false + starred_url: https://api.github.com/users/scottrigby/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/scottrigby/subscriptions + type: User + url: https://api.github.com/users/scottrigby + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/371882517 + - browser_download_url: https://github.com/helm/helm/releases/download/v4.1.3/helm-v4.1.3-windows-amd64.zip.asc + content_type: application/octet-stream + created_at: "2026-03-11T23:01:19Z" + digest: sha256:932c10a59b0adab11fc1e9639ea96970f95347f186583292089d3d4e4876ff99 + download_count: 0 + id: 371882518 + label: null + name: helm-v4.1.3-windows-amd64.zip.asc + node_id: RA_kwDOApspmc4WKnoW + size: 833 + state: uploaded + updated_at: "2026-03-11T23:01:19Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/407675?v=4 + events_url: https://api.github.com/users/scottrigby/events{/privacy} + followers_url: https://api.github.com/users/scottrigby/followers + following_url: https://api.github.com/users/scottrigby/following{/other_user} + gists_url: https://api.github.com/users/scottrigby/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/scottrigby + id: 407675 + login: scottrigby + node_id: MDQ6VXNlcjQwNzY3NQ== + organizations_url: https://api.github.com/users/scottrigby/orgs + received_events_url: https://api.github.com/users/scottrigby/received_events + repos_url: https://api.github.com/users/scottrigby/repos + site_admin: false + starred_url: https://api.github.com/users/scottrigby/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/scottrigby/subscriptions + type: User + url: https://api.github.com/users/scottrigby + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/371882518 + - browser_download_url: https://github.com/helm/helm/releases/download/v4.1.3/helm-v4.1.3-windows-amd64.zip.sha256.asc + content_type: application/octet-stream + created_at: "2026-03-11T23:01:19Z" + digest: sha256:a11de10f00a8ebf6a34af37ba0190e5ea75e69bbf08fa66f04bdbb4cf097c405 + download_count: 0 + id: 371882519 + label: null + name: helm-v4.1.3-windows-amd64.zip.sha256.asc + node_id: RA_kwDOApspmc4WKnoX + size: 833 + state: uploaded + updated_at: "2026-03-11T23:01:19Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/407675?v=4 + events_url: https://api.github.com/users/scottrigby/events{/privacy} + followers_url: https://api.github.com/users/scottrigby/followers + following_url: https://api.github.com/users/scottrigby/following{/other_user} + gists_url: https://api.github.com/users/scottrigby/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/scottrigby + id: 407675 + login: scottrigby + node_id: MDQ6VXNlcjQwNzY3NQ== + organizations_url: https://api.github.com/users/scottrigby/orgs + received_events_url: https://api.github.com/users/scottrigby/received_events + repos_url: https://api.github.com/users/scottrigby/repos + site_admin: false + starred_url: https://api.github.com/users/scottrigby/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/scottrigby/subscriptions + type: User + url: https://api.github.com/users/scottrigby + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/371882519 + - browser_download_url: https://github.com/helm/helm/releases/download/v4.1.3/helm-v4.1.3-windows-amd64.zip.sha256sum.asc + content_type: application/octet-stream + created_at: "2026-03-11T23:01:19Z" + digest: sha256:30055f74d461944a14c9b0853733d9f347766fef418e9b1c0f1e9913ef1398fd + download_count: 0 + id: 371882520 + label: null + name: helm-v4.1.3-windows-amd64.zip.sha256sum.asc + node_id: RA_kwDOApspmc4WKnoY + size: 833 + state: uploaded + updated_at: "2026-03-11T23:01:19Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/407675?v=4 + events_url: https://api.github.com/users/scottrigby/events{/privacy} + followers_url: https://api.github.com/users/scottrigby/followers + following_url: https://api.github.com/users/scottrigby/following{/other_user} + gists_url: https://api.github.com/users/scottrigby/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/scottrigby + id: 407675 + login: scottrigby + node_id: MDQ6VXNlcjQwNzY3NQ== + organizations_url: https://api.github.com/users/scottrigby/orgs + received_events_url: https://api.github.com/users/scottrigby/received_events + repos_url: https://api.github.com/users/scottrigby/repos + site_admin: false + starred_url: https://api.github.com/users/scottrigby/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/scottrigby/subscriptions + type: User + url: https://api.github.com/users/scottrigby + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/371882520 + - browser_download_url: https://github.com/helm/helm/releases/download/v4.1.3/helm-v4.1.3-windows-arm64.zip.asc + content_type: application/octet-stream + created_at: "2026-03-11T23:01:19Z" + digest: sha256:a4f65951510c92839166b7bcef485a0f8a693bc97304e6514422e5373fba8cfc + download_count: 0 + id: 371882523 + label: null + name: helm-v4.1.3-windows-arm64.zip.asc + node_id: RA_kwDOApspmc4WKnob + size: 833 + state: uploaded + updated_at: "2026-03-11T23:01:19Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/407675?v=4 + events_url: https://api.github.com/users/scottrigby/events{/privacy} + followers_url: https://api.github.com/users/scottrigby/followers + following_url: https://api.github.com/users/scottrigby/following{/other_user} + gists_url: https://api.github.com/users/scottrigby/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/scottrigby + id: 407675 + login: scottrigby + node_id: MDQ6VXNlcjQwNzY3NQ== + organizations_url: https://api.github.com/users/scottrigby/orgs + received_events_url: https://api.github.com/users/scottrigby/received_events + repos_url: https://api.github.com/users/scottrigby/repos + site_admin: false + starred_url: https://api.github.com/users/scottrigby/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/scottrigby/subscriptions + type: User + url: https://api.github.com/users/scottrigby + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/371882523 + - browser_download_url: https://github.com/helm/helm/releases/download/v4.1.3/helm-v4.1.3-windows-arm64.zip.sha256.asc + content_type: application/octet-stream + created_at: "2026-03-11T23:01:19Z" + digest: sha256:1ee03176cc61a4205957cfcb8c5749cf38049bb5c3aa73098623ef95cf1e0d79 + download_count: 0 + id: 371882525 + label: null + name: helm-v4.1.3-windows-arm64.zip.sha256.asc + node_id: RA_kwDOApspmc4WKnod + size: 833 + state: uploaded + updated_at: "2026-03-11T23:01:19Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/407675?v=4 + events_url: https://api.github.com/users/scottrigby/events{/privacy} + followers_url: https://api.github.com/users/scottrigby/followers + following_url: https://api.github.com/users/scottrigby/following{/other_user} + gists_url: https://api.github.com/users/scottrigby/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/scottrigby + id: 407675 + login: scottrigby + node_id: MDQ6VXNlcjQwNzY3NQ== + organizations_url: https://api.github.com/users/scottrigby/orgs + received_events_url: https://api.github.com/users/scottrigby/received_events + repos_url: https://api.github.com/users/scottrigby/repos + site_admin: false + starred_url: https://api.github.com/users/scottrigby/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/scottrigby/subscriptions + type: User + url: https://api.github.com/users/scottrigby + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/371882525 + - browser_download_url: https://github.com/helm/helm/releases/download/v4.1.3/helm-v4.1.3-windows-arm64.zip.sha256sum.asc + content_type: application/octet-stream + created_at: "2026-03-11T23:01:19Z" + digest: sha256:d1ec30b38ca85f40cdba91a0668d90ef2ac315953e2f488f6658708783a3af21 + download_count: 0 + id: 371882528 + label: null + name: helm-v4.1.3-windows-arm64.zip.sha256sum.asc + node_id: RA_kwDOApspmc4WKnog + size: 833 + state: uploaded + updated_at: "2026-03-11T23:01:20Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/407675?v=4 + events_url: https://api.github.com/users/scottrigby/events{/privacy} + followers_url: https://api.github.com/users/scottrigby/followers + following_url: https://api.github.com/users/scottrigby/following{/other_user} + gists_url: https://api.github.com/users/scottrigby/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/scottrigby + id: 407675 + login: scottrigby + node_id: MDQ6VXNlcjQwNzY3NQ== + organizations_url: https://api.github.com/users/scottrigby/orgs + received_events_url: https://api.github.com/users/scottrigby/received_events + repos_url: https://api.github.com/users/scottrigby/repos + site_admin: false + starred_url: https://api.github.com/users/scottrigby/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/scottrigby/subscriptions + type: User + url: https://api.github.com/users/scottrigby + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/371882528 + assets_url: https://api.github.com/repos/helm/helm/releases/295911285/assets + author: + avatar_url: https://avatars.githubusercontent.com/u/407675?v=4 + events_url: https://api.github.com/users/scottrigby/events{/privacy} + followers_url: https://api.github.com/users/scottrigby/followers + following_url: https://api.github.com/users/scottrigby/following{/other_user} + gists_url: https://api.github.com/users/scottrigby/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/scottrigby + id: 407675 + login: scottrigby + node_id: MDQ6VXNlcjQwNzY3NQ== + organizations_url: https://api.github.com/users/scottrigby/orgs + received_events_url: https://api.github.com/users/scottrigby/received_events + repos_url: https://api.github.com/users/scottrigby/repos + site_admin: false + starred_url: https://api.github.com/users/scottrigby/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/scottrigby/subscriptions + type: User + url: https://api.github.com/users/scottrigby + user_view_type: public + body: "Helm v4.1.3 is a patch release. Users are encouraged to upgrade for + the best experience.\r\n\r\nThe community keeps growing, and we'd love + to see you there!\r\n\r\n- Join the discussion in [Kubernetes Slack](https://kubernetes.slack.com):\r\n + \ - for questions and just to hang out\r\n - for discussing PRs, code, + and bugs\r\n- Hang out at the Public Developer Call: Thursday, 9:30 Pacific + via [Zoom](https://zoom.us/j/696660622)\r\n- Test, debug, and contribute + charts: [ArtifactHub/packages](https://artifacthub.io/packages/search?kind=0)\r\n\r\n## + Notable Changes\r\n\r\n- Fixed a bug where --dry-run=server was not respecting + generateName #31563\r\n- Fixed a bug where empty CRD resources caused + a crash. Now it prints an error #31578 \r\n- Fixed a bug where OCI references + with tag+digest failed with \"invalid byte\" error #31601\r\n- Fixed a + regression in Helm 4, where user-provided nil value was not preserved + when chart has an empty map or no default for a key #31644 \r\n- Fixed + a regression since Helm 3.18.0 where Pulling charts from OCI repositories + that use an index to store both Container Images and Helm Charts under + the same tag failed #31776 \r\n- Fixed a Helm 4 regression where gotemplate + white space trimming directly after YAML doc separators, when present + after postrendering, caused YAML file corruption #31868 \r\n- Fixed a + bug where `FailedStatus` is treated as a terminal state, causing upgrades + to fail prematurely when cluster autoscalers needed time to provision + nodes, or when pods were being deleted during rolling updates #31897 \r\n- + Fixed broken backwards compatibility for deprecated `--atomic` flag on + install command #31901\r\n- SDK: Fixed a Windows 'Access Deined' error + if multiple processes try to download the same chart version concurrently + #31128\r\n- SDK: Fixed a bug where users did not receive any logs from + the waiter, causing confusion as several minutes could pass with no user + feedback #31717\r\n- SDK: Fixed a bug where server-side apply defaults + did not always match the CLI defaults #31732\r\n- SDK: Fixed a Go import + issue when downstream tooling attempted to vendor helm.sh/helm/v4/pkg/kube + #31852 \r\n\r\n## Installation and Upgrading\r\n\r\nDownload Helm v4.1.3. + The common platform binaries are here:\r\n\r\n- [MacOS amd64](https://get.helm.sh/helm-v4.1.3-darwin-amd64.tar.gz) + ([checksum](https://get.helm.sh/helm-v4.1.3-darwin-amd64.tar.gz.sha256sum) + / 742132e11cc08a81c97f70180cd714ae8376f8c896247a7b14ae1f51838b5a0b)\r\n- + [MacOS arm64](https://get.helm.sh/helm-v4.1.3-darwin-arm64.tar.gz) ([checksum](https://get.helm.sh/helm-v4.1.3-darwin-arm64.tar.gz.sha256sum) + / 21c02fe2f7e27d08e24a6bf93103f9d2b25aab6f13f91814b2cfabc99b108a5e)\r\n- + [Linux amd64](https://get.helm.sh/helm-v4.1.3-linux-amd64.tar.gz) ([checksum](https://get.helm.sh/helm-v4.1.3-linux-amd64.tar.gz.sha256sum) + / 02ce9722d541238f81459938b84cf47df2fdf1187493b4bfb2346754d82a4700)\r\n- + [Linux arm](https://get.helm.sh/helm-v4.1.3-linux-arm.tar.gz) ([checksum](https://get.helm.sh/helm-v4.1.3-linux-arm.tar.gz.sha256sum) + / 5ea614cd1562e682e213e07f3632b76f9d7b4b0917918e820c515a9030a59951)\r\n- + [Linux arm64](https://get.helm.sh/helm-v4.1.3-linux-arm64.tar.gz) ([checksum](https://get.helm.sh/helm-v4.1.3-linux-arm64.tar.gz.sha256sum) + / 5db45e027cc8de4677ec869e5d803fc7631b0bab1c1eb62ac603a62d22359a43)\r\n- + [Linux i386](https://get.helm.sh/helm-v4.1.3-linux-386.tar.gz) ([checksum](https://get.helm.sh/helm-v4.1.3-linux-386.tar.gz.sha256sum) + / 6cbf1f7cca1f4917a0d4a593a22b7c6ec88207e159196eac94f8eaaad8730431)\r\n- + [Linux loong64](https://get.helm.sh/helm-v4.1.3-linux-loong64.tar.gz) + ([checksum](https://get.helm.sh/helm-v4.1.3-linux-loong64.tar.gz.sha256sum) + / \uFEFFBlobNotFoundThe + specified blob does not exist.\r\nRequestId:a97d6fdb-301e-0045-72a5-b120d7000000\r\nTime:2026-03-11T22:20:16.6057319Z)\r\n- + [Linux ppc64le](https://get.helm.sh/helm-v4.1.3-linux-ppc64le.tar.gz) + ([checksum](https://get.helm.sh/helm-v4.1.3-linux-ppc64le.tar.gz.sha256sum) + / 413c21ea07f85beb952807b45cafbcd3bb0ff50aa3ed66e8e87b47bebf2312ce)\r\n- + [Linux s390x](https://get.helm.sh/helm-v4.1.3-linux-s390x.tar.gz) ([checksum](https://get.helm.sh/helm-v4.1.3-linux-s390x.tar.gz.sha256sum) + / c1a5c613429ca50e70ebed3e7535d272805ed4a7aa61c1af20d85121a07e7bcd)\r\n- + [Linux riscv64](https://get.helm.sh/helm-v4.1.3-linux-riscv64.tar.gz) + ([checksum](https://get.helm.sh/helm-v4.1.3-linux-riscv64.tar.gz.sha256sum) + / 0a0beb5b30c24947d71586a7c6bcd774e207ce42b072b046513cf0cff46106a8)\r\n- + [Windows amd64](https://get.helm.sh/helm-v4.1.3-windows-amd64.zip) ([checksum](https://get.helm.sh/helm-v4.1.3-windows-amd64.zip.sha256sum) + / a69356c872fca122650e8c392341c5c49c19da004353514611118087ea2ee7cf)\r\n- + [Windows arm64](https://get.helm.sh/helm-v4.1.3-windows-arm64.zip) ([checksum](https://get.helm.sh/helm-v4.1.3-windows-arm64.zip.sha256sum) + / 6b05bec8659014df56ede28068a216451b6401d0fbbfd2dadffbef908cd03ff5)\r\n\r\nThis + release was signed with `208D D36E D5BB 3745 A167 43A4 C7C6 FBB5 B91C + 1155` and can be found at @scottrigby [keybase account](https://keybase.io/r6by). + Please use the attached signatures for verifying this release using `gpg`.\r\n\r\nThe + [Quickstart Guide](https://helm.sh/docs/intro/quickstart/) will get you + going from there. For **upgrade instructions** or detailed installation + notes, check the [install guide](https://helm.sh/docs/intro/install/). + You can also use a [script to install](https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3) + on any system with `bash`.\r\n\r\n## What's Next\r\n\r\n- 4.2.0 and 3.21.0 + are the next minor releases and will be on May 13, 2026\r\n- 4.1.4 and + 3.20.2 are the next patch releases and will be on April 8, 2026\r\n\r\n## + Changelog\r\n\r\n- chore(defaults): server-side apply SDK defaults should + always match the CLI defaults c94d381b03be117e7e57908edbf642104e00eb8f + (Matheus Pimenta)\r\n- whitespace b36d660fb7a5a162d59dcc7877af190b477ecf2b + (Austin Abro)\r\n- use logger with waiter 04a91af89e185fb2ff08592057726d54fdd22471 + (Austin Abro)\r\n- Remove refactorring changes from coalesce_test.go c3c57dba9878074a7642f2cdf583e809bba7f96e + (Evans Mungai)\r\n- Fix import d47cb2b7efaa26090510f4c2289127f40451062e + (Evans Mungai)\r\n- Update pkg/chart/common/util/coalesce_test.go 790bf929d5d341df663e0219338fcbf0d5a3119b + (Evans Mungai)\r\n- Fix lint warning f7cec12e23fe800495814432da4368b54c6d4552 + (Evans Mungai)\r\n- Preserve nil values in chart already d94a5c97cbff6b8e857c578ac7fd29407aa60907 + (Evans Mungai)\r\n- fix(values): preserve nil values when chart default + is empty map 8c5fe4ef9781c714dc121288a4d499e62cc10bf8 (Evans Mungai)\r\n- + chore(deps): bump github.com/cloudflare/circl from 1.6.1 to 1.6.3 217db28a4b75bff615275dc1e3975cf4d389c1d9 + (dependabot[bot])\r\n- Restored --atomic flag on install command 7cb43e0c58d8ccf18ca54eadb8d8d6cfb14c06f7 + (Travis Leeden)\r\n- fix: bump go.opentelemetry.io/otel/sdk to v1.40.0 + for GO-2026-4394 5b26d4f1f99091262fef50ed51133e7ae8e3b011 (Terry Howe)\r\n- + fix: bump fluxcd/cli-utils to v0.37.2-flux.1 360c1315ba2d468fcff77193f52764c6ad912c90 + (Terry Howe)\r\n- chore(deps): bump sigs.k8s.io/kustomize/kyaml from 0.21.0 + to 0.21.1 69a0a92ae3025cb00b480cb1084670d84b9fa018 (dependabot[bot])\r\n- + fix: insert newline after doc separators glued to content by template + trimming b868e6a7cce696744d3f0c87e3f6bba6a779aff3 (Matheus Pimenta)\r\n- + fix: correct import comment in statuswait.go from v3 to v4 dbfbea91e34220911481f82fc6831284d954959a + (rohansood10)\r\n- chore(deps): bump the k8s-io group with 7 updates 099192c285233653032e13f557e1b4a7c31e046b + (dependabot[bot])\r\n- add image index test 4967ead76215e2ea694c37164d14520da9ba8bde + (Pedro TĆ“rres)\r\n- fix pulling charts from OCI indices 2fe6b106e6d515b6792d53aff517489ae97387be + (Pedro TĆ“rres)\r\n- fix: handle OCI digest algorithm prefix in chart downloader + (#31601) e3e2d01ef45c6e4179d0536ea4a475f18fa23846 (Evans Mungai)\r\n- + fix(install): check nil for restClientGetter and fix tests c15e7114dc0a0f24e0fda65dff83e7a18e264f60 + (Manuel Alonso)\r\n- chore(refactor): better testing and functionality + for installing crd df82e68ce1cac6825a59ed43d68d7560d6426979 (Manuel Alonso)\r\n- + fix(test): fix tests and check nil for restclient 4b896ca82fa827760086998d6521965e0ace059f + (Manuel Alonso)\r\n- fix(test): merge fix correctly 3fc79399c8af02b6704c10cba14be2ced9497cb2 + (Manuel Alonso Gonzalez)\r\n- fix(install): add more tests and check nil + file data 6017d2b470b07a4f55efd2c55ac0745203ddcd0b (Manuel Alonso)\r\n- + fix(test): no check empty resources f451967ab5a5a9b1a26deb699bd1a1f4f2ba6b1e + (Manuel Alonso)\r\n- fix(install): check lenght and file nil, add tests + fdadff59eb8c3552de76c7647a9c787c248cdbd2 (Manuel Alonso)\r\n- fix(action): + crd resources can be empty 10d606726560f1e813617c050c7b9cfbb8b0cb26 (Manuel + Alonso)\r\n- fix: casing issue fixed 0fec40f9b61a1dc5799e67bd4fb4ea4321cdd836 + (Mujib Ahasan)\r\n- fix: error handled correctly 263749874cb21ba31ebca17fe6c19fb3d0379417 + (Mujib Ahasan)\r\n- fix: doc string added 961d7d7cd6b39ccc3a63bce7bba505b94a9be384 + (Mujib Ahasan)\r\n- update: test coverage added for helper function validateNameAndGenerateName + 29e45067f3f5a772c1400eb756605ba3bc615176 (Mujib Ahasan)\r\n- update: helper + function added for the business logic d55b0b9022017aa7a5005d1c6bdc049872bc37f7 + (Mujib Ahasan)\r\n- generateName is also considered in logic c1c090e8cead42ee16c36f987f2534c543b556fc + (Mujib Ahasan)\r\n- update: business logic respected for skipping object + missing name 5e093136f456232f0c80c4d2481e5191b3c72530 (Mujib Ahasan)\r\n- + fixed: --dry-run=server now respect generateName f289d1605c9f02c843dd1b5dd03221fdb980f28e + (Mujib Ahasan)\r\n- fix(downloader): safely handle concurrent file writes + on Windows bfac7393e4cc8b22a36fb015264d10ddb30e03da (Orgad Shaneh)" + created_at: "2026-03-11T22:10:37Z" + draft: false + html_url: https://github.com/helm/helm/releases/tag/v4.1.3 + id: 295911285 + immutable: false + mentions_count: 1 + name: Helm 4.1.3 + node_id: RE_kwDOApspmc4Roz91 + prerelease: false + published_at: "2026-03-11T23:01:58Z" + tag_name: v4.1.3 + tarball_url: https://api.github.com/repos/helm/helm/tarball/v4.1.3 + target_commitish: main + updated_at: "2026-03-11T23:01:58Z" + upload_url: https://uploads.github.com/repos/helm/helm/releases/295911285/assets{?name,label} + url: https://api.github.com/repos/helm/helm/releases/295911285 + zipball_url: https://api.github.com/repos/helm/helm/zipball/v4.1.3 + 4.1.4: + githubRelease: + assets: + - browser_download_url: https://github.com/helm/helm/releases/download/v4.1.4/helm-v4.1.4-darwin-amd64.tar.gz.asc + content_type: application/octet-stream + created_at: "2026-04-09T06:00:06Z" + digest: sha256:04716c4fac18472403680e5f161cb0dde71a8b9f831dbe54c4c46ead7958cd32 + download_count: 3 + id: 392164314 + label: null + name: helm-v4.1.4-darwin-amd64.tar.gz.asc + node_id: RA_kwDOApspmc4XX_Pa + size: 265 + state: uploaded + updated_at: "2026-04-09T06:00:07Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/2787248?v=4 + events_url: https://api.github.com/users/gjenkins8/events{/privacy} + followers_url: https://api.github.com/users/gjenkins8/followers + following_url: https://api.github.com/users/gjenkins8/following{/other_user} + gists_url: https://api.github.com/users/gjenkins8/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/gjenkins8 + id: 2787248 + login: gjenkins8 + node_id: MDQ6VXNlcjI3ODcyNDg= + organizations_url: https://api.github.com/users/gjenkins8/orgs + received_events_url: https://api.github.com/users/gjenkins8/received_events + repos_url: https://api.github.com/users/gjenkins8/repos + site_admin: false + starred_url: https://api.github.com/users/gjenkins8/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/gjenkins8/subscriptions + type: User + url: https://api.github.com/users/gjenkins8 + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/392164314 + - browser_download_url: https://github.com/helm/helm/releases/download/v4.1.4/helm-v4.1.4-darwin-amd64.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2026-04-09T06:00:07Z" + digest: sha256:a331930bbfbaab89dc7ec61d420989d022a1ec96aa12e5d52d126466638d1b26 + download_count: 4 + id: 392164318 + label: null + name: helm-v4.1.4-darwin-amd64.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4XX_Pe + size: 265 + state: uploaded + updated_at: "2026-04-09T06:00:07Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/2787248?v=4 + events_url: https://api.github.com/users/gjenkins8/events{/privacy} + followers_url: https://api.github.com/users/gjenkins8/followers + following_url: https://api.github.com/users/gjenkins8/following{/other_user} + gists_url: https://api.github.com/users/gjenkins8/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/gjenkins8 + id: 2787248 + login: gjenkins8 + node_id: MDQ6VXNlcjI3ODcyNDg= + organizations_url: https://api.github.com/users/gjenkins8/orgs + received_events_url: https://api.github.com/users/gjenkins8/received_events + repos_url: https://api.github.com/users/gjenkins8/repos + site_admin: false + starred_url: https://api.github.com/users/gjenkins8/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/gjenkins8/subscriptions + type: User + url: https://api.github.com/users/gjenkins8 + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/392164318 + - browser_download_url: https://github.com/helm/helm/releases/download/v4.1.4/helm-v4.1.4-darwin-amd64.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2026-04-09T06:00:07Z" + digest: sha256:f040ad72fe0e0c8238451c2ddc9699eccc2fa91ef2c7e68c2191e2a44ba72f82 + download_count: 4 + id: 392164322 + label: null + name: helm-v4.1.4-darwin-amd64.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4XX_Pi + size: 265 + state: uploaded + updated_at: "2026-04-09T06:00:07Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/2787248?v=4 + events_url: https://api.github.com/users/gjenkins8/events{/privacy} + followers_url: https://api.github.com/users/gjenkins8/followers + following_url: https://api.github.com/users/gjenkins8/following{/other_user} + gists_url: https://api.github.com/users/gjenkins8/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/gjenkins8 + id: 2787248 + login: gjenkins8 + node_id: MDQ6VXNlcjI3ODcyNDg= + organizations_url: https://api.github.com/users/gjenkins8/orgs + received_events_url: https://api.github.com/users/gjenkins8/received_events + repos_url: https://api.github.com/users/gjenkins8/repos + site_admin: false + starred_url: https://api.github.com/users/gjenkins8/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/gjenkins8/subscriptions + type: User + url: https://api.github.com/users/gjenkins8 + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/392164322 + - browser_download_url: https://github.com/helm/helm/releases/download/v4.1.4/helm-v4.1.4-darwin-arm64.tar.gz.asc + content_type: application/octet-stream + created_at: "2026-04-09T06:00:07Z" + digest: sha256:be20a9cfb4ac20ba0b1b3acd96e86a0a77380464a3dc84e44fa80e348c4de242 + download_count: 3 + id: 392164327 + label: null + name: helm-v4.1.4-darwin-arm64.tar.gz.asc + node_id: RA_kwDOApspmc4XX_Pn + size: 265 + state: uploaded + updated_at: "2026-04-09T06:00:08Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/2787248?v=4 + events_url: https://api.github.com/users/gjenkins8/events{/privacy} + followers_url: https://api.github.com/users/gjenkins8/followers + following_url: https://api.github.com/users/gjenkins8/following{/other_user} + gists_url: https://api.github.com/users/gjenkins8/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/gjenkins8 + id: 2787248 + login: gjenkins8 + node_id: MDQ6VXNlcjI3ODcyNDg= + organizations_url: https://api.github.com/users/gjenkins8/orgs + received_events_url: https://api.github.com/users/gjenkins8/received_events + repos_url: https://api.github.com/users/gjenkins8/repos + site_admin: false + starred_url: https://api.github.com/users/gjenkins8/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/gjenkins8/subscriptions + type: User + url: https://api.github.com/users/gjenkins8 + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/392164327 + - browser_download_url: https://github.com/helm/helm/releases/download/v4.1.4/helm-v4.1.4-darwin-arm64.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2026-04-09T06:00:08Z" + digest: sha256:8e70f07d0642ac1541953f612e295c506b711d5b7f6c6d0ef4a8ce0d19dc5df6 + download_count: 4 + id: 392164329 + label: null + name: helm-v4.1.4-darwin-arm64.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4XX_Pp + size: 265 + state: uploaded + updated_at: "2026-04-09T06:00:08Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/2787248?v=4 + events_url: https://api.github.com/users/gjenkins8/events{/privacy} + followers_url: https://api.github.com/users/gjenkins8/followers + following_url: https://api.github.com/users/gjenkins8/following{/other_user} + gists_url: https://api.github.com/users/gjenkins8/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/gjenkins8 + id: 2787248 + login: gjenkins8 + node_id: MDQ6VXNlcjI3ODcyNDg= + organizations_url: https://api.github.com/users/gjenkins8/orgs + received_events_url: https://api.github.com/users/gjenkins8/received_events + repos_url: https://api.github.com/users/gjenkins8/repos + site_admin: false + starred_url: https://api.github.com/users/gjenkins8/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/gjenkins8/subscriptions + type: User + url: https://api.github.com/users/gjenkins8 + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/392164329 + - browser_download_url: https://github.com/helm/helm/releases/download/v4.1.4/helm-v4.1.4-darwin-arm64.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2026-04-09T06:00:08Z" + digest: sha256:0c808236c18b1ef7c381efa198ac8a1803127afadce3567229dd40a079be344f + download_count: 4 + id: 392164332 + label: null + name: helm-v4.1.4-darwin-arm64.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4XX_Ps + size: 265 + state: uploaded + updated_at: "2026-04-09T06:00:08Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/2787248?v=4 + events_url: https://api.github.com/users/gjenkins8/events{/privacy} + followers_url: https://api.github.com/users/gjenkins8/followers + following_url: https://api.github.com/users/gjenkins8/following{/other_user} + gists_url: https://api.github.com/users/gjenkins8/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/gjenkins8 + id: 2787248 + login: gjenkins8 + node_id: MDQ6VXNlcjI3ODcyNDg= + organizations_url: https://api.github.com/users/gjenkins8/orgs + received_events_url: https://api.github.com/users/gjenkins8/received_events + repos_url: https://api.github.com/users/gjenkins8/repos + site_admin: false + starred_url: https://api.github.com/users/gjenkins8/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/gjenkins8/subscriptions + type: User + url: https://api.github.com/users/gjenkins8 + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/392164332 + - browser_download_url: https://github.com/helm/helm/releases/download/v4.1.4/helm-v4.1.4-linux-386.tar.gz.asc + content_type: application/octet-stream + created_at: "2026-04-09T06:00:08Z" + digest: sha256:352f9290f18972cb08d2f5682f745158812cccf99689e8a88834659e4c23f107 + download_count: 3 + id: 392164334 + label: null + name: helm-v4.1.4-linux-386.tar.gz.asc + node_id: RA_kwDOApspmc4XX_Pu + size: 265 + state: uploaded + updated_at: "2026-04-09T06:00:09Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/2787248?v=4 + events_url: https://api.github.com/users/gjenkins8/events{/privacy} + followers_url: https://api.github.com/users/gjenkins8/followers + following_url: https://api.github.com/users/gjenkins8/following{/other_user} + gists_url: https://api.github.com/users/gjenkins8/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/gjenkins8 + id: 2787248 + login: gjenkins8 + node_id: MDQ6VXNlcjI3ODcyNDg= + organizations_url: https://api.github.com/users/gjenkins8/orgs + received_events_url: https://api.github.com/users/gjenkins8/received_events + repos_url: https://api.github.com/users/gjenkins8/repos + site_admin: false + starred_url: https://api.github.com/users/gjenkins8/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/gjenkins8/subscriptions + type: User + url: https://api.github.com/users/gjenkins8 + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/392164334 + - browser_download_url: https://github.com/helm/helm/releases/download/v4.1.4/helm-v4.1.4-linux-386.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2026-04-09T06:00:09Z" + digest: sha256:03c4be1db258437aae29a9fddb63f09cd26facdc9917928f07667141e4688270 + download_count: 4 + id: 392164336 + label: null + name: helm-v4.1.4-linux-386.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4XX_Pw + size: 265 + state: uploaded + updated_at: "2026-04-09T06:00:09Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/2787248?v=4 + events_url: https://api.github.com/users/gjenkins8/events{/privacy} + followers_url: https://api.github.com/users/gjenkins8/followers + following_url: https://api.github.com/users/gjenkins8/following{/other_user} + gists_url: https://api.github.com/users/gjenkins8/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/gjenkins8 + id: 2787248 + login: gjenkins8 + node_id: MDQ6VXNlcjI3ODcyNDg= + organizations_url: https://api.github.com/users/gjenkins8/orgs + received_events_url: https://api.github.com/users/gjenkins8/received_events + repos_url: https://api.github.com/users/gjenkins8/repos + site_admin: false + starred_url: https://api.github.com/users/gjenkins8/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/gjenkins8/subscriptions + type: User + url: https://api.github.com/users/gjenkins8 + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/392164336 + - browser_download_url: https://github.com/helm/helm/releases/download/v4.1.4/helm-v4.1.4-linux-386.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2026-04-09T06:00:09Z" + digest: sha256:063a7f2faa36d7be37fe361ec509061b5493b5dca51174d9d291f17366680709 + download_count: 4 + id: 392164338 + label: null + name: helm-v4.1.4-linux-386.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4XX_Py + size: 265 + state: uploaded + updated_at: "2026-04-09T06:00:10Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/2787248?v=4 + events_url: https://api.github.com/users/gjenkins8/events{/privacy} + followers_url: https://api.github.com/users/gjenkins8/followers + following_url: https://api.github.com/users/gjenkins8/following{/other_user} + gists_url: https://api.github.com/users/gjenkins8/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/gjenkins8 + id: 2787248 + login: gjenkins8 + node_id: MDQ6VXNlcjI3ODcyNDg= + organizations_url: https://api.github.com/users/gjenkins8/orgs + received_events_url: https://api.github.com/users/gjenkins8/received_events + repos_url: https://api.github.com/users/gjenkins8/repos + site_admin: false + starred_url: https://api.github.com/users/gjenkins8/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/gjenkins8/subscriptions + type: User + url: https://api.github.com/users/gjenkins8 + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/392164338 + - browser_download_url: https://github.com/helm/helm/releases/download/v4.1.4/helm-v4.1.4-linux-amd64.tar.gz.asc + content_type: application/octet-stream + created_at: "2026-04-09T06:00:10Z" + digest: sha256:3d07ca2ee9697589dc072e8da4b8510681e30a79db1f57ae5f143d1cd601efdd + download_count: 19 + id: 392164344 + label: null + name: helm-v4.1.4-linux-amd64.tar.gz.asc + node_id: RA_kwDOApspmc4XX_P4 + size: 265 + state: uploaded + updated_at: "2026-04-09T06:00:10Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/2787248?v=4 + events_url: https://api.github.com/users/gjenkins8/events{/privacy} + followers_url: https://api.github.com/users/gjenkins8/followers + following_url: https://api.github.com/users/gjenkins8/following{/other_user} + gists_url: https://api.github.com/users/gjenkins8/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/gjenkins8 + id: 2787248 + login: gjenkins8 + node_id: MDQ6VXNlcjI3ODcyNDg= + organizations_url: https://api.github.com/users/gjenkins8/orgs + received_events_url: https://api.github.com/users/gjenkins8/received_events + repos_url: https://api.github.com/users/gjenkins8/repos + site_admin: false + starred_url: https://api.github.com/users/gjenkins8/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/gjenkins8/subscriptions + type: User + url: https://api.github.com/users/gjenkins8 + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/392164344 + - browser_download_url: https://github.com/helm/helm/releases/download/v4.1.4/helm-v4.1.4-linux-amd64.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2026-04-09T06:00:10Z" + digest: sha256:42d4c8d61a69d47b07853472e8ad276f988c1661aaa26bc39d71cd8f4d11f7ae + download_count: 18 + id: 392164347 + label: null + name: helm-v4.1.4-linux-amd64.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4XX_P7 + size: 265 + state: uploaded + updated_at: "2026-04-09T06:00:10Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/2787248?v=4 + events_url: https://api.github.com/users/gjenkins8/events{/privacy} + followers_url: https://api.github.com/users/gjenkins8/followers + following_url: https://api.github.com/users/gjenkins8/following{/other_user} + gists_url: https://api.github.com/users/gjenkins8/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/gjenkins8 + id: 2787248 + login: gjenkins8 + node_id: MDQ6VXNlcjI3ODcyNDg= + organizations_url: https://api.github.com/users/gjenkins8/orgs + received_events_url: https://api.github.com/users/gjenkins8/received_events + repos_url: https://api.github.com/users/gjenkins8/repos + site_admin: false + starred_url: https://api.github.com/users/gjenkins8/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/gjenkins8/subscriptions + type: User + url: https://api.github.com/users/gjenkins8 + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/392164347 + - browser_download_url: https://github.com/helm/helm/releases/download/v4.1.4/helm-v4.1.4-linux-amd64.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2026-04-09T06:00:10Z" + digest: sha256:fe507554b5c5af0afa091c729a1edb389641aefe815715c63063fa11447644b7 + download_count: 4 + id: 392164349 + label: null + name: helm-v4.1.4-linux-amd64.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4XX_P9 + size: 265 + state: uploaded + updated_at: "2026-04-09T06:00:11Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/2787248?v=4 + events_url: https://api.github.com/users/gjenkins8/events{/privacy} + followers_url: https://api.github.com/users/gjenkins8/followers + following_url: https://api.github.com/users/gjenkins8/following{/other_user} + gists_url: https://api.github.com/users/gjenkins8/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/gjenkins8 + id: 2787248 + login: gjenkins8 + node_id: MDQ6VXNlcjI3ODcyNDg= + organizations_url: https://api.github.com/users/gjenkins8/orgs + received_events_url: https://api.github.com/users/gjenkins8/received_events + repos_url: https://api.github.com/users/gjenkins8/repos + site_admin: false + starred_url: https://api.github.com/users/gjenkins8/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/gjenkins8/subscriptions + type: User + url: https://api.github.com/users/gjenkins8 + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/392164349 + - browser_download_url: https://github.com/helm/helm/releases/download/v4.1.4/helm-v4.1.4-linux-arm.tar.gz.asc + content_type: application/octet-stream + created_at: "2026-04-09T06:00:11Z" + digest: sha256:67b4d2370aff2242d1aa89cef647db0153b9298d7a8307a98f650be78d2eef33 + download_count: 3 + id: 392164351 + label: null + name: helm-v4.1.4-linux-arm.tar.gz.asc + node_id: RA_kwDOApspmc4XX_P_ + size: 265 + state: uploaded + updated_at: "2026-04-09T06:00:11Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/2787248?v=4 + events_url: https://api.github.com/users/gjenkins8/events{/privacy} + followers_url: https://api.github.com/users/gjenkins8/followers + following_url: https://api.github.com/users/gjenkins8/following{/other_user} + gists_url: https://api.github.com/users/gjenkins8/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/gjenkins8 + id: 2787248 + login: gjenkins8 + node_id: MDQ6VXNlcjI3ODcyNDg= + organizations_url: https://api.github.com/users/gjenkins8/orgs + received_events_url: https://api.github.com/users/gjenkins8/received_events + repos_url: https://api.github.com/users/gjenkins8/repos + site_admin: false + starred_url: https://api.github.com/users/gjenkins8/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/gjenkins8/subscriptions + type: User + url: https://api.github.com/users/gjenkins8 + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/392164351 + - browser_download_url: https://github.com/helm/helm/releases/download/v4.1.4/helm-v4.1.4-linux-arm.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2026-04-09T06:00:11Z" + digest: sha256:8d9f35075f7e93722e8cc52dfc2967c65a5f866269368e3da721506e76b42e37 + download_count: 4 + id: 392164352 + label: null + name: helm-v4.1.4-linux-arm.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4XX_QA + size: 265 + state: uploaded + updated_at: "2026-04-09T06:00:11Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/2787248?v=4 + events_url: https://api.github.com/users/gjenkins8/events{/privacy} + followers_url: https://api.github.com/users/gjenkins8/followers + following_url: https://api.github.com/users/gjenkins8/following{/other_user} + gists_url: https://api.github.com/users/gjenkins8/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/gjenkins8 + id: 2787248 + login: gjenkins8 + node_id: MDQ6VXNlcjI3ODcyNDg= + organizations_url: https://api.github.com/users/gjenkins8/orgs + received_events_url: https://api.github.com/users/gjenkins8/received_events + repos_url: https://api.github.com/users/gjenkins8/repos + site_admin: false + starred_url: https://api.github.com/users/gjenkins8/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/gjenkins8/subscriptions + type: User + url: https://api.github.com/users/gjenkins8 + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/392164352 + - browser_download_url: https://github.com/helm/helm/releases/download/v4.1.4/helm-v4.1.4-linux-arm.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2026-04-09T06:00:11Z" + digest: sha256:9dbef1d8457b41a0a7b67f068e83f64bc0d17420933065344062836a11327b85 + download_count: 4 + id: 392164360 + label: null + name: helm-v4.1.4-linux-arm.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4XX_QI + size: 265 + state: uploaded + updated_at: "2026-04-09T06:00:12Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/2787248?v=4 + events_url: https://api.github.com/users/gjenkins8/events{/privacy} + followers_url: https://api.github.com/users/gjenkins8/followers + following_url: https://api.github.com/users/gjenkins8/following{/other_user} + gists_url: https://api.github.com/users/gjenkins8/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/gjenkins8 + id: 2787248 + login: gjenkins8 + node_id: MDQ6VXNlcjI3ODcyNDg= + organizations_url: https://api.github.com/users/gjenkins8/orgs + received_events_url: https://api.github.com/users/gjenkins8/received_events + repos_url: https://api.github.com/users/gjenkins8/repos + site_admin: false + starred_url: https://api.github.com/users/gjenkins8/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/gjenkins8/subscriptions + type: User + url: https://api.github.com/users/gjenkins8 + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/392164360 + - browser_download_url: https://github.com/helm/helm/releases/download/v4.1.4/helm-v4.1.4-linux-arm64.tar.gz.asc + content_type: application/octet-stream + created_at: "2026-04-09T06:00:12Z" + digest: sha256:f7df3e644c30b667bc08a157579308c203bf89c53db058c9f8d7ef2c4ca570ea + download_count: 6 + id: 392164362 + label: null + name: helm-v4.1.4-linux-arm64.tar.gz.asc + node_id: RA_kwDOApspmc4XX_QK + size: 265 + state: uploaded + updated_at: "2026-04-09T06:00:12Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/2787248?v=4 + events_url: https://api.github.com/users/gjenkins8/events{/privacy} + followers_url: https://api.github.com/users/gjenkins8/followers + following_url: https://api.github.com/users/gjenkins8/following{/other_user} + gists_url: https://api.github.com/users/gjenkins8/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/gjenkins8 + id: 2787248 + login: gjenkins8 + node_id: MDQ6VXNlcjI3ODcyNDg= + organizations_url: https://api.github.com/users/gjenkins8/orgs + received_events_url: https://api.github.com/users/gjenkins8/received_events + repos_url: https://api.github.com/users/gjenkins8/repos + site_admin: false + starred_url: https://api.github.com/users/gjenkins8/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/gjenkins8/subscriptions + type: User + url: https://api.github.com/users/gjenkins8 + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/392164362 + - browser_download_url: https://github.com/helm/helm/releases/download/v4.1.4/helm-v4.1.4-linux-arm64.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2026-04-09T06:00:12Z" + digest: sha256:490f645cb7e5b1d9b27697926965302914771105c322bb107e3a0b496822875e + download_count: 7 + id: 392164364 + label: null + name: helm-v4.1.4-linux-arm64.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4XX_QM + size: 265 + state: uploaded + updated_at: "2026-04-09T06:00:12Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/2787248?v=4 + events_url: https://api.github.com/users/gjenkins8/events{/privacy} + followers_url: https://api.github.com/users/gjenkins8/followers + following_url: https://api.github.com/users/gjenkins8/following{/other_user} + gists_url: https://api.github.com/users/gjenkins8/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/gjenkins8 + id: 2787248 + login: gjenkins8 + node_id: MDQ6VXNlcjI3ODcyNDg= + organizations_url: https://api.github.com/users/gjenkins8/orgs + received_events_url: https://api.github.com/users/gjenkins8/received_events + repos_url: https://api.github.com/users/gjenkins8/repos + site_admin: false + starred_url: https://api.github.com/users/gjenkins8/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/gjenkins8/subscriptions + type: User + url: https://api.github.com/users/gjenkins8 + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/392164364 + - browser_download_url: https://github.com/helm/helm/releases/download/v4.1.4/helm-v4.1.4-linux-arm64.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2026-04-09T06:00:12Z" + digest: sha256:9408c3cf1d45542270fe8f95b7ae0a82b90453029d09df97cb23e5ef1bb355e3 + download_count: 4 + id: 392164368 + label: null + name: helm-v4.1.4-linux-arm64.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4XX_QQ + size: 265 + state: uploaded + updated_at: "2026-04-09T06:00:13Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/2787248?v=4 + events_url: https://api.github.com/users/gjenkins8/events{/privacy} + followers_url: https://api.github.com/users/gjenkins8/followers + following_url: https://api.github.com/users/gjenkins8/following{/other_user} + gists_url: https://api.github.com/users/gjenkins8/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/gjenkins8 + id: 2787248 + login: gjenkins8 + node_id: MDQ6VXNlcjI3ODcyNDg= + organizations_url: https://api.github.com/users/gjenkins8/orgs + received_events_url: https://api.github.com/users/gjenkins8/received_events + repos_url: https://api.github.com/users/gjenkins8/repos + site_admin: false + starred_url: https://api.github.com/users/gjenkins8/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/gjenkins8/subscriptions + type: User + url: https://api.github.com/users/gjenkins8 + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/392164368 + - browser_download_url: https://github.com/helm/helm/releases/download/v4.1.4/helm-v4.1.4-linux-ppc64le.tar.gz.asc + content_type: application/octet-stream + created_at: "2026-04-09T06:00:13Z" + digest: sha256:53f4212c6f9cc76019ccabbc7817fb47e69d346b3f7376bee2c15491d2f6662f + download_count: 3 + id: 392164371 + label: null + name: helm-v4.1.4-linux-ppc64le.tar.gz.asc + node_id: RA_kwDOApspmc4XX_QT + size: 265 + state: uploaded + updated_at: "2026-04-09T06:00:13Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/2787248?v=4 + events_url: https://api.github.com/users/gjenkins8/events{/privacy} + followers_url: https://api.github.com/users/gjenkins8/followers + following_url: https://api.github.com/users/gjenkins8/following{/other_user} + gists_url: https://api.github.com/users/gjenkins8/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/gjenkins8 + id: 2787248 + login: gjenkins8 + node_id: MDQ6VXNlcjI3ODcyNDg= + organizations_url: https://api.github.com/users/gjenkins8/orgs + received_events_url: https://api.github.com/users/gjenkins8/received_events + repos_url: https://api.github.com/users/gjenkins8/repos + site_admin: false + starred_url: https://api.github.com/users/gjenkins8/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/gjenkins8/subscriptions + type: User + url: https://api.github.com/users/gjenkins8 + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/392164371 + - browser_download_url: https://github.com/helm/helm/releases/download/v4.1.4/helm-v4.1.4-linux-ppc64le.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2026-04-09T06:00:13Z" + digest: sha256:bd0da113551040bd5fdb221ebde4a911951483cec885a046c56db9e1838934ef + download_count: 4 + id: 392164373 + label: null + name: helm-v4.1.4-linux-ppc64le.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4XX_QV + size: 265 + state: uploaded + updated_at: "2026-04-09T06:00:13Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/2787248?v=4 + events_url: https://api.github.com/users/gjenkins8/events{/privacy} + followers_url: https://api.github.com/users/gjenkins8/followers + following_url: https://api.github.com/users/gjenkins8/following{/other_user} + gists_url: https://api.github.com/users/gjenkins8/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/gjenkins8 + id: 2787248 + login: gjenkins8 + node_id: MDQ6VXNlcjI3ODcyNDg= + organizations_url: https://api.github.com/users/gjenkins8/orgs + received_events_url: https://api.github.com/users/gjenkins8/received_events + repos_url: https://api.github.com/users/gjenkins8/repos + site_admin: false + starred_url: https://api.github.com/users/gjenkins8/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/gjenkins8/subscriptions + type: User + url: https://api.github.com/users/gjenkins8 + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/392164373 + - browser_download_url: https://github.com/helm/helm/releases/download/v4.1.4/helm-v4.1.4-linux-ppc64le.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2026-04-09T06:00:13Z" + digest: sha256:84bb09229c025591a0e41c195eb6dd13087161a8f08272f99a4c6d92714a6898 + download_count: 4 + id: 392164377 + label: null + name: helm-v4.1.4-linux-ppc64le.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4XX_QZ + size: 265 + state: uploaded + updated_at: "2026-04-09T06:00:14Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/2787248?v=4 + events_url: https://api.github.com/users/gjenkins8/events{/privacy} + followers_url: https://api.github.com/users/gjenkins8/followers + following_url: https://api.github.com/users/gjenkins8/following{/other_user} + gists_url: https://api.github.com/users/gjenkins8/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/gjenkins8 + id: 2787248 + login: gjenkins8 + node_id: MDQ6VXNlcjI3ODcyNDg= + organizations_url: https://api.github.com/users/gjenkins8/orgs + received_events_url: https://api.github.com/users/gjenkins8/received_events + repos_url: https://api.github.com/users/gjenkins8/repos + site_admin: false + starred_url: https://api.github.com/users/gjenkins8/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/gjenkins8/subscriptions + type: User + url: https://api.github.com/users/gjenkins8 + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/392164377 + - browser_download_url: https://github.com/helm/helm/releases/download/v4.1.4/helm-v4.1.4-linux-riscv64.tar.gz.asc + content_type: application/octet-stream + created_at: "2026-04-09T06:00:14Z" + digest: sha256:31e2659edb7244a2c71b26f21c2768a16feadeb85244d4800606ad5f85813dd9 + download_count: 3 + id: 392164380 + label: null + name: helm-v4.1.4-linux-riscv64.tar.gz.asc + node_id: RA_kwDOApspmc4XX_Qc + size: 265 + state: uploaded + updated_at: "2026-04-09T06:00:14Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/2787248?v=4 + events_url: https://api.github.com/users/gjenkins8/events{/privacy} + followers_url: https://api.github.com/users/gjenkins8/followers + following_url: https://api.github.com/users/gjenkins8/following{/other_user} + gists_url: https://api.github.com/users/gjenkins8/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/gjenkins8 + id: 2787248 + login: gjenkins8 + node_id: MDQ6VXNlcjI3ODcyNDg= + organizations_url: https://api.github.com/users/gjenkins8/orgs + received_events_url: https://api.github.com/users/gjenkins8/received_events + repos_url: https://api.github.com/users/gjenkins8/repos + site_admin: false + starred_url: https://api.github.com/users/gjenkins8/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/gjenkins8/subscriptions + type: User + url: https://api.github.com/users/gjenkins8 + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/392164380 + - browser_download_url: https://github.com/helm/helm/releases/download/v4.1.4/helm-v4.1.4-linux-riscv64.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2026-04-09T06:00:14Z" + digest: sha256:abe3f45dd4108c83fcf55f0c3273935f698c39b223047d889bc87689aa78bf28 + download_count: 4 + id: 392164382 + label: null + name: helm-v4.1.4-linux-riscv64.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4XX_Qe + size: 265 + state: uploaded + updated_at: "2026-04-09T06:00:14Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/2787248?v=4 + events_url: https://api.github.com/users/gjenkins8/events{/privacy} + followers_url: https://api.github.com/users/gjenkins8/followers + following_url: https://api.github.com/users/gjenkins8/following{/other_user} + gists_url: https://api.github.com/users/gjenkins8/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/gjenkins8 + id: 2787248 + login: gjenkins8 + node_id: MDQ6VXNlcjI3ODcyNDg= + organizations_url: https://api.github.com/users/gjenkins8/orgs + received_events_url: https://api.github.com/users/gjenkins8/received_events + repos_url: https://api.github.com/users/gjenkins8/repos + site_admin: false + starred_url: https://api.github.com/users/gjenkins8/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/gjenkins8/subscriptions + type: User + url: https://api.github.com/users/gjenkins8 + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/392164382 + - browser_download_url: https://github.com/helm/helm/releases/download/v4.1.4/helm-v4.1.4-linux-riscv64.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2026-04-09T06:00:14Z" + digest: sha256:b1c7562096e0a6b4e343d9e82f3a5c98ac42c2290b11e156519297be15e84bef + download_count: 4 + id: 392164385 + label: null + name: helm-v4.1.4-linux-riscv64.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4XX_Qh + size: 265 + state: uploaded + updated_at: "2026-04-09T06:00:15Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/2787248?v=4 + events_url: https://api.github.com/users/gjenkins8/events{/privacy} + followers_url: https://api.github.com/users/gjenkins8/followers + following_url: https://api.github.com/users/gjenkins8/following{/other_user} + gists_url: https://api.github.com/users/gjenkins8/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/gjenkins8 + id: 2787248 + login: gjenkins8 + node_id: MDQ6VXNlcjI3ODcyNDg= + organizations_url: https://api.github.com/users/gjenkins8/orgs + received_events_url: https://api.github.com/users/gjenkins8/received_events + repos_url: https://api.github.com/users/gjenkins8/repos + site_admin: false + starred_url: https://api.github.com/users/gjenkins8/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/gjenkins8/subscriptions + type: User + url: https://api.github.com/users/gjenkins8 + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/392164385 + - browser_download_url: https://github.com/helm/helm/releases/download/v4.1.4/helm-v4.1.4-linux-s390x.tar.gz.asc + content_type: application/octet-stream + created_at: "2026-04-09T06:00:15Z" + digest: sha256:3f77cd31676fdc5681d71893e86d950cd466e0be9a5345e45bcf48306695e991 + download_count: 3 + id: 392164388 + label: null + name: helm-v4.1.4-linux-s390x.tar.gz.asc + node_id: RA_kwDOApspmc4XX_Qk + size: 265 + state: uploaded + updated_at: "2026-04-09T06:00:15Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/2787248?v=4 + events_url: https://api.github.com/users/gjenkins8/events{/privacy} + followers_url: https://api.github.com/users/gjenkins8/followers + following_url: https://api.github.com/users/gjenkins8/following{/other_user} + gists_url: https://api.github.com/users/gjenkins8/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/gjenkins8 + id: 2787248 + login: gjenkins8 + node_id: MDQ6VXNlcjI3ODcyNDg= + organizations_url: https://api.github.com/users/gjenkins8/orgs + received_events_url: https://api.github.com/users/gjenkins8/received_events + repos_url: https://api.github.com/users/gjenkins8/repos + site_admin: false + starred_url: https://api.github.com/users/gjenkins8/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/gjenkins8/subscriptions + type: User + url: https://api.github.com/users/gjenkins8 + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/392164388 + - browser_download_url: https://github.com/helm/helm/releases/download/v4.1.4/helm-v4.1.4-linux-s390x.tar.gz.sha256.asc + content_type: application/octet-stream + created_at: "2026-04-09T06:00:15Z" + digest: sha256:4cc9a0947917709c2e012b3b268fea9518ad8e9b22860a61fa9de0eedb8c656c + download_count: 4 + id: 392164389 + label: null + name: helm-v4.1.4-linux-s390x.tar.gz.sha256.asc + node_id: RA_kwDOApspmc4XX_Ql + size: 265 + state: uploaded + updated_at: "2026-04-09T06:00:15Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/2787248?v=4 + events_url: https://api.github.com/users/gjenkins8/events{/privacy} + followers_url: https://api.github.com/users/gjenkins8/followers + following_url: https://api.github.com/users/gjenkins8/following{/other_user} + gists_url: https://api.github.com/users/gjenkins8/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/gjenkins8 + id: 2787248 + login: gjenkins8 + node_id: MDQ6VXNlcjI3ODcyNDg= + organizations_url: https://api.github.com/users/gjenkins8/orgs + received_events_url: https://api.github.com/users/gjenkins8/received_events + repos_url: https://api.github.com/users/gjenkins8/repos + site_admin: false + starred_url: https://api.github.com/users/gjenkins8/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/gjenkins8/subscriptions + type: User + url: https://api.github.com/users/gjenkins8 + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/392164389 + - browser_download_url: https://github.com/helm/helm/releases/download/v4.1.4/helm-v4.1.4-linux-s390x.tar.gz.sha256sum.asc + content_type: application/octet-stream + created_at: "2026-04-09T06:00:15Z" + digest: sha256:10c954392905809ed8e35ed11c23a258ca9b9d88915a7195eccc72f89ad14b38 + download_count: 4 + id: 392164393 + label: null + name: helm-v4.1.4-linux-s390x.tar.gz.sha256sum.asc + node_id: RA_kwDOApspmc4XX_Qp + size: 265 + state: uploaded + updated_at: "2026-04-09T06:00:16Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/2787248?v=4 + events_url: https://api.github.com/users/gjenkins8/events{/privacy} + followers_url: https://api.github.com/users/gjenkins8/followers + following_url: https://api.github.com/users/gjenkins8/following{/other_user} + gists_url: https://api.github.com/users/gjenkins8/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/gjenkins8 + id: 2787248 + login: gjenkins8 + node_id: MDQ6VXNlcjI3ODcyNDg= + organizations_url: https://api.github.com/users/gjenkins8/orgs + received_events_url: https://api.github.com/users/gjenkins8/received_events + repos_url: https://api.github.com/users/gjenkins8/repos + site_admin: false + starred_url: https://api.github.com/users/gjenkins8/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/gjenkins8/subscriptions + type: User + url: https://api.github.com/users/gjenkins8 + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/392164393 + - browser_download_url: https://github.com/helm/helm/releases/download/v4.1.4/helm-v4.1.4-windows-amd64.zip.asc + content_type: application/octet-stream + created_at: "2026-04-09T06:00:16Z" + digest: sha256:2c91e40090e9580a59cac4b807ea7deb3c5fa406977860abe36ab2f749f3b290 + download_count: 5 + id: 392164394 + label: null + name: helm-v4.1.4-windows-amd64.zip.asc + node_id: RA_kwDOApspmc4XX_Qq + size: 265 + state: uploaded + updated_at: "2026-04-09T06:00:16Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/2787248?v=4 + events_url: https://api.github.com/users/gjenkins8/events{/privacy} + followers_url: https://api.github.com/users/gjenkins8/followers + following_url: https://api.github.com/users/gjenkins8/following{/other_user} + gists_url: https://api.github.com/users/gjenkins8/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/gjenkins8 + id: 2787248 + login: gjenkins8 + node_id: MDQ6VXNlcjI3ODcyNDg= + organizations_url: https://api.github.com/users/gjenkins8/orgs + received_events_url: https://api.github.com/users/gjenkins8/received_events + repos_url: https://api.github.com/users/gjenkins8/repos + site_admin: false + starred_url: https://api.github.com/users/gjenkins8/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/gjenkins8/subscriptions + type: User + url: https://api.github.com/users/gjenkins8 + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/392164394 + - browser_download_url: https://github.com/helm/helm/releases/download/v4.1.4/helm-v4.1.4-windows-amd64.zip.sha256.asc + content_type: application/octet-stream + created_at: "2026-04-09T06:00:16Z" + digest: sha256:13ca8a8479dde3613fff46bf4bd0e19f220c6891361ae4ac0367cef22d884955 + download_count: 4 + id: 392164408 + label: null + name: helm-v4.1.4-windows-amd64.zip.sha256.asc + node_id: RA_kwDOApspmc4XX_Q4 + size: 265 + state: uploaded + updated_at: "2026-04-09T06:00:16Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/2787248?v=4 + events_url: https://api.github.com/users/gjenkins8/events{/privacy} + followers_url: https://api.github.com/users/gjenkins8/followers + following_url: https://api.github.com/users/gjenkins8/following{/other_user} + gists_url: https://api.github.com/users/gjenkins8/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/gjenkins8 + id: 2787248 + login: gjenkins8 + node_id: MDQ6VXNlcjI3ODcyNDg= + organizations_url: https://api.github.com/users/gjenkins8/orgs + received_events_url: https://api.github.com/users/gjenkins8/received_events + repos_url: https://api.github.com/users/gjenkins8/repos + site_admin: false + starred_url: https://api.github.com/users/gjenkins8/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/gjenkins8/subscriptions + type: User + url: https://api.github.com/users/gjenkins8 + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/392164408 + - browser_download_url: https://github.com/helm/helm/releases/download/v4.1.4/helm-v4.1.4-windows-amd64.zip.sha256sum.asc + content_type: application/octet-stream + created_at: "2026-04-09T06:00:16Z" + digest: sha256:7c8073fb14900f14a8292edf7784fc23f0d9f701ac41d6270fb352a36ecb61af + download_count: 4 + id: 392164415 + label: null + name: helm-v4.1.4-windows-amd64.zip.sha256sum.asc + node_id: RA_kwDOApspmc4XX_Q_ + size: 265 + state: uploaded + updated_at: "2026-04-09T06:00:17Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/2787248?v=4 + events_url: https://api.github.com/users/gjenkins8/events{/privacy} + followers_url: https://api.github.com/users/gjenkins8/followers + following_url: https://api.github.com/users/gjenkins8/following{/other_user} + gists_url: https://api.github.com/users/gjenkins8/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/gjenkins8 + id: 2787248 + login: gjenkins8 + node_id: MDQ6VXNlcjI3ODcyNDg= + organizations_url: https://api.github.com/users/gjenkins8/orgs + received_events_url: https://api.github.com/users/gjenkins8/received_events + repos_url: https://api.github.com/users/gjenkins8/repos + site_admin: false + starred_url: https://api.github.com/users/gjenkins8/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/gjenkins8/subscriptions + type: User + url: https://api.github.com/users/gjenkins8 + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/392164415 + - browser_download_url: https://github.com/helm/helm/releases/download/v4.1.4/helm-v4.1.4-windows-arm64.zip.asc + content_type: application/octet-stream + created_at: "2026-04-09T06:00:17Z" + digest: sha256:1332d87d952e30c9c4b256fb72870b9b220f457e5d534c83b15ad14b5f76e0da + download_count: 3 + id: 392164417 + label: null + name: helm-v4.1.4-windows-arm64.zip.asc + node_id: RA_kwDOApspmc4XX_RB + size: 265 + state: uploaded + updated_at: "2026-04-09T06:00:17Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/2787248?v=4 + events_url: https://api.github.com/users/gjenkins8/events{/privacy} + followers_url: https://api.github.com/users/gjenkins8/followers + following_url: https://api.github.com/users/gjenkins8/following{/other_user} + gists_url: https://api.github.com/users/gjenkins8/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/gjenkins8 + id: 2787248 + login: gjenkins8 + node_id: MDQ6VXNlcjI3ODcyNDg= + organizations_url: https://api.github.com/users/gjenkins8/orgs + received_events_url: https://api.github.com/users/gjenkins8/received_events + repos_url: https://api.github.com/users/gjenkins8/repos + site_admin: false + starred_url: https://api.github.com/users/gjenkins8/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/gjenkins8/subscriptions + type: User + url: https://api.github.com/users/gjenkins8 + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/392164417 + - browser_download_url: https://github.com/helm/helm/releases/download/v4.1.4/helm-v4.1.4-windows-arm64.zip.sha256.asc + content_type: application/octet-stream + created_at: "2026-04-09T06:00:17Z" + digest: sha256:01f8a7afda03cd69334787252858bb891e67bfeb4b89ba145db4e3821259c883 + download_count: 4 + id: 392164422 + label: null + name: helm-v4.1.4-windows-arm64.zip.sha256.asc + node_id: RA_kwDOApspmc4XX_RG + size: 265 + state: uploaded + updated_at: "2026-04-09T06:00:17Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/2787248?v=4 + events_url: https://api.github.com/users/gjenkins8/events{/privacy} + followers_url: https://api.github.com/users/gjenkins8/followers + following_url: https://api.github.com/users/gjenkins8/following{/other_user} + gists_url: https://api.github.com/users/gjenkins8/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/gjenkins8 + id: 2787248 + login: gjenkins8 + node_id: MDQ6VXNlcjI3ODcyNDg= + organizations_url: https://api.github.com/users/gjenkins8/orgs + received_events_url: https://api.github.com/users/gjenkins8/received_events + repos_url: https://api.github.com/users/gjenkins8/repos + site_admin: false + starred_url: https://api.github.com/users/gjenkins8/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/gjenkins8/subscriptions + type: User + url: https://api.github.com/users/gjenkins8 + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/392164422 + - browser_download_url: https://github.com/helm/helm/releases/download/v4.1.4/helm-v4.1.4-windows-arm64.zip.sha256sum.asc + content_type: application/octet-stream + created_at: "2026-04-09T06:00:17Z" + digest: sha256:7e2733ba50bdbaaee9da17c22391714498a27f5e6a24490bb2b165af426d0c67 + download_count: 4 + id: 392164435 + label: null + name: helm-v4.1.4-windows-arm64.zip.sha256sum.asc + node_id: RA_kwDOApspmc4XX_RT + size: 265 + state: uploaded + updated_at: "2026-04-09T06:00:18Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/u/2787248?v=4 + events_url: https://api.github.com/users/gjenkins8/events{/privacy} + followers_url: https://api.github.com/users/gjenkins8/followers + following_url: https://api.github.com/users/gjenkins8/following{/other_user} + gists_url: https://api.github.com/users/gjenkins8/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/gjenkins8 + id: 2787248 + login: gjenkins8 + node_id: MDQ6VXNlcjI3ODcyNDg= + organizations_url: https://api.github.com/users/gjenkins8/orgs + received_events_url: https://api.github.com/users/gjenkins8/received_events + repos_url: https://api.github.com/users/gjenkins8/repos + site_admin: false + starred_url: https://api.github.com/users/gjenkins8/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/gjenkins8/subscriptions + type: User + url: https://api.github.com/users/gjenkins8 + user_view_type: public + url: https://api.github.com/repos/helm/helm/releases/assets/392164435 + assets_url: https://api.github.com/repos/helm/helm/releases/306902115/assets + author: + avatar_url: https://avatars.githubusercontent.com/u/2787248?v=4 + events_url: https://api.github.com/users/gjenkins8/events{/privacy} + followers_url: https://api.github.com/users/gjenkins8/followers + following_url: https://api.github.com/users/gjenkins8/following{/other_user} + gists_url: https://api.github.com/users/gjenkins8/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/gjenkins8 + id: 2787248 + login: gjenkins8 + node_id: MDQ6VXNlcjI3ODcyNDg= + organizations_url: https://api.github.com/users/gjenkins8/orgs + received_events_url: https://api.github.com/users/gjenkins8/received_events + repos_url: https://api.github.com/users/gjenkins8/repos + site_admin: false + starred_url: https://api.github.com/users/gjenkins8/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/gjenkins8/subscriptions + type: User + url: https://api.github.com/users/gjenkins8 + user_view_type: public + body: "Helm v4.1.4 is a security fix patch release. Users are encouraged + to upgrade for the best experience.\r\n\r\nThe community keeps growing, + and we'd love to see you there!\r\n\r\n- Join the discussion in [Kubernetes + Slack](https://kubernetes.slack.com):\r\n - for questions and just to + hang out\r\n - for discussing PRs, code, and bugs\r\n- Hang out at the + Public Developer Call: Thursday, 9:30 Pacific via [Zoom](https://zoom.us/j/696660622)\r\n- + Test, debug, and contribute charts: [ArtifactHub/packages](https://artifacthub.io/packages/search?kind=0)\r\n\r\n## + Security fixes\r\n\r\n- [GHSA-hr2v-4r36-88hr ](https://github.com/helm/helm/security/advisories/GHSA-hr2v-4r36-88hr) + Helm Chart extraction output directory collapse via `Chart.yaml` name + dot-segment\r\n- [GHSA-q5jf-9vfq-h4h7](https://github.com/helm/helm/security/advisories/GHSA-q5jf-9vfq-h4h7) + Plugin verification fails open when `.prov` is missing, allowing unsigned + plugin install\r\n- [GHSA-vmx8-mqv2-9gmg](https://github.com/helm/helm/security/advisories/GHSA-vmx8-mqv2-9gmg) + Path traversal in plugin metadata version enables arbitrary file write + outside Helm plugin directory\r\n\r\nA big thank you to the reporters + of these issues (@maru1009, @1seal). \r\n\r\n## Installation and Upgrading\r\n\r\nDownload + Helm v4.1.4. The common platform binaries are here:\r\n\r\n- [MacOS amd64](https://get.helm.sh/helm-v4.1.4-darwin-amd64.tar.gz) + ([checksum](https://get.helm.sh/helm-v4.1.4-darwin-amd64.tar.gz.sha256sum) + / abf09c8503ad1d8ef76d3737a058c3456a998aae5f5966fce4bb3031aeb1654e)\r\n- + [MacOS arm64](https://get.helm.sh/helm-v4.1.4-darwin-arm64.tar.gz) ([checksum](https://get.helm.sh/helm-v4.1.4-darwin-arm64.tar.gz.sha256sum) + / 7c2eca678e8001fa863cdf8cbf6ac1b3799f9404a89eb55c08260ef5732e658d)\r\n- + [Linux amd64](https://get.helm.sh/helm-v4.1.4-linux-amd64.tar.gz) ([checksum](https://get.helm.sh/helm-v4.1.4-linux-amd64.tar.gz.sha256sum) + / 70b2c30a19da4db264dfd68c8a3664e05093a361cefd89572ffb36f8abfa3d09)\r\n- + [Linux arm](https://get.helm.sh/helm-v4.1.4-linux-arm.tar.gz) ([checksum](https://get.helm.sh/helm-v4.1.4-linux-arm.tar.gz.sha256sum) + / c4a7d37032379cc7e82c9c76487d1041b193c9a0fbb4b8f3790230899b830a4f)\r\n- + [Linux arm64](https://get.helm.sh/helm-v4.1.4-linux-arm64.tar.gz) ([checksum](https://get.helm.sh/helm-v4.1.4-linux-arm64.tar.gz.sha256sum) + / 13d03672be289045d2ff00e4e345d61de1c6f21c1257a45955a30e8ae036d8f1)\r\n- + [Linux i386](https://get.helm.sh/helm-v4.1.4-linux-386.tar.gz) ([checksum](https://get.helm.sh/helm-v4.1.4-linux-386.tar.gz.sha256sum) + / 3e9bcefb85293854367bea931d669bb742974bbd978b3960df921ed129ff40f9)\r\n- + [Linux ppc64le](https://get.helm.sh/helm-v4.1.4-linux-ppc64le.tar.gz) + ([checksum](https://get.helm.sh/helm-v4.1.4-linux-ppc64le.tar.gz.sha256sum) + / 35a48f5db5c655b4471b37be75e76bfb2b23fc8a95d0fa2f0f344f0694336358)\r\n- + [Linux s390x](https://get.helm.sh/helm-v4.1.4-linux-s390x.tar.gz) ([checksum](https://get.helm.sh/helm-v4.1.4-linux-s390x.tar.gz.sha256sum) + / c5653d0b3687f008dc48f80219906b574af3b623ddc114f92383327299ad935e)\r\n- + [Linux riscv64](https://get.helm.sh/helm-v4.1.4-linux-riscv64.tar.gz) + ([checksum](https://get.helm.sh/helm-v4.1.4-linux-riscv64.tar.gz.sha256sum) + / 9d747ed5761a6a5c15aa7ad108b65aee917d8e33448690e83a6451b6a48748e6)\r\n- + [Windows amd64](https://get.helm.sh/helm-v4.1.4-windows-amd64.zip) ([checksum](https://get.helm.sh/helm-v4.1.4-windows-amd64.zip.sha256sum) + / bd60f567f667631a2c9b698dfabe5e3cd52eaaf4264163c0a9cae566db8560e8)\r\n- + [Windows arm64](https://get.helm.sh/helm-v4.1.4-windows-arm64.zip) ([checksum](https://get.helm.sh/helm-v4.1.4-windows-arm64.zip.sha256sum) + / d0a651026da4a26b28bdfc3d455ce3dfacbc267182dc2225c2172b1dcc549643)\r\n\r\nThe + [Quickstart Guide](https://helm.sh/docs/intro/quickstart/) will get you + going from there. For **upgrade instructions** or detailed installation + notes, check the [install guide](https://helm.sh/docs/intro/install/). + You can also use a [script to install](https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-4) + on any system with `bash`.\r\n## What's Next\r\n\r\n- 4.1.5 and 3.20.3 + are the next patch (bug fix) releases and will be on April 8, 2026\r\n- + 4.2.0 and 3.21.0 are the next minor (feature) releases and will be on + May 13, 2026\r\n\r\n## Changelog\r\n\r\n- fix: Plugin missing provenance + bypass 05fa37973dc9e42b76e1d2883494c87174b6074f (George Jenkins)\r\n- + fix: Chart dot-name path bug 4e7994d4467182f535b6797c94b5b0e994a91436 + (George Jenkins)\r\n- ignore error plugin loads (cli, getter) 25819432bf87ac0b54f0d3fa54982add2cac609e + (George Jenkins)\r\n- fix: Plugin version path traversal 36c8539e99bc42d7aef9b87d136254662d04f027 + (George Jenkins)\r\n- fix: pin codeql-action/upload-sarif to commit SHA + in scorecards workflow c61e0860ec797330a4c26a78dde7020cdc6743b1 (Terry + Howe)" + created_at: "2026-04-09T05:22:20Z" + draft: false + html_url: https://github.com/helm/helm/releases/tag/v4.1.4 + id: 306902115 + immutable: false + mentions_count: 2 + name: Helm v4.1.4 + node_id: RE_kwDOApspmc4SSvRj + prerelease: false + published_at: "2026-04-09T06:01:47Z" + tag_name: v4.1.4 + tarball_url: https://api.github.com/repos/helm/helm/tarball/v4.1.4 + target_commitish: main + updated_at: "2026-04-09T06:01:47Z" + upload_url: https://uploads.github.com/repos/helm/helm/releases/306902115/assets{?name,label} + url: https://api.github.com/repos/helm/helm/releases/306902115 + zipball_url: https://api.github.com/repos/helm/helm/zipball/v4.1.4 + helmfile: + 0.145.3: + githubRelease: + assets: + - browser_download_url: https://github.com/helmfile/helmfile/releases/download/v0.145.3/helmfile_0.145.3_checksums.txt + content_type: text/plain; charset=utf-8 + created_at: "2022-08-16T02:02:26Z" + download_count: 0 + id: 74822148 + label: "" + name: helmfile_0.145.3_checksums.txt + node_id: RA_kwDOHEifes4EdbIE + size: 820 + state: uploaded + updated_at: "2022-08-16T02:02:27Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/in/15368?v=4 + events_url: https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/github-actions%5Bbot%5D/followers + following_url: https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/apps/github-actions + id: 41898282 + login: github-actions[bot] + node_id: MDM6Qm90NDE4OTgyODI= + organizations_url: https://api.github.com/users/github-actions%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/github-actions%5Bbot%5D/received_events + repos_url: https://api.github.com/users/github-actions%5Bbot%5D/repos + site_admin: false + starred_url: https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/github-actions%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/github-actions%5Bbot%5D + url: https://api.github.com/repos/helmfile/helmfile/releases/assets/74822148 + - browser_download_url: https://github.com/helmfile/helmfile/releases/download/v0.145.3/helmfile_0.145.3_darwin_amd64.tar.gz + content_type: application/gzip + created_at: "2022-08-16T02:02:24Z" + download_count: 0 + id: 74822143 + label: "" + name: helmfile_0.145.3_darwin_amd64.tar.gz + node_id: RA_kwDOHEifes4EdbH_ + size: 11468903 + state: uploaded + updated_at: "2022-08-16T02:02:25Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/in/15368?v=4 + events_url: https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/github-actions%5Bbot%5D/followers + following_url: https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/apps/github-actions + id: 41898282 + login: github-actions[bot] + node_id: MDM6Qm90NDE4OTgyODI= + organizations_url: https://api.github.com/users/github-actions%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/github-actions%5Bbot%5D/received_events + repos_url: https://api.github.com/users/github-actions%5Bbot%5D/repos + site_admin: false + starred_url: https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/github-actions%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/github-actions%5Bbot%5D + url: https://api.github.com/repos/helmfile/helmfile/releases/assets/74822143 + - browser_download_url: https://github.com/helmfile/helmfile/releases/download/v0.145.3/helmfile_0.145.3_darwin_arm64.tar.gz + content_type: application/gzip + created_at: "2022-08-16T02:02:24Z" + download_count: 0 + id: 74822142 + label: "" + name: helmfile_0.145.3_darwin_arm64.tar.gz + node_id: RA_kwDOHEifes4EdbH- + size: 11116726 + state: uploaded + updated_at: "2022-08-16T02:02:25Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/in/15368?v=4 + events_url: https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/github-actions%5Bbot%5D/followers + following_url: https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/apps/github-actions + id: 41898282 + login: github-actions[bot] + node_id: MDM6Qm90NDE4OTgyODI= + organizations_url: https://api.github.com/users/github-actions%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/github-actions%5Bbot%5D/received_events + repos_url: https://api.github.com/users/github-actions%5Bbot%5D/repos + site_admin: false + starred_url: https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/github-actions%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/github-actions%5Bbot%5D + url: https://api.github.com/repos/helmfile/helmfile/releases/assets/74822142 + - browser_download_url: https://github.com/helmfile/helmfile/releases/download/v0.145.3/helmfile_0.145.3_linux_386.tar.gz + content_type: application/gzip + created_at: "2022-08-16T02:02:22Z" + download_count: 0 + id: 74822137 + label: "" + name: helmfile_0.145.3_linux_386.tar.gz + node_id: RA_kwDOHEifes4EdbH5 + size: 10264043 + state: uploaded + updated_at: "2022-08-16T02:02:23Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/in/15368?v=4 + events_url: https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/github-actions%5Bbot%5D/followers + following_url: https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/apps/github-actions + id: 41898282 + login: github-actions[bot] + node_id: MDM6Qm90NDE4OTgyODI= + organizations_url: https://api.github.com/users/github-actions%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/github-actions%5Bbot%5D/received_events + repos_url: https://api.github.com/users/github-actions%5Bbot%5D/repos + site_admin: false + starred_url: https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/github-actions%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/github-actions%5Bbot%5D + url: https://api.github.com/repos/helmfile/helmfile/releases/assets/74822137 + - browser_download_url: https://github.com/helmfile/helmfile/releases/download/v0.145.3/helmfile_0.145.3_linux_amd64.tar.gz + content_type: application/gzip + created_at: "2022-08-16T02:02:25Z" + download_count: 15 + id: 74822145 + label: "" + name: helmfile_0.145.3_linux_amd64.tar.gz + node_id: RA_kwDOHEifes4EdbIB + size: 10968834 + state: uploaded + updated_at: "2022-08-16T02:02:26Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/in/15368?v=4 + events_url: https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/github-actions%5Bbot%5D/followers + following_url: https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/apps/github-actions + id: 41898282 + login: github-actions[bot] + node_id: MDM6Qm90NDE4OTgyODI= + organizations_url: https://api.github.com/users/github-actions%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/github-actions%5Bbot%5D/received_events + repos_url: https://api.github.com/users/github-actions%5Bbot%5D/repos + site_admin: false + starred_url: https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/github-actions%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/github-actions%5Bbot%5D + url: https://api.github.com/repos/helmfile/helmfile/releases/assets/74822145 + - browser_download_url: https://github.com/helmfile/helmfile/releases/download/v0.145.3/helmfile_0.145.3_linux_arm64.tar.gz + content_type: application/gzip + created_at: "2022-08-16T02:02:25Z" + download_count: 4 + id: 74822146 + label: "" + name: helmfile_0.145.3_linux_arm64.tar.gz + node_id: RA_kwDOHEifes4EdbIC + size: 10043336 + state: uploaded + updated_at: "2022-08-16T02:02:26Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/in/15368?v=4 + events_url: https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/github-actions%5Bbot%5D/followers + following_url: https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/apps/github-actions + id: 41898282 + login: github-actions[bot] + node_id: MDM6Qm90NDE4OTgyODI= + organizations_url: https://api.github.com/users/github-actions%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/github-actions%5Bbot%5D/received_events + repos_url: https://api.github.com/users/github-actions%5Bbot%5D/repos + site_admin: false + starred_url: https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/github-actions%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/github-actions%5Bbot%5D + url: https://api.github.com/repos/helmfile/helmfile/releases/assets/74822146 + - browser_download_url: https://github.com/helmfile/helmfile/releases/download/v0.145.3/helmfile_0.145.3_windows_386.tar.gz + content_type: application/gzip + created_at: "2022-08-16T02:02:23Z" + download_count: 0 + id: 74822140 + label: "" + name: helmfile_0.145.3_windows_386.tar.gz + node_id: RA_kwDOHEifes4EdbH8 + size: 10729257 + state: uploaded + updated_at: "2022-08-16T02:02:24Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/in/15368?v=4 + events_url: https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/github-actions%5Bbot%5D/followers + following_url: https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/apps/github-actions + id: 41898282 + login: github-actions[bot] + node_id: MDM6Qm90NDE4OTgyODI= + organizations_url: https://api.github.com/users/github-actions%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/github-actions%5Bbot%5D/received_events + repos_url: https://api.github.com/users/github-actions%5Bbot%5D/repos + site_admin: false + starred_url: https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/github-actions%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/github-actions%5Bbot%5D + url: https://api.github.com/repos/helmfile/helmfile/releases/assets/74822140 + - browser_download_url: https://github.com/helmfile/helmfile/releases/download/v0.145.3/helmfile_0.145.3_windows_amd64.tar.gz + content_type: application/gzip + created_at: "2022-08-16T02:02:22Z" + download_count: 0 + id: 74822136 + label: "" + name: helmfile_0.145.3_windows_amd64.tar.gz + node_id: RA_kwDOHEifes4EdbH4 + size: 11074355 + state: uploaded + updated_at: "2022-08-16T02:02:23Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/in/15368?v=4 + events_url: https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/github-actions%5Bbot%5D/followers + following_url: https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/apps/github-actions + id: 41898282 + login: github-actions[bot] + node_id: MDM6Qm90NDE4OTgyODI= + organizations_url: https://api.github.com/users/github-actions%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/github-actions%5Bbot%5D/received_events + repos_url: https://api.github.com/users/github-actions%5Bbot%5D/repos + site_admin: false + starred_url: https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/github-actions%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/github-actions%5Bbot%5D + url: https://api.github.com/repos/helmfile/helmfile/releases/assets/74822136 + - browser_download_url: https://github.com/helmfile/helmfile/releases/download/v0.145.3/helmfile_0.145.3_windows_arm64.tar.gz + content_type: application/gzip + created_at: "2022-08-16T02:02:23Z" + download_count: 0 + id: 74822138 + label: "" + name: helmfile_0.145.3_windows_arm64.tar.gz + node_id: RA_kwDOHEifes4EdbH6 + size: 10143997 + state: uploaded + updated_at: "2022-08-16T02:02:24Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/in/15368?v=4 + events_url: https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/github-actions%5Bbot%5D/followers + following_url: https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/apps/github-actions + id: 41898282 + login: github-actions[bot] + node_id: MDM6Qm90NDE4OTgyODI= + organizations_url: https://api.github.com/users/github-actions%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/github-actions%5Bbot%5D/received_events + repos_url: https://api.github.com/users/github-actions%5Bbot%5D/repos + site_admin: false + starred_url: https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/github-actions%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/github-actions%5Bbot%5D + url: https://api.github.com/repos/helmfile/helmfile/releases/assets/74822138 + assets_url: https://api.github.com/repos/helmfile/helmfile/releases/74471973/assets + author: + avatar_url: https://avatars.githubusercontent.com/u/22009?v=4 + events_url: https://api.github.com/users/mumoshu/events{/privacy} + followers_url: https://api.github.com/users/mumoshu/followers + following_url: https://api.github.com/users/mumoshu/following{/other_user} + gists_url: https://api.github.com/users/mumoshu/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mumoshu + id: 22009 + login: mumoshu + node_id: MDQ6VXNlcjIyMDA5 + organizations_url: https://api.github.com/users/mumoshu/orgs + received_events_url: https://api.github.com/users/mumoshu/received_events + repos_url: https://api.github.com/users/mumoshu/repos + site_admin: false + starred_url: https://api.github.com/users/mumoshu/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mumoshu/subscriptions + type: User + url: https://api.github.com/users/mumoshu + body: "This release mainly contains fixes for a few regressions since our + migration to `cobra` as a CLI toolkit, the fix for a bug in OCI repo URL + parsing and the support for newer `helm-secrets`.\r\n\r\n## What's Changed\r\n* + Bump github.com/hashicorp/go-version from 1.4.0 to 1.6.0 by @dependabot + in https://github.com/helmfile/helmfile/pull/183\r\n* fix doc link error + and style error by @yxxhero in https://github.com/helmfile/helmfile/pull/217\r\n* + fix(doc): add missing version field in the release template example by + @lemeurherve in https://github.com/helmfile/helmfile/pull/228\r\n* update + readme about image repo and fix link error by @yxxhero in https://github.com/helmfile/helmfile/pull/224\r\n* + fix: use helm secrets view rather than helm secrets dec to decrypt by + @philomory in https://github.com/helmfile/helmfile/pull/201\r\n* add Go + lint by @yxxhero in https://github.com/helmfile/helmfile/pull/169\r\n* + Include the working helmfile ver in the bug report by @mumoshu in https://github.com/helmfile/helmfile/pull/237\r\n* + update Readmd.md by @yxxhero in https://github.com/helmfile/helmfile/pull/236\r\n* + feat: bump chartify to v0.10.0 to support OCI registry for adhoc dependencies + by @toVersus in https://github.com/helmfile/helmfile/pull/238\r\n* on + canary build, version should show \"0.0.0-dev\" by @itscaro in https://github.com/helmfile/helmfile/pull/162\r\n* + Add integration test for #238 with local docker registry as a OCI-based + helm chart repo by @mumoshu in https://github.com/helmfile/helmfile/pull/239\r\n* + chore: clean up snapshot test by @toVersus in https://github.com/helmfile/helmfile/pull/241\r\n* + doc: getting start adds repositories configuration by @xiaomudk in https://github.com/helmfile/helmfile/pull/240\r\n* + Use cobra by @yxxhero in https://github.com/helmfile/helmfile/pull/234\r\n* + E2E helmfile-template testing with local chart repo server by @mumoshu + in https://github.com/helmfile/helmfile/pull/245\r\n* correct --help cli + arg regression by @jouve in https://github.com/helmfile/helmfile/pull/252\r\n* + revert environment long option from --env to --environment by @jouve in + https://github.com/helmfile/helmfile/pull/250\r\n* test: Add unit tests + for ChartExport by @xiaomudk in https://github.com/helmfile/helmfile/pull/256\r\n* + test: Add unit tests for ChartPull by @xiaomudk in https://github.com/helmfile/helmfile/pull/257\r\n* + fix: OCI Url and Version parse error by @xiaomudk in https://github.com/helmfile/helmfile/pull/258\r\n* + Implement readDirEntries method by @vasicvuk in https://github.com/helmfile/helmfile/pull/254\r\n* + remove selector override in cmd/apply by @jouve in https://github.com/helmfile/helmfile/pull/266\r\n* + update doccs/index.md about CLI ref by @yxxhero in https://github.com/helmfile/helmfile/pull/264\r\n* + fix: needs error with context that includes slash by @sergeief in https://github.com/helmfile/helmfile/pull/268\r\n* + Bump k8s.io/apimachinery from 0.23.4 to 0.24.3 by @dependabot in https://github.com/helmfile/helmfile/pull/230\r\n* + Add flags about need for lint subcmd by @yxxhero in https://github.com/helmfile/helmfile/pull/273\r\n* + fix go.mod by @yxxhero in https://github.com/helmfile/helmfile/pull/275\r\n* + Refactor cobra flag default values for readability by @yxxhero in https://github.com/helmfile/helmfile/pull/274\r\n* + build(deps): bump go.uber.org/zap from 1.21.0 to 1.22.0 by @dependabot + in https://github.com/helmfile/helmfile/pull/280\r\n* Add file existence + check for remote values by @kuzaxak in https://github.com/helmfile/helmfile/pull/284\r\n* + Update ArchLinux installation instructions by @AnatolyRugalev in https://github.com/helmfile/helmfile/pull/282\r\n* + Fix Inclusion of Releases for Other Environments by @dackroyd in https://github.com/helmfile/helmfile/pull/276\r\n* + Cleanup pkg/config/config.go by @yxxhero in https://github.com/helmfile/helmfile/pull/287\r\n* + update golang lint by @yxxhero in https://github.com/helmfile/helmfile/pull/288\r\n* + Refactor 'images' workflow, include Ubuntu image to push by @pathob in + https://github.com/helmfile/helmfile/pull/262\r\n* build(deps): bump github.com/mattn/go-isatty + from 0.0.14 to 0.0.16 by @dependabot in https://github.com/helmfile/helmfile/pull/293\r\n* + fix tag miss in docker build by @yxxhero in https://github.com/helmfile/helmfile/pull/294\r\n\r\n## + New Contributors\r\n* @lemeurherve made their first contribution in https://github.com/helmfile/helmfile/pull/228\r\n* + @toVersus made their first contribution in https://github.com/helmfile/helmfile/pull/238\r\n* + @xiaomudk made their first contribution in https://github.com/helmfile/helmfile/pull/240\r\n* + @jouve made their first contribution in https://github.com/helmfile/helmfile/pull/252\r\n* + @vasicvuk made their first contribution in https://github.com/helmfile/helmfile/pull/254\r\n* + @sergeief made their first contribution in https://github.com/helmfile/helmfile/pull/268\r\n* + @kuzaxak made their first contribution in https://github.com/helmfile/helmfile/pull/284\r\n* + @AnatolyRugalev made their first contribution in https://github.com/helmfile/helmfile/pull/282\r\n* + @dackroyd made their first contribution in https://github.com/helmfile/helmfile/pull/276\r\n* + @pathob made their first contribution in https://github.com/helmfile/helmfile/pull/262\r\n\r\n**Full + Changelog**: https://github.com/helmfile/helmfile/compare/v0.145.2...v0.145.3" + created_at: "2022-08-16T01:41:33Z" + draft: false + html_url: https://github.com/helmfile/helmfile/releases/tag/v0.145.3 + id: 74471973 + mentions_count: 15 + name: v0.145.3 + node_id: RE_kwDOHEifes4EcFol + prerelease: false + published_at: "2022-08-16T01:52:39Z" + tag_name: v0.145.3 + tarball_url: https://api.github.com/repos/helmfile/helmfile/tarball/v0.145.3 + target_commitish: main + upload_url: https://uploads.github.com/repos/helmfile/helmfile/releases/74471973/assets{?name,label} + url: https://api.github.com/repos/helmfile/helmfile/releases/74471973 + zipball_url: https://api.github.com/repos/helmfile/helmfile/zipball/v0.145.3 + "0145.4": + githubRelease: + assets: + - browser_download_url: https://github.com/helmfile/helmfile/releases/download/v0145.4/helmfile_0145.4_checksums.txt + content_type: text/plain; charset=utf-8 + created_at: "2022-08-24T22:16:46Z" + download_count: 0 + id: 75758664 + label: "" + name: helmfile_0145.4_checksums.txt + node_id: RA_kwDOHEifes4Eg_xI + size: 812 + state: uploaded + updated_at: "2022-08-24T22:16:46Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/in/15368?v=4 + events_url: https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/github-actions%5Bbot%5D/followers + following_url: https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/apps/github-actions + id: 41898282 + login: github-actions[bot] + node_id: MDM6Qm90NDE4OTgyODI= + organizations_url: https://api.github.com/users/github-actions%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/github-actions%5Bbot%5D/received_events + repos_url: https://api.github.com/users/github-actions%5Bbot%5D/repos + site_admin: false + starred_url: https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/github-actions%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/github-actions%5Bbot%5D + url: https://api.github.com/repos/helmfile/helmfile/releases/assets/75758664 + - browser_download_url: https://github.com/helmfile/helmfile/releases/download/v0145.4/helmfile_0145.4_darwin_amd64.tar.gz + content_type: application/gzip + created_at: "2022-08-24T22:16:45Z" + download_count: 0 + id: 75758661 + label: "" + name: helmfile_0145.4_darwin_amd64.tar.gz + node_id: RA_kwDOHEifes4Eg_xF + size: 11468956 + state: uploaded + updated_at: "2022-08-24T22:16:46Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/in/15368?v=4 + events_url: https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/github-actions%5Bbot%5D/followers + following_url: https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/apps/github-actions + id: 41898282 + login: github-actions[bot] + node_id: MDM6Qm90NDE4OTgyODI= + organizations_url: https://api.github.com/users/github-actions%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/github-actions%5Bbot%5D/received_events + repos_url: https://api.github.com/users/github-actions%5Bbot%5D/repos + site_admin: false + starred_url: https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/github-actions%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/github-actions%5Bbot%5D + url: https://api.github.com/repos/helmfile/helmfile/releases/assets/75758661 + - browser_download_url: https://github.com/helmfile/helmfile/releases/download/v0145.4/helmfile_0145.4_darwin_arm64.tar.gz + content_type: application/gzip + created_at: "2022-08-24T22:16:45Z" + download_count: 0 + id: 75758662 + label: "" + name: helmfile_0145.4_darwin_arm64.tar.gz + node_id: RA_kwDOHEifes4Eg_xG + size: 11113155 + state: uploaded + updated_at: "2022-08-24T22:16:46Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/in/15368?v=4 + events_url: https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/github-actions%5Bbot%5D/followers + following_url: https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/apps/github-actions + id: 41898282 + login: github-actions[bot] + node_id: MDM6Qm90NDE4OTgyODI= + organizations_url: https://api.github.com/users/github-actions%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/github-actions%5Bbot%5D/received_events + repos_url: https://api.github.com/users/github-actions%5Bbot%5D/repos + site_admin: false + starred_url: https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/github-actions%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/github-actions%5Bbot%5D + url: https://api.github.com/repos/helmfile/helmfile/releases/assets/75758662 + - browser_download_url: https://github.com/helmfile/helmfile/releases/download/v0145.4/helmfile_0145.4_linux_386.tar.gz + content_type: application/gzip + created_at: "2022-08-24T22:16:43Z" + download_count: 2 + id: 75758654 + label: "" + name: helmfile_0145.4_linux_386.tar.gz + node_id: RA_kwDOHEifes4Eg_w- + size: 10264427 + state: uploaded + updated_at: "2022-08-24T22:16:44Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/in/15368?v=4 + events_url: https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/github-actions%5Bbot%5D/followers + following_url: https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/apps/github-actions + id: 41898282 + login: github-actions[bot] + node_id: MDM6Qm90NDE4OTgyODI= + organizations_url: https://api.github.com/users/github-actions%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/github-actions%5Bbot%5D/received_events + repos_url: https://api.github.com/users/github-actions%5Bbot%5D/repos + site_admin: false + starred_url: https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/github-actions%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/github-actions%5Bbot%5D + url: https://api.github.com/repos/helmfile/helmfile/releases/assets/75758654 + - browser_download_url: https://github.com/helmfile/helmfile/releases/download/v0145.4/helmfile_0145.4_linux_amd64.tar.gz + content_type: application/gzip + created_at: "2022-08-24T22:16:42Z" + download_count: 7 + id: 75758651 + label: "" + name: helmfile_0145.4_linux_amd64.tar.gz + node_id: RA_kwDOHEifes4Eg_w7 + size: 10969731 + state: uploaded + updated_at: "2022-08-24T22:16:43Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/in/15368?v=4 + events_url: https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/github-actions%5Bbot%5D/followers + following_url: https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/apps/github-actions + id: 41898282 + login: github-actions[bot] + node_id: MDM6Qm90NDE4OTgyODI= + organizations_url: https://api.github.com/users/github-actions%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/github-actions%5Bbot%5D/received_events + repos_url: https://api.github.com/users/github-actions%5Bbot%5D/repos + site_admin: false + starred_url: https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/github-actions%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/github-actions%5Bbot%5D + url: https://api.github.com/repos/helmfile/helmfile/releases/assets/75758651 + - browser_download_url: https://github.com/helmfile/helmfile/releases/download/v0145.4/helmfile_0145.4_linux_arm64.tar.gz + content_type: application/gzip + created_at: "2022-08-24T22:16:42Z" + download_count: 5 + id: 75758652 + label: "" + name: helmfile_0145.4_linux_arm64.tar.gz + node_id: RA_kwDOHEifes4Eg_w8 + size: 10043731 + state: uploaded + updated_at: "2022-08-24T22:16:43Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/in/15368?v=4 + events_url: https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/github-actions%5Bbot%5D/followers + following_url: https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/apps/github-actions + id: 41898282 + login: github-actions[bot] + node_id: MDM6Qm90NDE4OTgyODI= + organizations_url: https://api.github.com/users/github-actions%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/github-actions%5Bbot%5D/received_events + repos_url: https://api.github.com/users/github-actions%5Bbot%5D/repos + site_admin: false + starred_url: https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/github-actions%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/github-actions%5Bbot%5D + url: https://api.github.com/repos/helmfile/helmfile/releases/assets/75758652 + - browser_download_url: https://github.com/helmfile/helmfile/releases/download/v0145.4/helmfile_0145.4_windows_386.tar.gz + content_type: application/gzip + created_at: "2022-08-24T22:16:44Z" + download_count: 0 + id: 75758658 + label: "" + name: helmfile_0145.4_windows_386.tar.gz + node_id: RA_kwDOHEifes4Eg_xC + size: 10728894 + state: uploaded + updated_at: "2022-08-24T22:16:45Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/in/15368?v=4 + events_url: https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/github-actions%5Bbot%5D/followers + following_url: https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/apps/github-actions + id: 41898282 + login: github-actions[bot] + node_id: MDM6Qm90NDE4OTgyODI= + organizations_url: https://api.github.com/users/github-actions%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/github-actions%5Bbot%5D/received_events + repos_url: https://api.github.com/users/github-actions%5Bbot%5D/repos + site_admin: false + starred_url: https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/github-actions%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/github-actions%5Bbot%5D + url: https://api.github.com/repos/helmfile/helmfile/releases/assets/75758658 + - browser_download_url: https://github.com/helmfile/helmfile/releases/download/v0145.4/helmfile_0145.4_windows_amd64.tar.gz + content_type: application/gzip + created_at: "2022-08-24T22:16:43Z" + download_count: 0 + id: 75758655 + label: "" + name: helmfile_0145.4_windows_amd64.tar.gz + node_id: RA_kwDOHEifes4Eg_w_ + size: 11075005 + state: uploaded + updated_at: "2022-08-24T22:16:44Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/in/15368?v=4 + events_url: https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/github-actions%5Bbot%5D/followers + following_url: https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/apps/github-actions + id: 41898282 + login: github-actions[bot] + node_id: MDM6Qm90NDE4OTgyODI= + organizations_url: https://api.github.com/users/github-actions%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/github-actions%5Bbot%5D/received_events + repos_url: https://api.github.com/users/github-actions%5Bbot%5D/repos + site_admin: false + starred_url: https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/github-actions%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/github-actions%5Bbot%5D + url: https://api.github.com/repos/helmfile/helmfile/releases/assets/75758655 + - browser_download_url: https://github.com/helmfile/helmfile/releases/download/v0145.4/helmfile_0145.4_windows_arm64.tar.gz + content_type: application/gzip + created_at: "2022-08-24T22:16:44Z" + download_count: 0 + id: 75758657 + label: "" + name: helmfile_0145.4_windows_arm64.tar.gz + node_id: RA_kwDOHEifes4Eg_xB + size: 10143893 + state: uploaded + updated_at: "2022-08-24T22:16:45Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/in/15368?v=4 + events_url: https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/github-actions%5Bbot%5D/followers + following_url: https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/apps/github-actions + id: 41898282 + login: github-actions[bot] + node_id: MDM6Qm90NDE4OTgyODI= + organizations_url: https://api.github.com/users/github-actions%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/github-actions%5Bbot%5D/received_events + repos_url: https://api.github.com/users/github-actions%5Bbot%5D/repos + site_admin: false + starred_url: https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/github-actions%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/github-actions%5Bbot%5D + url: https://api.github.com/repos/helmfile/helmfile/releases/assets/75758657 + assets_url: https://api.github.com/repos/helmfile/helmfile/releases/75284604/assets + author: + avatar_url: https://avatars.githubusercontent.com/u/22009?v=4 + events_url: https://api.github.com/users/mumoshu/events{/privacy} + followers_url: https://api.github.com/users/mumoshu/followers + following_url: https://api.github.com/users/mumoshu/following{/other_user} + gists_url: https://api.github.com/users/mumoshu/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/mumoshu + id: 22009 + login: mumoshu + node_id: MDQ6VXNlcjIyMDA5 + organizations_url: https://api.github.com/users/mumoshu/orgs + received_events_url: https://api.github.com/users/mumoshu/received_events + repos_url: https://api.github.com/users/mumoshu/repos + site_admin: false + starred_url: https://api.github.com/users/mumoshu/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mumoshu/subscriptions + type: User + url: https://api.github.com/users/mumoshu + body: "This patch release is mainly about fixing `readDirEntries` added + in 0.145.3. @arkaitzj did a lot of awesome work along the way! We appreciate + your contribution ā¤ļø \r\nIn addition to the fix, this release also covers + fixes for a few diff-related flags that were not working since v0.145.0's + move to `cobra` as the CLI library. \r\n\r\n## What's Changed\r\n* Fix + for readDir selection, currently any template that uses readDir* functions + seems to break by @arkaitzj in https://github.com/helmfile/helmfile/pull/297\r\n* + Bring back --set flag to apply subcommand by @mjura in https://github.com/helmfile/helmfile/pull/298\r\n* + fix: return diff output config value by @mikelorant in https://github.com/helmfile/helmfile/pull/303\r\n* + fix: return diff context config value by @mikelorant in https://github.com/helmfile/helmfile/pull/301\r\n* + Fix some multi-value flags to not accept comma-separated values by @yxxhero + in https://github.com/helmfile/helmfile/pull/300\r\n* build(deps): bump + k8s.io/apimachinery from 0.24.3 to 0.24.4 by @dependabot in https://github.com/helmfile/helmfile/pull/306\r\n* + Add logo as .png and .ai (Adobe Illustrator) files by @pathob in https://github.com/helmfile/helmfile/pull/263\r\n* + Introduce Helmfile's own filesystem abstraction to correctly unit test + some components by @arkaitzj in https://github.com/helmfile/helmfile/pull/307\r\n* + fix typo for readme.md by @thenam153 in https://github.com/helmfile/helmfile/pull/312\r\n\r\n## + New Contributors\r\n* @arkaitzj made their first contribution in https://github.com/helmfile/helmfile/pull/297\r\n* + @mjura made their first contribution in https://github.com/helmfile/helmfile/pull/298\r\n* + @mikelorant made their first contribution in https://github.com/helmfile/helmfile/pull/303\r\n* + @thenam153 made their first contribution in https://github.com/helmfile/helmfile/pull/312\r\n\r\n**Full + Changelog**: https://github.com/helmfile/helmfile/compare/v0.145.3...v0145.4" + created_at: "2022-08-24T05:44:25Z" + draft: false + html_url: https://github.com/helmfile/helmfile/releases/tag/v0145.4 + id: 75284604 + mentions_count: 7 + name: v0145.4 + node_id: RE_kwDOHEifes4EfMB8 + prerelease: false + published_at: "2022-08-24T22:06:45Z" + tag_name: v0145.4 + tarball_url: https://api.github.com/repos/helmfile/helmfile/tarball/v0145.4 + target_commitish: main + upload_url: https://uploads.github.com/repos/helmfile/helmfile/releases/75284604/assets{?name,label} + url: https://api.github.com/repos/helmfile/helmfile/releases/75284604 + zipball_url: https://api.github.com/repos/helmfile/helmfile/zipball/v0145.4 + runner: + 2.309.0: + githubRelease: + assets: + - browser_download_url: https://github.com/actions/runner/releases/download/v2.309.0/actions-runner-linux-arm-2.309.0-noexternals.tar.gz + content_type: application/octet-stream + created_at: "2023-09-07T16:43:18Z" + download_count: 54 + id: 125010006 + label: "" + name: actions-runner-linux-arm-2.309.0-noexternals.tar.gz + node_id: RA_kwDOCvv-m84Hc4BW + size: 31458036 + state: uploaded + updated_at: "2023-09-07T16:43:20Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/in/15368?v=4 + events_url: https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/github-actions%5Bbot%5D/followers + following_url: https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/apps/github-actions + id: 41898282 + login: github-actions[bot] + node_id: MDM6Qm90NDE4OTgyODI= + organizations_url: https://api.github.com/users/github-actions%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/github-actions%5Bbot%5D/received_events + repos_url: https://api.github.com/users/github-actions%5Bbot%5D/repos + site_admin: false + starred_url: https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/github-actions%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/github-actions%5Bbot%5D + url: https://api.github.com/repos/actions/runner/releases/assets/125010006 + - browser_download_url: https://github.com/actions/runner/releases/download/v2.309.0/actions-runner-linux-arm-2.309.0-noruntime-noexternals.tar.gz + content_type: application/octet-stream + created_at: "2023-09-07T16:43:49Z" + download_count: 48 + id: 125010109 + label: "" + name: actions-runner-linux-arm-2.309.0-noruntime-noexternals.tar.gz + node_id: RA_kwDOCvv-m84Hc4C9 + size: 1882286 + state: uploaded + updated_at: "2023-09-07T16:43:50Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/in/15368?v=4 + events_url: https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/github-actions%5Bbot%5D/followers + following_url: https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/apps/github-actions + id: 41898282 + login: github-actions[bot] + node_id: MDM6Qm90NDE4OTgyODI= + organizations_url: https://api.github.com/users/github-actions%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/github-actions%5Bbot%5D/received_events + repos_url: https://api.github.com/users/github-actions%5Bbot%5D/repos + site_admin: false + starred_url: https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/github-actions%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/github-actions%5Bbot%5D + url: https://api.github.com/repos/actions/runner/releases/assets/125010109 + - browser_download_url: https://github.com/actions/runner/releases/download/v2.309.0/actions-runner-linux-arm-2.309.0-noruntime.tar.gz + content_type: application/octet-stream + created_at: "2023-09-07T16:43:38Z" + download_count: 44 + id: 125010066 + label: "" + name: actions-runner-linux-arm-2.309.0-noruntime.tar.gz + node_id: RA_kwDOCvv-m84Hc4CS + size: 75782809 + state: uploaded + updated_at: "2023-09-07T16:43:40Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/in/15368?v=4 + events_url: https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/github-actions%5Bbot%5D/followers + following_url: https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/apps/github-actions + id: 41898282 + login: github-actions[bot] + node_id: MDM6Qm90NDE4OTgyODI= + organizations_url: https://api.github.com/users/github-actions%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/github-actions%5Bbot%5D/received_events + repos_url: https://api.github.com/users/github-actions%5Bbot%5D/repos + site_admin: false + starred_url: https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/github-actions%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/github-actions%5Bbot%5D + url: https://api.github.com/repos/actions/runner/releases/assets/125010066 + - browser_download_url: https://github.com/actions/runner/releases/download/v2.309.0/actions-runner-linux-arm-2.309.0-trimmedpackages.json + content_type: application/octet-stream + created_at: "2023-09-07T16:43:55Z" + download_count: 64 + id: 125010133 + label: "" + name: actions-runner-linux-arm-2.309.0-trimmedpackages.json + node_id: RA_kwDOCvv-m84Hc4DV + size: 1227 + state: uploaded + updated_at: "2023-09-07T16:43:55Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/in/15368?v=4 + events_url: https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/github-actions%5Bbot%5D/followers + following_url: https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/apps/github-actions + id: 41898282 + login: github-actions[bot] + node_id: MDM6Qm90NDE4OTgyODI= + organizations_url: https://api.github.com/users/github-actions%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/github-actions%5Bbot%5D/received_events + repos_url: https://api.github.com/users/github-actions%5Bbot%5D/repos + site_admin: false + starred_url: https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/github-actions%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/github-actions%5Bbot%5D + url: https://api.github.com/repos/actions/runner/releases/assets/125010133 + - browser_download_url: https://github.com/actions/runner/releases/download/v2.309.0/actions-runner-linux-arm-2.309.0.tar.gz + content_type: application/octet-stream + created_at: "2023-09-07T16:42:59Z" + download_count: 1681 + id: 125009954 + label: "" + name: actions-runner-linux-arm-2.309.0.tar.gz + node_id: RA_kwDOCvv-m84Hc4Ai + size: 105060000 + state: uploaded + updated_at: "2023-09-07T16:43:04Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/in/15368?v=4 + events_url: https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/github-actions%5Bbot%5D/followers + following_url: https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/apps/github-actions + id: 41898282 + login: github-actions[bot] + node_id: MDM6Qm90NDE4OTgyODI= + organizations_url: https://api.github.com/users/github-actions%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/github-actions%5Bbot%5D/received_events + repos_url: https://api.github.com/users/github-actions%5Bbot%5D/repos + site_admin: false + starred_url: https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/github-actions%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/github-actions%5Bbot%5D + url: https://api.github.com/repos/actions/runner/releases/assets/125009954 + - browser_download_url: https://github.com/actions/runner/releases/download/v2.309.0/actions-runner-linux-arm64-2.309.0-noexternals.tar.gz + content_type: application/octet-stream + created_at: "2023-09-07T16:43:20Z" + download_count: 974 + id: 125010008 + label: "" + name: actions-runner-linux-arm64-2.309.0-noexternals.tar.gz + node_id: RA_kwDOCvv-m84Hc4BY + size: 31190029 + state: uploaded + updated_at: "2023-09-07T16:43:22Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/in/15368?v=4 + events_url: https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/github-actions%5Bbot%5D/followers + following_url: https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/apps/github-actions + id: 41898282 + login: github-actions[bot] + node_id: MDM6Qm90NDE4OTgyODI= + organizations_url: https://api.github.com/users/github-actions%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/github-actions%5Bbot%5D/received_events + repos_url: https://api.github.com/users/github-actions%5Bbot%5D/repos + site_admin: false + starred_url: https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/github-actions%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/github-actions%5Bbot%5D + url: https://api.github.com/repos/actions/runner/releases/assets/125010008 + - browser_download_url: https://github.com/actions/runner/releases/download/v2.309.0/actions-runner-linux-arm64-2.309.0-noruntime-noexternals.tar.gz + content_type: application/octet-stream + created_at: "2023-09-07T16:43:50Z" + download_count: 56 + id: 125010112 + label: "" + name: actions-runner-linux-arm64-2.309.0-noruntime-noexternals.tar.gz + node_id: RA_kwDOCvv-m84Hc4DA + size: 1894012 + state: uploaded + updated_at: "2023-09-07T16:43:51Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/in/15368?v=4 + events_url: https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/github-actions%5Bbot%5D/followers + following_url: https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/apps/github-actions + id: 41898282 + login: github-actions[bot] + node_id: MDM6Qm90NDE4OTgyODI= + organizations_url: https://api.github.com/users/github-actions%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/github-actions%5Bbot%5D/received_events + repos_url: https://api.github.com/users/github-actions%5Bbot%5D/repos + site_admin: false + starred_url: https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/github-actions%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/github-actions%5Bbot%5D + url: https://api.github.com/repos/actions/runner/releases/assets/125010112 + - browser_download_url: https://github.com/actions/runner/releases/download/v2.309.0/actions-runner-linux-arm64-2.309.0-noruntime.tar.gz + content_type: application/octet-stream + created_at: "2023-09-07T16:43:41Z" + download_count: 49 + id: 125010077 + label: "" + name: actions-runner-linux-arm64-2.309.0-noruntime.tar.gz + node_id: RA_kwDOCvv-m84Hc4Cd + size: 82065226 + state: uploaded + updated_at: "2023-09-07T16:43:44Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/in/15368?v=4 + events_url: https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/github-actions%5Bbot%5D/followers + following_url: https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/apps/github-actions + id: 41898282 + login: github-actions[bot] + node_id: MDM6Qm90NDE4OTgyODI= + organizations_url: https://api.github.com/users/github-actions%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/github-actions%5Bbot%5D/received_events + repos_url: https://api.github.com/users/github-actions%5Bbot%5D/repos + site_admin: false + starred_url: https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/github-actions%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/github-actions%5Bbot%5D + url: https://api.github.com/repos/actions/runner/releases/assets/125010077 + - browser_download_url: https://github.com/actions/runner/releases/download/v2.309.0/actions-runner-linux-arm64-2.309.0-trimmedpackages.json + content_type: application/octet-stream + created_at: "2023-09-07T16:43:56Z" + download_count: 68 + id: 125010134 + label: "" + name: actions-runner-linux-arm64-2.309.0-trimmedpackages.json + node_id: RA_kwDOCvv-m84Hc4DW + size: 1233 + state: uploaded + updated_at: "2023-09-07T16:43:56Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/in/15368?v=4 + events_url: https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/github-actions%5Bbot%5D/followers + following_url: https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/apps/github-actions + id: 41898282 + login: github-actions[bot] + node_id: MDM6Qm90NDE4OTgyODI= + organizations_url: https://api.github.com/users/github-actions%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/github-actions%5Bbot%5D/received_events + repos_url: https://api.github.com/users/github-actions%5Bbot%5D/repos + site_admin: false + starred_url: https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/github-actions%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/github-actions%5Bbot%5D + url: https://api.github.com/repos/actions/runner/releases/assets/125010134 + - browser_download_url: https://github.com/actions/runner/releases/download/v2.309.0/actions-runner-linux-arm64-2.309.0.tar.gz + content_type: application/octet-stream + created_at: "2023-09-07T16:43:05Z" + download_count: 132423 + id: 125009956 + label: "" + name: actions-runner-linux-arm64-2.309.0.tar.gz + node_id: RA_kwDOCvv-m84Hc4Ak + size: 111061044 + state: uploaded + updated_at: "2023-09-07T16:43:08Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/in/15368?v=4 + events_url: https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/github-actions%5Bbot%5D/followers + following_url: https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/apps/github-actions + id: 41898282 + login: github-actions[bot] + node_id: MDM6Qm90NDE4OTgyODI= + organizations_url: https://api.github.com/users/github-actions%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/github-actions%5Bbot%5D/received_events + repos_url: https://api.github.com/users/github-actions%5Bbot%5D/repos + site_admin: false + starred_url: https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/github-actions%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/github-actions%5Bbot%5D + url: https://api.github.com/repos/actions/runner/releases/assets/125009956 + - browser_download_url: https://github.com/actions/runner/releases/download/v2.309.0/actions-runner-linux-x64-2.309.0-noexternals.tar.gz + content_type: application/octet-stream + created_at: "2023-09-07T16:43:12Z" + download_count: 3209 + id: 125009984 + label: "" + name: actions-runner-linux-x64-2.309.0-noexternals.tar.gz + node_id: RA_kwDOCvv-m84Hc4BA + size: 33546705 + state: uploaded + updated_at: "2023-09-07T16:43:14Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/in/15368?v=4 + events_url: https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/github-actions%5Bbot%5D/followers + following_url: https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/apps/github-actions + id: 41898282 + login: github-actions[bot] + node_id: MDM6Qm90NDE4OTgyODI= + organizations_url: https://api.github.com/users/github-actions%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/github-actions%5Bbot%5D/received_events + repos_url: https://api.github.com/users/github-actions%5Bbot%5D/repos + site_admin: false + starred_url: https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/github-actions%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/github-actions%5Bbot%5D + url: https://api.github.com/repos/actions/runner/releases/assets/125009984 + - browser_download_url: https://github.com/actions/runner/releases/download/v2.309.0/actions-runner-linux-x64-2.309.0-noruntime-noexternals.tar.gz + content_type: application/octet-stream + created_at: "2023-09-07T16:43:46Z" + download_count: 120 + id: 125010100 + label: "" + name: actions-runner-linux-x64-2.309.0-noruntime-noexternals.tar.gz + node_id: RA_kwDOCvv-m84Hc4C0 + size: 1966713 + state: uploaded + updated_at: "2023-09-07T16:43:47Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/in/15368?v=4 + events_url: https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/github-actions%5Bbot%5D/followers + following_url: https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/apps/github-actions + id: 41898282 + login: github-actions[bot] + node_id: MDM6Qm90NDE4OTgyODI= + organizations_url: https://api.github.com/users/github-actions%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/github-actions%5Bbot%5D/received_events + repos_url: https://api.github.com/users/github-actions%5Bbot%5D/repos + site_admin: false + starred_url: https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/github-actions%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/github-actions%5Bbot%5D + url: https://api.github.com/repos/actions/runner/releases/assets/125010100 + - browser_download_url: https://github.com/actions/runner/releases/download/v2.309.0/actions-runner-linux-x64-2.309.0-noruntime.tar.gz + content_type: application/octet-stream + created_at: "2023-09-07T16:43:27Z" + download_count: 58 + id: 125010024 + label: "" + name: actions-runner-linux-x64-2.309.0-noruntime.tar.gz + node_id: RA_kwDOCvv-m84Hc4Bo + size: 156097174 + state: uploaded + updated_at: "2023-09-07T16:43:31Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/in/15368?v=4 + events_url: https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/github-actions%5Bbot%5D/followers + following_url: https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/apps/github-actions + id: 41898282 + login: github-actions[bot] + node_id: MDM6Qm90NDE4OTgyODI= + organizations_url: https://api.github.com/users/github-actions%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/github-actions%5Bbot%5D/received_events + repos_url: https://api.github.com/users/github-actions%5Bbot%5D/repos + site_admin: false + starred_url: https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/github-actions%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/github-actions%5Bbot%5D + url: https://api.github.com/repos/actions/runner/releases/assets/125010024 + - browser_download_url: https://github.com/actions/runner/releases/download/v2.309.0/actions-runner-linux-x64-2.309.0-trimmedpackages.json + content_type: application/octet-stream + created_at: "2023-09-07T16:43:53Z" + download_count: 531 + id: 125010128 + label: "" + name: actions-runner-linux-x64-2.309.0-trimmedpackages.json + node_id: RA_kwDOCvv-m84Hc4DQ + size: 1227 + state: uploaded + updated_at: "2023-09-07T16:43:53Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/in/15368?v=4 + events_url: https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/github-actions%5Bbot%5D/followers + following_url: https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/apps/github-actions + id: 41898282 + login: github-actions[bot] + node_id: MDM6Qm90NDE4OTgyODI= + organizations_url: https://api.github.com/users/github-actions%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/github-actions%5Bbot%5D/received_events + repos_url: https://api.github.com/users/github-actions%5Bbot%5D/repos + site_admin: false + starred_url: https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/github-actions%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/github-actions%5Bbot%5D + url: https://api.github.com/repos/actions/runner/releases/assets/125010128 + - browser_download_url: https://github.com/actions/runner/releases/download/v2.309.0/actions-runner-linux-x64-2.309.0.tar.gz + content_type: application/octet-stream + created_at: "2023-09-07T16:42:45Z" + download_count: 967486 + id: 125009948 + label: "" + name: actions-runner-linux-x64-2.309.0.tar.gz + node_id: RA_kwDOCvv-m84Hc4Ac + size: 187373960 + state: uploaded + updated_at: "2023-09-07T16:42:50Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/in/15368?v=4 + events_url: https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/github-actions%5Bbot%5D/followers + following_url: https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/apps/github-actions + id: 41898282 + login: github-actions[bot] + node_id: MDM6Qm90NDE4OTgyODI= + organizations_url: https://api.github.com/users/github-actions%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/github-actions%5Bbot%5D/received_events + repos_url: https://api.github.com/users/github-actions%5Bbot%5D/repos + site_admin: false + starred_url: https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/github-actions%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/github-actions%5Bbot%5D + url: https://api.github.com/repos/actions/runner/releases/assets/125009948 + - browser_download_url: https://github.com/actions/runner/releases/download/v2.309.0/actions-runner-osx-arm64-2.309.0-noexternals.tar.gz + content_type: application/octet-stream + created_at: "2023-09-07T16:43:16Z" + download_count: 45 + id: 125010002 + label: "" + name: actions-runner-osx-arm64-2.309.0-noexternals.tar.gz + node_id: RA_kwDOCvv-m84Hc4BS + size: 30978378 + state: uploaded + updated_at: "2023-09-07T16:43:17Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/in/15368?v=4 + events_url: https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/github-actions%5Bbot%5D/followers + following_url: https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/apps/github-actions + id: 41898282 + login: github-actions[bot] + node_id: MDM6Qm90NDE4OTgyODI= + organizations_url: https://api.github.com/users/github-actions%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/github-actions%5Bbot%5D/received_events + repos_url: https://api.github.com/users/github-actions%5Bbot%5D/repos + site_admin: false + starred_url: https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/github-actions%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/github-actions%5Bbot%5D + url: https://api.github.com/repos/actions/runner/releases/assets/125010002 + - browser_download_url: https://github.com/actions/runner/releases/download/v2.309.0/actions-runner-osx-arm64-2.309.0-noruntime-noexternals.tar.gz + content_type: application/octet-stream + created_at: "2023-09-07T16:43:48Z" + download_count: 47 + id: 125010107 + label: "" + name: actions-runner-osx-arm64-2.309.0-noruntime-noexternals.tar.gz + node_id: RA_kwDOCvv-m84Hc4C7 + size: 1901789 + state: uploaded + updated_at: "2023-09-07T16:43:49Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/in/15368?v=4 + events_url: https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/github-actions%5Bbot%5D/followers + following_url: https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/apps/github-actions + id: 41898282 + login: github-actions[bot] + node_id: MDM6Qm90NDE4OTgyODI= + organizations_url: https://api.github.com/users/github-actions%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/github-actions%5Bbot%5D/received_events + repos_url: https://api.github.com/users/github-actions%5Bbot%5D/repos + site_admin: false + starred_url: https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/github-actions%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/github-actions%5Bbot%5D + url: https://api.github.com/repos/actions/runner/releases/assets/125010107 + - browser_download_url: https://github.com/actions/runner/releases/download/v2.309.0/actions-runner-osx-arm64-2.309.0-noruntime.tar.gz + content_type: application/octet-stream + created_at: "2023-09-07T16:43:35Z" + download_count: 50 + id: 125010050 + label: "" + name: actions-runner-osx-arm64-2.309.0-noruntime.tar.gz + node_id: RA_kwDOCvv-m84Hc4CC + size: 74225692 + state: uploaded + updated_at: "2023-09-07T16:43:37Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/in/15368?v=4 + events_url: https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/github-actions%5Bbot%5D/followers + following_url: https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/apps/github-actions + id: 41898282 + login: github-actions[bot] + node_id: MDM6Qm90NDE4OTgyODI= + organizations_url: https://api.github.com/users/github-actions%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/github-actions%5Bbot%5D/received_events + repos_url: https://api.github.com/users/github-actions%5Bbot%5D/repos + site_admin: false + starred_url: https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/github-actions%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/github-actions%5Bbot%5D + url: https://api.github.com/repos/actions/runner/releases/assets/125010050 + - browser_download_url: https://github.com/actions/runner/releases/download/v2.309.0/actions-runner-osx-arm64-2.309.0-trimmedpackages.json + content_type: application/octet-stream + created_at: "2023-09-07T16:43:54Z" + download_count: 71 + id: 125010131 + label: "" + name: actions-runner-osx-arm64-2.309.0-trimmedpackages.json + node_id: RA_kwDOCvv-m84Hc4DT + size: 1227 + state: uploaded + updated_at: "2023-09-07T16:43:54Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/in/15368?v=4 + events_url: https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/github-actions%5Bbot%5D/followers + following_url: https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/apps/github-actions + id: 41898282 + login: github-actions[bot] + node_id: MDM6Qm90NDE4OTgyODI= + organizations_url: https://api.github.com/users/github-actions%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/github-actions%5Bbot%5D/received_events + repos_url: https://api.github.com/users/github-actions%5Bbot%5D/repos + site_admin: false + starred_url: https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/github-actions%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/github-actions%5Bbot%5D + url: https://api.github.com/repos/actions/runner/releases/assets/125010131 + - browser_download_url: https://github.com/actions/runner/releases/download/v2.309.0/actions-runner-osx-arm64-2.309.0.tar.gz + content_type: application/octet-stream + created_at: "2023-09-07T16:42:55Z" + download_count: 30252 + id: 125009952 + label: "" + name: actions-runner-osx-arm64-2.309.0.tar.gz + node_id: RA_kwDOCvv-m84Hc4Ag + size: 102529225 + state: uploaded + updated_at: "2023-09-07T16:42:58Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/in/15368?v=4 + events_url: https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/github-actions%5Bbot%5D/followers + following_url: https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/apps/github-actions + id: 41898282 + login: github-actions[bot] + node_id: MDM6Qm90NDE4OTgyODI= + organizations_url: https://api.github.com/users/github-actions%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/github-actions%5Bbot%5D/received_events + repos_url: https://api.github.com/users/github-actions%5Bbot%5D/repos + site_admin: false + starred_url: https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/github-actions%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/github-actions%5Bbot%5D + url: https://api.github.com/repos/actions/runner/releases/assets/125009952 + - browser_download_url: https://github.com/actions/runner/releases/download/v2.309.0/actions-runner-osx-x64-2.309.0-noexternals.tar.gz + content_type: application/octet-stream + created_at: "2023-09-07T16:43:14Z" + download_count: 160 + id: 125009999 + label: "" + name: actions-runner-osx-x64-2.309.0-noexternals.tar.gz + node_id: RA_kwDOCvv-m84Hc4BP + size: 32894952 + state: uploaded + updated_at: "2023-09-07T16:43:16Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/in/15368?v=4 + events_url: https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/github-actions%5Bbot%5D/followers + following_url: https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/apps/github-actions + id: 41898282 + login: github-actions[bot] + node_id: MDM6Qm90NDE4OTgyODI= + organizations_url: https://api.github.com/users/github-actions%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/github-actions%5Bbot%5D/received_events + repos_url: https://api.github.com/users/github-actions%5Bbot%5D/repos + site_admin: false + starred_url: https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/github-actions%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/github-actions%5Bbot%5D + url: https://api.github.com/repos/actions/runner/releases/assets/125009999 + - browser_download_url: https://github.com/actions/runner/releases/download/v2.309.0/actions-runner-osx-x64-2.309.0-noruntime-noexternals.tar.gz + content_type: application/octet-stream + created_at: "2023-09-07T16:43:47Z" + download_count: 118 + id: 125010104 + label: "" + name: actions-runner-osx-x64-2.309.0-noruntime-noexternals.tar.gz + node_id: RA_kwDOCvv-m84Hc4C4 + size: 1903463 + state: uploaded + updated_at: "2023-09-07T16:43:48Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/in/15368?v=4 + events_url: https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/github-actions%5Bbot%5D/followers + following_url: https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/apps/github-actions + id: 41898282 + login: github-actions[bot] + node_id: MDM6Qm90NDE4OTgyODI= + organizations_url: https://api.github.com/users/github-actions%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/github-actions%5Bbot%5D/received_events + repos_url: https://api.github.com/users/github-actions%5Bbot%5D/repos + site_admin: false + starred_url: https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/github-actions%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/github-actions%5Bbot%5D + url: https://api.github.com/repos/actions/runner/releases/assets/125010104 + - browser_download_url: https://github.com/actions/runner/releases/download/v2.309.0/actions-runner-osx-x64-2.309.0-noruntime.tar.gz + content_type: application/octet-stream + created_at: "2023-09-07T16:43:32Z" + download_count: 45 + id: 125010038 + label: "" + name: actions-runner-osx-x64-2.309.0-noruntime.tar.gz + node_id: RA_kwDOCvv-m84Hc4B2 + size: 77291891 + state: uploaded + updated_at: "2023-09-07T16:43:35Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/in/15368?v=4 + events_url: https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/github-actions%5Bbot%5D/followers + following_url: https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/apps/github-actions + id: 41898282 + login: github-actions[bot] + node_id: MDM6Qm90NDE4OTgyODI= + organizations_url: https://api.github.com/users/github-actions%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/github-actions%5Bbot%5D/received_events + repos_url: https://api.github.com/users/github-actions%5Bbot%5D/repos + site_admin: false + starred_url: https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/github-actions%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/github-actions%5Bbot%5D + url: https://api.github.com/repos/actions/runner/releases/assets/125010038 + - browser_download_url: https://github.com/actions/runner/releases/download/v2.309.0/actions-runner-osx-x64-2.309.0-trimmedpackages.json + content_type: application/octet-stream + created_at: "2023-09-07T16:43:54Z" + download_count: 718 + id: 125010130 + label: "" + name: actions-runner-osx-x64-2.309.0-trimmedpackages.json + node_id: RA_kwDOCvv-m84Hc4DS + size: 1221 + state: uploaded + updated_at: "2023-09-07T16:43:54Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/in/15368?v=4 + events_url: https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/github-actions%5Bbot%5D/followers + following_url: https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/apps/github-actions + id: 41898282 + login: github-actions[bot] + node_id: MDM6Qm90NDE4OTgyODI= + organizations_url: https://api.github.com/users/github-actions%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/github-actions%5Bbot%5D/received_events + repos_url: https://api.github.com/users/github-actions%5Bbot%5D/repos + site_admin: false + starred_url: https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/github-actions%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/github-actions%5Bbot%5D + url: https://api.github.com/repos/actions/runner/releases/assets/125010130 + - browser_download_url: https://github.com/actions/runner/releases/download/v2.309.0/actions-runner-osx-x64-2.309.0.tar.gz + content_type: application/octet-stream + created_at: "2023-09-07T16:42:51Z" + download_count: 21884 + id: 125009950 + label: "" + name: actions-runner-osx-x64-2.309.0.tar.gz + node_id: RA_kwDOCvv-m84Hc4Ae + size: 107488924 + state: uploaded + updated_at: "2023-09-07T16:42:54Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/in/15368?v=4 + events_url: https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/github-actions%5Bbot%5D/followers + following_url: https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/apps/github-actions + id: 41898282 + login: github-actions[bot] + node_id: MDM6Qm90NDE4OTgyODI= + organizations_url: https://api.github.com/users/github-actions%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/github-actions%5Bbot%5D/received_events + repos_url: https://api.github.com/users/github-actions%5Bbot%5D/repos + site_admin: false + starred_url: https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/github-actions%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/github-actions%5Bbot%5D + url: https://api.github.com/repos/actions/runner/releases/assets/125009950 + - browser_download_url: https://github.com/actions/runner/releases/download/v2.309.0/actions-runner-win-arm64-2.309.0-noexternals.zip + content_type: application/octet-stream + created_at: "2023-09-07T16:43:10Z" + download_count: 37 + id: 125009977 + label: "" + name: actions-runner-win-arm64-2.309.0-noexternals.zip + node_id: RA_kwDOCvv-m84Hc4A5 + size: 32192099 + state: uploaded + updated_at: "2023-09-07T16:43:12Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/in/15368?v=4 + events_url: https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/github-actions%5Bbot%5D/followers + following_url: https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/apps/github-actions + id: 41898282 + login: github-actions[bot] + node_id: MDM6Qm90NDE4OTgyODI= + organizations_url: https://api.github.com/users/github-actions%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/github-actions%5Bbot%5D/received_events + repos_url: https://api.github.com/users/github-actions%5Bbot%5D/repos + site_admin: false + starred_url: https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/github-actions%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/github-actions%5Bbot%5D + url: https://api.github.com/repos/actions/runner/releases/assets/125009977 + - browser_download_url: https://github.com/actions/runner/releases/download/v2.309.0/actions-runner-win-arm64-2.309.0-noruntime-noexternals.zip + content_type: application/octet-stream + created_at: "2023-09-07T16:43:45Z" + download_count: 30 + id: 125010095 + label: "" + name: actions-runner-win-arm64-2.309.0-noruntime-noexternals.zip + node_id: RA_kwDOCvv-m84Hc4Cv + size: 2053104 + state: uploaded + updated_at: "2023-09-07T16:43:46Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/in/15368?v=4 + events_url: https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/github-actions%5Bbot%5D/followers + following_url: https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/apps/github-actions + id: 41898282 + login: github-actions[bot] + node_id: MDM6Qm90NDE4OTgyODI= + organizations_url: https://api.github.com/users/github-actions%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/github-actions%5Bbot%5D/received_events + repos_url: https://api.github.com/users/github-actions%5Bbot%5D/repos + site_admin: false + starred_url: https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/github-actions%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/github-actions%5Bbot%5D + url: https://api.github.com/repos/actions/runner/releases/assets/125010095 + - browser_download_url: https://github.com/actions/runner/releases/download/v2.309.0/actions-runner-win-arm64-2.309.0-noruntime.zip + content_type: application/octet-stream + created_at: "2023-09-07T16:43:25Z" + download_count: 28 + id: 125010016 + label: "" + name: actions-runner-win-arm64-2.309.0-noruntime.zip + node_id: RA_kwDOCvv-m84Hc4Bg + size: 49616668 + state: uploaded + updated_at: "2023-09-07T16:43:26Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/in/15368?v=4 + events_url: https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/github-actions%5Bbot%5D/followers + following_url: https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/apps/github-actions + id: 41898282 + login: github-actions[bot] + node_id: MDM6Qm90NDE4OTgyODI= + organizations_url: https://api.github.com/users/github-actions%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/github-actions%5Bbot%5D/received_events + repos_url: https://api.github.com/users/github-actions%5Bbot%5D/repos + site_admin: false + starred_url: https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/github-actions%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/github-actions%5Bbot%5D + url: https://api.github.com/repos/actions/runner/releases/assets/125010016 + - browser_download_url: https://github.com/actions/runner/releases/download/v2.309.0/actions-runner-win-arm64-2.309.0-trimmedpackages.json + content_type: application/octet-stream + created_at: "2023-09-07T16:43:52Z" + download_count: 38 + id: 125010117 + label: "" + name: actions-runner-win-arm64-2.309.0-trimmedpackages.json + node_id: RA_kwDOCvv-m84Hc4DF + size: 1247 + state: uploaded + updated_at: "2023-09-07T16:43:52Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/in/15368?v=4 + events_url: https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/github-actions%5Bbot%5D/followers + following_url: https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/apps/github-actions + id: 41898282 + login: github-actions[bot] + node_id: MDM6Qm90NDE4OTgyODI= + organizations_url: https://api.github.com/users/github-actions%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/github-actions%5Bbot%5D/received_events + repos_url: https://api.github.com/users/github-actions%5Bbot%5D/repos + site_admin: false + starred_url: https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/github-actions%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/github-actions%5Bbot%5D + url: https://api.github.com/repos/actions/runner/releases/assets/125010117 + - browser_download_url: https://github.com/actions/runner/releases/download/v2.309.0/actions-runner-win-arm64-2.309.0.zip + content_type: application/octet-stream + created_at: "2023-09-07T16:42:42Z" + download_count: 177 + id: 125009941 + label: "" + name: actions-runner-win-arm64-2.309.0.zip + node_id: RA_kwDOCvv-m84Hc4AV + size: 79449155 + state: uploaded + updated_at: "2023-09-07T16:42:44Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/in/15368?v=4 + events_url: https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/github-actions%5Bbot%5D/followers + following_url: https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/apps/github-actions + id: 41898282 + login: github-actions[bot] + node_id: MDM6Qm90NDE4OTgyODI= + organizations_url: https://api.github.com/users/github-actions%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/github-actions%5Bbot%5D/received_events + repos_url: https://api.github.com/users/github-actions%5Bbot%5D/repos + site_admin: false + starred_url: https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/github-actions%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/github-actions%5Bbot%5D + url: https://api.github.com/repos/actions/runner/releases/assets/125009941 + - browser_download_url: https://github.com/actions/runner/releases/download/v2.309.0/actions-runner-win-x64-2.309.0-noexternals.zip + content_type: application/octet-stream + created_at: "2023-09-07T16:43:08Z" + download_count: 23 + id: 125009973 + label: "" + name: actions-runner-win-x64-2.309.0-noexternals.zip + node_id: RA_kwDOCvv-m84Hc4A1 + size: 34818463 + state: uploaded + updated_at: "2023-09-07T16:43:10Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/in/15368?v=4 + events_url: https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/github-actions%5Bbot%5D/followers + following_url: https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/apps/github-actions + id: 41898282 + login: github-actions[bot] + node_id: MDM6Qm90NDE4OTgyODI= + organizations_url: https://api.github.com/users/github-actions%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/github-actions%5Bbot%5D/received_events + repos_url: https://api.github.com/users/github-actions%5Bbot%5D/repos + site_admin: false + starred_url: https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/github-actions%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/github-actions%5Bbot%5D + url: https://api.github.com/repos/actions/runner/releases/assets/125009973 + - browser_download_url: https://github.com/actions/runner/releases/download/v2.309.0/actions-runner-win-x64-2.309.0-noruntime-noexternals.zip + content_type: application/octet-stream + created_at: "2023-09-07T16:43:44Z" + download_count: 19 + id: 125010091 + label: "" + name: actions-runner-win-x64-2.309.0-noruntime-noexternals.zip + node_id: RA_kwDOCvv-m84Hc4Cr + size: 2079061 + state: uploaded + updated_at: "2023-09-07T16:43:45Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/in/15368?v=4 + events_url: https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/github-actions%5Bbot%5D/followers + following_url: https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/apps/github-actions + id: 41898282 + login: github-actions[bot] + node_id: MDM6Qm90NDE4OTgyODI= + organizations_url: https://api.github.com/users/github-actions%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/github-actions%5Bbot%5D/received_events + repos_url: https://api.github.com/users/github-actions%5Bbot%5D/repos + site_admin: false + starred_url: https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/github-actions%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/github-actions%5Bbot%5D + url: https://api.github.com/repos/actions/runner/releases/assets/125010091 + - browser_download_url: https://github.com/actions/runner/releases/download/v2.309.0/actions-runner-win-x64-2.309.0-noruntime.zip + content_type: application/octet-stream + created_at: "2023-09-07T16:43:22Z" + download_count: 19 + id: 125010010 + label: "" + name: actions-runner-win-x64-2.309.0-noruntime.zip + node_id: RA_kwDOCvv-m84Hc4Ba + size: 55427873 + state: uploaded + updated_at: "2023-09-07T16:43:24Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/in/15368?v=4 + events_url: https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/github-actions%5Bbot%5D/followers + following_url: https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/apps/github-actions + id: 41898282 + login: github-actions[bot] + node_id: MDM6Qm90NDE4OTgyODI= + organizations_url: https://api.github.com/users/github-actions%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/github-actions%5Bbot%5D/received_events + repos_url: https://api.github.com/users/github-actions%5Bbot%5D/repos + site_admin: false + starred_url: https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/github-actions%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/github-actions%5Bbot%5D + url: https://api.github.com/repos/actions/runner/releases/assets/125010010 + - browser_download_url: https://github.com/actions/runner/releases/download/v2.309.0/actions-runner-win-x64-2.309.0-trimmedpackages.json + content_type: application/octet-stream + created_at: "2023-09-07T16:43:51Z" + download_count: 438 + id: 125010115 + label: "" + name: actions-runner-win-x64-2.309.0-trimmedpackages.json + node_id: RA_kwDOCvv-m84Hc4DD + size: 1241 + state: uploaded + updated_at: "2023-09-07T16:43:52Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/in/15368?v=4 + events_url: https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/github-actions%5Bbot%5D/followers + following_url: https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/apps/github-actions + id: 41898282 + login: github-actions[bot] + node_id: MDM6Qm90NDE4OTgyODI= + organizations_url: https://api.github.com/users/github-actions%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/github-actions%5Bbot%5D/received_events + repos_url: https://api.github.com/users/github-actions%5Bbot%5D/repos + site_admin: false + starred_url: https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/github-actions%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/github-actions%5Bbot%5D + url: https://api.github.com/repos/actions/runner/releases/assets/125010115 + - browser_download_url: https://github.com/actions/runner/releases/download/v2.309.0/actions-runner-win-x64-2.309.0.zip + content_type: application/octet-stream + created_at: "2023-09-07T16:42:38Z" + download_count: 65189 + id: 125009938 + label: "" + name: actions-runner-win-x64-2.309.0.zip + node_id: RA_kwDOCvv-m84Hc4AS + size: 87860998 + state: uploaded + updated_at: "2023-09-07T16:42:41Z" + uploader: + avatar_url: https://avatars.githubusercontent.com/in/15368?v=4 + events_url: https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/github-actions%5Bbot%5D/followers + following_url: https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/apps/github-actions + id: 41898282 + login: github-actions[bot] + node_id: MDM6Qm90NDE4OTgyODI= + organizations_url: https://api.github.com/users/github-actions%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/github-actions%5Bbot%5D/received_events + repos_url: https://api.github.com/users/github-actions%5Bbot%5D/repos + site_admin: false + starred_url: https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/github-actions%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/github-actions%5Bbot%5D + url: https://api.github.com/repos/actions/runner/releases/assets/125009938 + assets_url: https://api.github.com/repos/actions/runner/releases/120317803/assets + author: + avatar_url: https://avatars.githubusercontent.com/in/15368?v=4 + events_url: https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/github-actions%5Bbot%5D/followers + following_url: https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id} + gravatar_id: "" + html_url: https://github.com/apps/github-actions + id: 41898282 + login: github-actions[bot] + node_id: MDM6Qm90NDE4OTgyODI= + organizations_url: https://api.github.com/users/github-actions%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/github-actions%5Bbot%5D/received_events + repos_url: https://api.github.com/users/github-actions%5Bbot%5D/repos + site_admin: false + starred_url: https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/github-actions%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/github-actions%5Bbot%5D + body: "## What's Changed\n* Bump @types/node from 12.12.14 to 20.4.10 in + /src/Misc/expressionFunc/hashFiles by @dependabot in https://github.com/actions/runner/pull/2759\n* + Trace x-github-request-id when download action tarball. by @TingluoHuang + in https://github.com/actions/runner/pull/2755\n* Fix typo by @kyanny + in https://github.com/actions/runner/pull/2741\n* Bump prettier from 3.0.1 + to 3.0.2 in /src/Misc/expressionFunc/hashFiles by @dependabot in https://github.com/actions/runner/pull/2772\n* + Bump @types/node from 20.4.10 to 20.5.0 in /src/Misc/expressionFunc/hashFiles + by @dependabot in https://github.com/actions/runner/pull/2773\n* Revert + \"Fixed a bug where a misplaced `=` character could bypass here… by @cory-miller + in https://github.com/actions/runner/pull/2774\n* Filter NODE_OPTIONS + from env for file output by @cory-miller in https://github.com/actions/runner/pull/2775\n* + Bump @types/node from 20.5.0 to 20.5.1 in /src/Misc/expressionFunc/hashFiles + by @dependabot in https://github.com/actions/runner/pull/2781\n* Update + Docker Version in Images by @ajschmidt8 in https://github.com/actions/runner/pull/2694\n* + Bump @types/node from 20.5.1 to 20.5.4 in /src/Misc/expressionFunc/hashFiles + by @dependabot in https://github.com/actions/runner/pull/2789\n* Bump + @typescript-eslint/parser from 6.4.0 to 6.4.1 in /src/Misc/expressionFunc/hashFiles + by @dependabot in https://github.com/actions/runner/pull/2785\n* Bump + Microsoft.AspNet.WebApi.Client from 5.2.4 to 5.2.9 in /src by @dependabot + in https://github.com/actions/runner/pull/2751\n* Bump System.Buffers + from 4.3.0 to 4.5.1 in /src by @dependabot in https://github.com/actions/runner/pull/2749\n* + Bump dotnet/runtime-deps from 6.0-jammy to 7.0-jammy in /images by @dependabot + in https://github.com/actions/runner/pull/2745\n* Remove need to manually + compile JS binary for hashFiles utility by @vanZeben in https://github.com/actions/runner/pull/2770\n* + Revert \"Bump dotnet/runtime-deps from 6.0-jammy to 7.0-jammy in /images\" + by @TingluoHuang in https://github.com/actions/runner/pull/2790\n* Query + runner by name on server side. by @TingluoHuang in https://github.com/actions/runner/pull/2771\n* + Bump typescript from 5.1.6 to 5.2.2 in /src/Misc/expressionFunc/hashFiles + by @dependabot in https://github.com/actions/runner/pull/2795\n* Bump + @types/node from 20.5.4 to 20.5.6 in /src/Misc/expressionFunc/hashFiles + by @dependabot in https://github.com/actions/runner/pull/2796\n* Bump + Newtonsoft.Json from 13.0.1 to 13.0.3 in /src by @dependabot in https://github.com/actions/runner/pull/2797\n* + Support replacing runners in v2 flow by @luketomlinson in https://github.com/actions/runner/pull/2791\n* + Delegating handler for Http redirects by @paveliak in https://github.com/actions/runner/pull/2814\n* + Add references to the firewall requirements docs by @paveliak in https://github.com/actions/runner/pull/2815\n* + Create automated workflow that will auto-generate dotnet sdk patches by + @vanZeben in https://github.com/actions/runner/pull/2776\n* Fixes minor + issues with using proper output varaibles by @vanZeben in https://github.com/actions/runner/pull/2818\n* + Throw NonRetryableException on GetNextMessage from broker as needed. by + @TingluoHuang in https://github.com/actions/runner/pull/2828\n* Mark action + download failures as infra failures by @cory-miller in https://github.com/actions/runner/pull/2827\n\n## + New Contributors\n* @kyanny made their first contribution in https://github.com/actions/runner/pull/2741\n* + @ajschmidt8 made their first contribution in https://github.com/actions/runner/pull/2694\n\n**Full + Changelog**: https://github.com/actions/runner/compare/v2.308.0...v2.309.0\n\n_Note: + Actions Runner follows a progressive release policy, so the latest release + might not be available to your enterprise, organization, or repository + yet. \nTo confirm which version of the Actions Runner you should expect, + please view the download instructions for your enterprise, organization, + or repository. \nSee https://docs.github.com/en/enterprise-cloud@latest/actions/hosting-your-own-runners/adding-self-hosted-runners_\n\n## + Windows x64\nWe recommend configuring the runner in a root folder of the + Windows drive (e.g. \"C:\\actions-runner\"). This will help avoid issues + related to service identity folder permissions and long file path restrictions + on Windows.\n\nThe following snipped needs to be run on `powershell`:\n``` + powershell\n# Create a folder under the drive root\nmkdir \\actions-runner + ; cd \\actions-runner\n# Download the latest runner package\nInvoke-WebRequest + -Uri https://github.com/actions/runner/releases/download/v2.309.0/actions-runner-win-x64-2.309.0.zip + -OutFile actions-runner-win-x64-2.309.0.zip\n# Extract the installer\nAdd-Type + -AssemblyName System.IO.Compression.FileSystem ;\n[System.IO.Compression.ZipFile]::ExtractToDirectory(\"$PWD\\actions-runner-win-x64-2.309.0.zip\", + \"$PWD\")\n```\n\n## [Pre-release] Windows arm64\n**Warning:** Windows + arm64 runners are currently in preview status and use [unofficial versions + of nodejs](https://unofficial-builds.nodejs.org/). They are not intended + for production workflows.\n\nWe recommend configuring the runner in a + root folder of the Windows drive (e.g. \"C:\\actions-runner\"). This will + help avoid issues related to service identity folder permissions and long + file path restrictions on Windows.\n\nThe following snipped needs to be + run on `powershell`:\n``` powershell\n# Create a folder under the drive + root\nmkdir \\actions-runner ; cd \\actions-runner\n# Download the latest + runner package\nInvoke-WebRequest -Uri https://github.com/actions/runner/releases/download/v2.309.0/actions-runner-win-arm64-2.309.0.zip + -OutFile actions-runner-win-arm64-2.309.0.zip\n# Extract the installer\nAdd-Type + -AssemblyName System.IO.Compression.FileSystem ;\n[System.IO.Compression.ZipFile]::ExtractToDirectory(\"$PWD\\actions-runner-win-arm64-2.309.0.zip\", + \"$PWD\")\n```\n\n## OSX x64\n\n``` bash\n# Create a folder\nmkdir actions-runner + && cd actions-runner\n# Download the latest runner package\ncurl -O -L + https://github.com/actions/runner/releases/download/v2.309.0/actions-runner-osx-x64-2.309.0.tar.gz\n# + Extract the installer\ntar xzf ./actions-runner-osx-x64-2.309.0.tar.gz\n```\n\n## + OSX arm64 (Apple silicon)\n\n``` bash\n# Create a folder\nmkdir actions-runner + && cd actions-runner\n# Download the latest runner package\ncurl -O -L + https://github.com/actions/runner/releases/download/v2.309.0/actions-runner-osx-arm64-2.309.0.tar.gz\n# + Extract the installer\ntar xzf ./actions-runner-osx-arm64-2.309.0.tar.gz\n```\n\n## + Linux x64\n\n``` bash\n# Create a folder\nmkdir actions-runner && cd actions-runner\n# + Download the latest runner package\ncurl -O -L https://github.com/actions/runner/releases/download/v2.309.0/actions-runner-linux-x64-2.309.0.tar.gz\n# + Extract the installer\ntar xzf ./actions-runner-linux-x64-2.309.0.tar.gz\n```\n\n## + Linux arm64\n\n``` bash\n# Create a folder\nmkdir actions-runner && cd + actions-runner\n# Download the latest runner package\ncurl -O -L https://github.com/actions/runner/releases/download/v2.309.0/actions-runner-linux-arm64-2.309.0.tar.gz\n# + Extract the installer\ntar xzf ./actions-runner-linux-arm64-2.309.0.tar.gz\n```\n\n## + Linux arm\n\n``` bash\n# Create a folder\nmkdir actions-runner && cd actions-runner\n# + Download the latest runner package\ncurl -O -L https://github.com/actions/runner/releases/download/v2.309.0/actions-runner-linux-arm-2.309.0.tar.gz\n# + Extract the installer\ntar xzf ./actions-runner-linux-arm-2.309.0.tar.gz\n```\n\n## + Using your self hosted runner\nFor additional details about configuring, + running, or shutting down the runner please check out our [product docs.](https://help.github.com/en/actions/automating-your-workflow-with-github-actions/adding-self-hosted-runners)\n\n## + SHA-256 Checksums\n\nThe SHA-256 checksums for the packages included in + this build are shown below:\n\n- actions-runner-win-x64-2.309.0.zip cd1920154e365689130aa1f90258e0da47faecce547d0374475cdd2554dbf09a\n- actions-runner-win-arm64-2.309.0.zip 114d11ba8b95c22946c642cc9190c2214f6a2da60c2996ae26e2d9dc176f994e\n- actions-runner-osx-x64-2.309.0.tar.gz cce9394ff3e619d24c6a285fb2a633202c115f058437675b53fedd8fb01ec7ce\n- actions-runner-osx-arm64-2.309.0.tar.gz 67c1accb9cdc2138fc797d379c295896c01c8f5f4240e7e674f99a492bd1c668\n- actions-runner-linux-x64-2.309.0.tar.gz 2974243bab2a282349ac833475d241d5273605d3628f0685bd07fb5530f9bb1a\n- actions-runner-linux-arm64-2.309.0.tar.gz b172da68eef96d552534294e4fb0a3ff524e945fc5d955666bab24eccc6ed149\n- actions-runner-linux-arm-2.309.0.tar.gz 97d3c06c8e2b33fcab4c5afd0237e596c52cc4450465382bcbd49a4b23b978a9\n\n- actions-runner-win-x64-2.309.0-noexternals.zip + 3be84215fa5658db013da201d38abd147bfbc48bf8775c62b2da8b760a1a9afe\n- actions-runner-win-arm64-2.309.0-noexternals.zip + 914d512a90bb9b090701cffb11bb4b413d2f7a9e09e7ddad7c3b2d439c090461\n- actions-runner-osx-x64-2.309.0-noexternals.tar.gz + 4397b8b0722b2223e50a7490720059786ce7429e8e5de81905671562f0a2291e\n- actions-runner-osx-arm64-2.309.0-noexternals.tar.gz + ebe017bde8ea8939ef1633f003b03bc5c461e0fc843e477e21d4df402d08abde\n- actions-runner-linux-x64-2.309.0-noexternals.tar.gz + 58ae2e9e6425f4acab67fbdaf6362f8cb893d5884a660ef1b0f3d983af3df1e0\n- actions-runner-linux-arm64-2.309.0-noexternals.tar.gz + de2cbc67d23eb3c479bc7e6c24abb74a589d8ce7f6c2aa1fc0bf4313b5e40137\n- actions-runner-linux-arm-2.309.0-noexternals.tar.gz + 3a11f10e5a6ea0863ba2632dcb306f0b74b19847b3dfacc99f6b55caed686a87\n\n- actions-runner-win-x64-2.309.0-noruntime.zip + 616ec4a8136904c5c86f14876e81021c4ee03a84fce4be5ec87f7ec0cdc8f592\n- actions-runner-win-arm64-2.309.0-noruntime.zip + 458cb2c633ccee2bc43672df8e26f6e6ead45462dcb8077f8e8a2609cc3bc85e\n- actions-runner-osx-x64-2.309.0-noruntime.tar.gz + 5a25714a62d1956a4fc4b15a57915a5c66105e7236705953f44389944c7b1060\n- actions-runner-osx-arm64-2.309.0-noruntime.tar.gz + 24636abd7715d695a7759989fd73712613dfcb52859cf8aee4951e8ccb6ce404\n- actions-runner-linux-x64-2.309.0-noruntime.tar.gz + 6d5fe6cd7572bff379c790baf7fdcf7e4264dac2cafa4afc831901a6a63b4781\n- actions-runner-linux-arm64-2.309.0-noruntime.tar.gz + 94d01d7da1311064660e7199b9d50c06d6b9e9116950ba00732a1ceecddf9881\n- actions-runner-linux-arm-2.309.0-noruntime.tar.gz + 96836653790426973a518270b6c8da6d1411635735ac2ce2b447c7e23ec2eb0d\n\n- actions-runner-win-x64-2.309.0-noruntime-noexternals.zip + e64f9f7724dd281e9cb2446fcf821bd1be303e6a09933a061f20387f276b40c2\n- actions-runner-win-arm64-2.309.0-noruntime-noexternals.zip + 6e38a5761d9f520ca08df3f20bca2e1d7aae0e24f25832799caa0bc807c47bcd\n- actions-runner-osx-x64-2.309.0-noruntime-noexternals.tar.gz + a6ec43940746e996bf1a62d2d1eb429b9086704c46254ed24cebdb0283565879\n- actions-runner-osx-arm64-2.309.0-noruntime-noexternals.tar.gz + 9273b0e0d6e22baaa6ca2d44b5092e1a139e97e4a7d95d1d8d5385d98acffdc3\n- actions-runner-linux-x64-2.309.0-noruntime-noexternals.tar.gz + 8433fb0b94c7f29d0685fe548429f6d31ea8faa9f1eb8bded0e374b13cf047e6\n- actions-runner-linux-arm64-2.309.0-noruntime-noexternals.tar.gz + e921dc47d179cd5a00d5a96978e5704fc6b211503020b5b0303cec8da1ae3f0e\n- actions-runner-linux-arm-2.309.0-noruntime-noexternals.tar.gz + 2753ceb5badbabb915bb39fbf98b0959b37bee520ba344ac8d0d73ff70f66ef2" + created_at: "2023-09-07T15:29:00Z" + draft: false + html_url: https://github.com/actions/runner/releases/tag/v2.309.0 + id: 120317803 + mentions_count: 8 + name: v2.309.0 + node_id: RE_kwDOCvv-m84HK-dr + prerelease: false + published_at: "2023-09-07T16:42:37Z" + reactions: + "+1": 4 + "-1": 0 + confused: 0 + eyes: 0 + heart: 0 + hooray: 0 + laugh: 0 + rocket: 1 + total_count: 5 + url: https://api.github.com/repos/actions/runner/releases/120317803/reactions + tag_name: v2.309.0 + tarball_url: https://api.github.com/repos/actions/runner/tarball/v2.309.0 + target_commitish: bdfef345577cb66994787a4166e717744da6379f + upload_url: https://uploads.github.com/repos/actions/runner/releases/120317803/assets{?name,label} + url: https://api.github.com/repos/actions/runner/releases/120317803 + zipball_url: https://api.github.com/repos/actions/runner/zipball/v2.309.0 diff --git a/gha-runner-scale-set-helmfile/variant.mod b/gha-runner-scale-set-helmfile/variant.mod new file mode 100644 index 000000000..92d9bdf9c --- /dev/null +++ b/gha-runner-scale-set-helmfile/variant.mod @@ -0,0 +1,31 @@ +provisioners: + files: + Dockerfile: + source: Dockerfile.tpl + arguments: + runner_version: "{{ .runner.version }}" + helm_version: "{{ .helm.version }}" + helmfile_version: "{{ .helmfile.version }}" + goss/goss.yaml: + source: goss/goss.yaml.tpl + arguments: + helm_version: "{{ .helm.version }}" + helmfile_version: "{{ .helmfile.version }}" + +dependencies: + helmfile: + releasesFrom: + githubReleases: + source: helmfile/helmfile + version: "> 0.1" + helm: + releasesFrom: + githubReleases: + source: helm/helm + version: "> 1.0" + runner: + releasesFrom: + validVersionPattern: "[0-9]+\\.[0-9]+\\.[0-9]+" + githubReleases: + source: actions/runner + version: "> 2.309.0"