├── .devcontainer └── devcontainer.json ├── .gitattributes ├── .github └── SECURITY.md ├── .gitignore ├── BUGS-AND-FEATURE-REQUESTS.md ├── CODEOWNERS ├── CONTRIBUTING.md ├── LICENSE ├── Makefile ├── Makefile.core.mk ├── Makefile.overrides.mk ├── README.md ├── SUPPORT.md ├── common ├── .commonfiles.sha ├── Makefile.common.mk ├── config │ ├── .golangci.yml │ ├── .hadolint.yml │ ├── .yamllint.yml │ ├── license-lint.yml │ ├── mdl.rb │ ├── sass-lint.yml │ └── tslint.json └── scripts │ ├── check_clean_repo.sh │ ├── copyright-banner-go.txt │ ├── fix_copyright_banner.sh │ ├── format_go.sh │ ├── gobuild.sh │ ├── kind_provisioner.sh │ ├── lint_copyright_banner.sh │ ├── lint_go.sh │ ├── metallb-native.yaml │ ├── report_build_info.sh │ ├── run.sh │ ├── setup_env.sh │ └── tracing.sh ├── example ├── manifest.yaml └── manifest_branch.yaml ├── go.mod ├── go.sum ├── licenses ├── cel.dev │ └── expr │ │ └── LICENSE ├── cloud.google.com │ └── go │ │ ├── LICENSE │ │ ├── auth │ │ ├── LICENSE │ │ └── oauth2adapt │ │ │ └── LICENSE │ │ ├── compute │ │ └── metadata │ │ │ └── LICENSE │ │ ├── iam │ │ └── LICENSE │ │ ├── monitoring │ │ └── LICENSE │ │ ├── storage │ │ └── LICENSE │ │ └── third_party │ │ └── pkgsite │ │ └── LICENSE ├── dario.cat │ └── mergo │ │ └── LICENSE ├── github.com │ ├── GoogleCloudPlatform │ │ └── opentelemetry-operations-go │ │ │ ├── detectors │ │ │ └── gcp │ │ │ │ └── LICENSE │ │ │ ├── exporter │ │ │ └── metric │ │ │ │ └── LICENSE │ │ │ └── internal │ │ │ └── resourcemapping │ │ │ └── LICENSE │ ├── Masterminds │ │ └── semver │ │ │ └── v3 │ │ │ └── LICENSE.txt │ ├── ProtonMail │ │ └── go-crypto │ │ │ └── LICENSE │ ├── cespare │ │ └── xxhash │ │ │ └── v2 │ │ │ └── LICENSE.txt │ ├── cloudflare │ │ └── circl │ │ │ ├── LICENSE │ │ │ └── ecc │ │ │ └── p384 │ │ │ └── LICENSE │ ├── cncf │ │ └── xds │ │ │ └── go │ │ │ └── LICENSE │ ├── containerd │ │ ├── errdefs │ │ │ ├── LICENSE │ │ │ └── pkg │ │ │ │ └── LICENSE │ │ └── stargz-snapshotter │ │ │ └── estargz │ │ │ └── LICENSE │ ├── cyphar │ │ └── filepath-securejoin │ │ │ └── NONE │ ├── distribution │ │ └── reference │ │ │ └── LICENSE │ ├── docker │ │ ├── cli │ │ │ ├── LICENSE │ │ │ └── cli │ │ │ │ └── connhelper │ │ │ │ └── internal │ │ │ │ └── syntax │ │ │ │ └── LICENSE │ │ ├── distribution │ │ │ └── LICENSE │ │ ├── docker-credential-helpers │ │ │ └── LICENSE │ │ ├── docker │ │ │ ├── LICENSE │ │ │ └── contrib │ │ │ │ └── busybox │ │ │ │ └── LICENSE │ │ ├── go-connections │ │ │ └── LICENSE │ │ └── go-units │ │ │ └── LICENSE │ ├── emirpasic │ │ └── gods │ │ │ └── LICENSE │ ├── envoyproxy │ │ ├── go-control-plane │ │ │ └── envoy │ │ │ │ └── LICENSE │ │ └── protoc-gen-validate │ │ │ └── LICENSE │ ├── felixge │ │ └── httpsnoop │ │ │ └── LICENSE.txt │ ├── go-git │ │ ├── gcfg │ │ │ └── LICENSE │ │ ├── go-billy │ │ │ └── v5 │ │ │ │ └── LICENSE │ │ └── go-git │ │ │ └── v5 │ │ │ └── LICENSE │ ├── go-jose │ │ └── go-jose │ │ │ └── v4 │ │ │ ├── LICENSE │ │ │ └── json │ │ │ └── LICENSE │ ├── go-logr │ │ ├── logr │ │ │ └── LICENSE │ │ └── stdr │ │ │ └── LICENSE │ ├── golang │ │ └── groupcache │ │ │ └── LICENSE │ ├── google │ │ ├── go-containerregistry │ │ │ └── LICENSE │ │ ├── go-github │ │ │ └── v35 │ │ │ │ └── LICENSE │ │ ├── go-querystring │ │ │ └── LICENSE │ │ ├── s2a-go │ │ │ └── LICENSE.md │ │ └── uuid │ │ │ └── LICENSE │ ├── googleapis │ │ ├── enterprise-certificate-proxy │ │ │ └── LICENSE │ │ └── gax-go │ │ │ └── v2 │ │ │ └── LICENSE │ ├── jbenet │ │ └── go-context │ │ │ └── LICENSE │ ├── kevinburke │ │ └── ssh_config │ │ │ └── LICENSE │ ├── klauspost │ │ ├── compress │ │ │ ├── LICENSE │ │ │ ├── gzhttp │ │ │ │ └── LICENSE │ │ │ ├── internal │ │ │ │ ├── lz4ref │ │ │ │ │ └── LICENSE │ │ │ │ └── snapref │ │ │ │ │ └── LICENSE │ │ │ ├── s2 │ │ │ │ ├── LICENSE │ │ │ │ └── cmd │ │ │ │ │ └── internal │ │ │ │ │ ├── filepathx │ │ │ │ │ └── LICENSE │ │ │ │ │ └── readahead │ │ │ │ │ └── LICENSE │ │ │ ├── snappy │ │ │ │ ├── LICENSE │ │ │ │ └── xerial │ │ │ │ │ └── LICENSE │ │ │ └── zstd │ │ │ │ └── internal │ │ │ │ └── xxhash │ │ │ │ └── LICENSE.txt │ │ └── cpuid │ │ │ └── v2 │ │ │ └── LICENSE │ ├── mitchellh │ │ └── go-homedir │ │ │ └── LICENSE │ ├── moby │ │ └── docker-image-spec │ │ │ └── LICENSE │ ├── opencontainers │ │ ├── go-digest │ │ │ └── LICENSE │ │ └── image-spec │ │ │ └── LICENSE │ ├── pjbgf │ │ └── sha1cd │ │ │ └── LICENSE │ ├── pkg │ │ └── errors │ │ │ └── LICENSE │ ├── sergi │ │ └── go-diff │ │ │ └── LICENSE │ ├── sirupsen │ │ └── logrus │ │ │ └── LICENSE │ ├── skeema │ │ └── knownhosts │ │ │ └── LICENSE │ ├── spf13 │ │ ├── cobra │ │ │ └── LICENSE.txt │ │ └── pflag │ │ │ └── LICENSE │ ├── spiffe │ │ └── go-spiffe │ │ │ └── v2 │ │ │ └── LICENSE │ ├── vbatts │ │ └── tar-split │ │ │ └── LICENSE │ └── xanzy │ │ └── ssh-agent │ │ └── LICENSE ├── go.opentelemetry.io │ ├── auto │ │ └── sdk │ │ │ └── LICENSE │ ├── contrib │ │ ├── detectors │ │ │ └── gcp │ │ │ │ └── LICENSE │ │ └── instrumentation │ │ │ ├── google.golang.org │ │ │ └── grpc │ │ │ │ └── otelgrpc │ │ │ │ └── LICENSE │ │ │ └── net │ │ │ └── http │ │ │ └── otelhttp │ │ │ └── LICENSE │ └── otel │ │ ├── LICENSE │ │ ├── metric │ │ └── LICENSE │ │ ├── sdk │ │ ├── LICENSE │ │ └── metric │ │ │ └── LICENSE │ │ └── trace │ │ └── LICENSE ├── go.uber.org │ ├── multierr │ │ └── LICENSE.txt │ └── zap │ │ └── LICENSE ├── go.yaml.in │ └── yaml │ │ └── v2 │ │ └── LICENSE ├── golang.org │ └── x │ │ ├── crypto │ │ └── LICENSE │ │ ├── mod │ │ └── LICENSE │ │ ├── net │ │ └── LICENSE │ │ ├── oauth2 │ │ └── LICENSE │ │ ├── sync │ │ └── LICENSE │ │ ├── sys │ │ └── LICENSE │ │ ├── text │ │ └── LICENSE │ │ └── time │ │ └── LICENSE ├── google.golang.org │ ├── api │ │ ├── LICENSE │ │ └── internal │ │ │ └── third_party │ │ │ └── uritemplates │ │ │ └── LICENSE │ ├── genproto │ │ ├── LICENSE │ │ └── googleapis │ │ │ ├── api │ │ │ └── LICENSE │ │ │ └── rpc │ │ │ └── LICENSE │ ├── grpc │ │ └── LICENSE │ └── protobuf │ │ └── LICENSE ├── gopkg.in │ ├── natefinch │ │ └── lumberjack.v2 │ │ │ └── LICENSE │ └── warnings.v0 │ │ └── LICENSE ├── helm.sh │ └── helm │ │ └── v3 │ │ ├── LICENSE │ │ └── pkg │ │ ├── chart │ │ └── loader │ │ │ └── testdata │ │ │ ├── LICENSE │ │ │ ├── frobnitz.v1 │ │ │ └── LICENSE │ │ │ ├── frobnitz.v2.reqs │ │ │ └── LICENSE │ │ │ ├── frobnitz │ │ │ └── LICENSE │ │ │ ├── frobnitz_backslash │ │ │ └── LICENSE │ │ │ ├── frobnitz_with_bom │ │ │ └── LICENSE │ │ │ └── frobnitz_with_dev_null │ │ │ └── LICENSE │ │ └── chartutil │ │ └── testdata │ │ ├── dependent-chart-alias │ │ └── LICENSE │ │ ├── dependent-chart-no-requirements-yaml │ │ └── LICENSE │ │ ├── dependent-chart-with-all-in-requirements-yaml │ │ └── LICENSE │ │ ├── dependent-chart-with-mixed-requirements-yaml │ │ └── LICENSE │ │ └── frobnitz │ │ └── LICENSE ├── istio.io │ └── istio │ │ └── LICENSE ├── k8s.io │ └── klog │ │ └── v2 │ │ └── LICENSE └── sigs.k8s.io │ └── yaml │ └── LICENSE ├── main.go ├── pkg ├── branch │ ├── branch.go │ ├── cmd.go │ ├── createBranches.go │ ├── createToolImages.go │ ├── istioReleaseBuilderUpdates.go │ ├── setupProw.go │ ├── stopPublishingLatest.go │ ├── updateCodeOwners.go │ ├── updateCommonFiles.go │ ├── updateCommonFilesCommon.go │ └── updateDependencies.go ├── build │ ├── archive.go │ ├── build.go │ ├── cmd.go │ ├── debian.go │ ├── docker.go │ ├── grafana.go │ ├── helm.go │ ├── helm_test.go │ ├── rpm.go │ ├── sbom.go │ ├── scanner.go │ └── testdata │ │ ├── chart-deps-in.yaml │ │ └── chart-values-in.yaml ├── cmd │ └── root.go ├── manifest.go ├── model │ └── model.go ├── publish │ ├── cmd.go │ ├── docker.go │ ├── gcs.go │ ├── github.go │ ├── grafana.go │ └── helm.go ├── source.go ├── util │ ├── command.go │ ├── files.go │ └── git.go └── validate │ ├── cmd.go │ └── validate.go ├── release ├── README.md ├── branch.sh ├── build-base-images.sh ├── build-warning.sh ├── build.sh ├── publish-warning.sh ├── publish.sh ├── trigger-branch ├── trigger-build └── trigger-publish └── test └── publish.sh /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/release-builder/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/release-builder/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/release-builder/HEAD/.github/SECURITY.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Contains the built artifacts 2 | out/ 3 | 4 | # IDE 5 | .idea/ 6 | -------------------------------------------------------------------------------- /BUGS-AND-FEATURE-REQUESTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/release-builder/HEAD/BUGS-AND-FEATURE-REQUESTS.md -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/release-builder/HEAD/CODEOWNERS -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/release-builder/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/release-builder/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/release-builder/HEAD/Makefile -------------------------------------------------------------------------------- /Makefile.core.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/release-builder/HEAD/Makefile.core.mk -------------------------------------------------------------------------------- /Makefile.overrides.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/release-builder/HEAD/Makefile.overrides.mk -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/release-builder/HEAD/README.md -------------------------------------------------------------------------------- /SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/release-builder/HEAD/SUPPORT.md -------------------------------------------------------------------------------- /common/.commonfiles.sha: -------------------------------------------------------------------------------- 1 | f335e7753c209c164f5c2d9d8f183fadc1e1cd98 2 | -------------------------------------------------------------------------------- /common/Makefile.common.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/release-builder/HEAD/common/Makefile.common.mk -------------------------------------------------------------------------------- /common/config/.golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/release-builder/HEAD/common/config/.golangci.yml -------------------------------------------------------------------------------- /common/config/.hadolint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/release-builder/HEAD/common/config/.hadolint.yml -------------------------------------------------------------------------------- /common/config/.yamllint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/release-builder/HEAD/common/config/.yamllint.yml -------------------------------------------------------------------------------- /common/config/license-lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/release-builder/HEAD/common/config/license-lint.yml -------------------------------------------------------------------------------- /common/config/mdl.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/release-builder/HEAD/common/config/mdl.rb -------------------------------------------------------------------------------- /common/config/sass-lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/release-builder/HEAD/common/config/sass-lint.yml -------------------------------------------------------------------------------- /common/config/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/release-builder/HEAD/common/config/tslint.json -------------------------------------------------------------------------------- /common/scripts/check_clean_repo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/release-builder/HEAD/common/scripts/check_clean_repo.sh -------------------------------------------------------------------------------- /common/scripts/copyright-banner-go.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/release-builder/HEAD/common/scripts/copyright-banner-go.txt -------------------------------------------------------------------------------- /common/scripts/fix_copyright_banner.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/release-builder/HEAD/common/scripts/fix_copyright_banner.sh -------------------------------------------------------------------------------- /common/scripts/format_go.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/release-builder/HEAD/common/scripts/format_go.sh -------------------------------------------------------------------------------- /common/scripts/gobuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/release-builder/HEAD/common/scripts/gobuild.sh -------------------------------------------------------------------------------- /common/scripts/kind_provisioner.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/release-builder/HEAD/common/scripts/kind_provisioner.sh -------------------------------------------------------------------------------- /common/scripts/lint_copyright_banner.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/release-builder/HEAD/common/scripts/lint_copyright_banner.sh -------------------------------------------------------------------------------- /common/scripts/lint_go.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/release-builder/HEAD/common/scripts/lint_go.sh -------------------------------------------------------------------------------- /common/scripts/metallb-native.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/release-builder/HEAD/common/scripts/metallb-native.yaml -------------------------------------------------------------------------------- /common/scripts/report_build_info.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/release-builder/HEAD/common/scripts/report_build_info.sh -------------------------------------------------------------------------------- /common/scripts/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/release-builder/HEAD/common/scripts/run.sh -------------------------------------------------------------------------------- /common/scripts/setup_env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/release-builder/HEAD/common/scripts/setup_env.sh -------------------------------------------------------------------------------- /common/scripts/tracing.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/release-builder/HEAD/common/scripts/tracing.sh -------------------------------------------------------------------------------- /example/manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/release-builder/HEAD/example/manifest.yaml -------------------------------------------------------------------------------- /example/manifest_branch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/release-builder/HEAD/example/manifest_branch.yaml -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/release-builder/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/release-builder/HEAD/go.sum -------------------------------------------------------------------------------- /licenses/cel.dev/expr/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/release-builder/HEAD/licenses/cel.dev/expr/LICENSE -------------------------------------------------------------------------------- /licenses/cloud.google.com/go/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/release-builder/HEAD/licenses/cloud.google.com/go/LICENSE -------------------------------------------------------------------------------- /licenses/cloud.google.com/go/auth/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/release-builder/HEAD/licenses/cloud.google.com/go/auth/LICENSE -------------------------------------------------------------------------------- /licenses/cloud.google.com/go/auth/oauth2adapt/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/release-builder/HEAD/licenses/cloud.google.com/go/auth/oauth2adapt/LICENSE -------------------------------------------------------------------------------- /licenses/cloud.google.com/go/compute/metadata/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/release-builder/HEAD/licenses/cloud.google.com/go/compute/metadata/LICENSE -------------------------------------------------------------------------------- /licenses/cloud.google.com/go/iam/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/release-builder/HEAD/licenses/cloud.google.com/go/iam/LICENSE -------------------------------------------------------------------------------- /licenses/cloud.google.com/go/monitoring/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/release-builder/HEAD/licenses/cloud.google.com/go/monitoring/LICENSE -------------------------------------------------------------------------------- /licenses/cloud.google.com/go/storage/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/release-builder/HEAD/licenses/cloud.google.com/go/storage/LICENSE -------------------------------------------------------------------------------- /licenses/cloud.google.com/go/third_party/pkgsite/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/release-builder/HEAD/licenses/cloud.google.com/go/third_party/pkgsite/LICENSE -------------------------------------------------------------------------------- /licenses/dario.cat/mergo/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/release-builder/HEAD/licenses/dario.cat/mergo/LICENSE -------------------------------------------------------------------------------- /licenses/github.com/GoogleCloudPlatform/opentelemetry-operations-go/detectors/gcp/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/release-builder/HEAD/licenses/github.com/GoogleCloudPlatform/opentelemetry-operations-go/detectors/gcp/LICENSE -------------------------------------------------------------------------------- /licenses/github.com/GoogleCloudPlatform/opentelemetry-operations-go/exporter/metric/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/release-builder/HEAD/licenses/github.com/GoogleCloudPlatform/opentelemetry-operations-go/exporter/metric/LICENSE -------------------------------------------------------------------------------- /licenses/github.com/GoogleCloudPlatform/opentelemetry-operations-go/internal/resourcemapping/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/release-builder/HEAD/licenses/github.com/GoogleCloudPlatform/opentelemetry-operations-go/internal/resourcemapping/LICENSE -------------------------------------------------------------------------------- /licenses/github.com/Masterminds/semver/v3/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/release-builder/HEAD/licenses/github.com/Masterminds/semver/v3/LICENSE.txt -------------------------------------------------------------------------------- /licenses/github.com/ProtonMail/go-crypto/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/release-builder/HEAD/licenses/github.com/ProtonMail/go-crypto/LICENSE -------------------------------------------------------------------------------- /licenses/github.com/cespare/xxhash/v2/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/release-builder/HEAD/licenses/github.com/cespare/xxhash/v2/LICENSE.txt -------------------------------------------------------------------------------- /licenses/github.com/cloudflare/circl/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/release-builder/HEAD/licenses/github.com/cloudflare/circl/LICENSE -------------------------------------------------------------------------------- /licenses/github.com/cloudflare/circl/ecc/p384/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/release-builder/HEAD/licenses/github.com/cloudflare/circl/ecc/p384/LICENSE -------------------------------------------------------------------------------- /licenses/github.com/cncf/xds/go/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/release-builder/HEAD/licenses/github.com/cncf/xds/go/LICENSE -------------------------------------------------------------------------------- /licenses/github.com/containerd/errdefs/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/release-builder/HEAD/licenses/github.com/containerd/errdefs/LICENSE -------------------------------------------------------------------------------- /licenses/github.com/containerd/errdefs/pkg/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/release-builder/HEAD/licenses/github.com/containerd/errdefs/pkg/LICENSE -------------------------------------------------------------------------------- /licenses/github.com/containerd/stargz-snapshotter/estargz/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/release-builder/HEAD/licenses/github.com/containerd/stargz-snapshotter/estargz/LICENSE -------------------------------------------------------------------------------- /licenses/github.com/cyphar/filepath-securejoin/NONE: -------------------------------------------------------------------------------- 1 | NO LICENSE FOUND 2 | -------------------------------------------------------------------------------- /licenses/github.com/distribution/reference/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/release-builder/HEAD/licenses/github.com/distribution/reference/LICENSE -------------------------------------------------------------------------------- /licenses/github.com/docker/cli/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/release-builder/HEAD/licenses/github.com/docker/cli/LICENSE -------------------------------------------------------------------------------- /licenses/github.com/docker/cli/cli/connhelper/internal/syntax/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/release-builder/HEAD/licenses/github.com/docker/cli/cli/connhelper/internal/syntax/LICENSE -------------------------------------------------------------------------------- /licenses/github.com/docker/distribution/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/release-builder/HEAD/licenses/github.com/docker/distribution/LICENSE -------------------------------------------------------------------------------- /licenses/github.com/docker/docker-credential-helpers/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/release-builder/HEAD/licenses/github.com/docker/docker-credential-helpers/LICENSE -------------------------------------------------------------------------------- /licenses/github.com/docker/docker/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/release-builder/HEAD/licenses/github.com/docker/docker/LICENSE -------------------------------------------------------------------------------- /licenses/github.com/docker/docker/contrib/busybox/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/release-builder/HEAD/licenses/github.com/docker/docker/contrib/busybox/LICENSE -------------------------------------------------------------------------------- /licenses/github.com/docker/go-connections/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/release-builder/HEAD/licenses/github.com/docker/go-connections/LICENSE -------------------------------------------------------------------------------- /licenses/github.com/docker/go-units/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/release-builder/HEAD/licenses/github.com/docker/go-units/LICENSE -------------------------------------------------------------------------------- /licenses/github.com/emirpasic/gods/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/release-builder/HEAD/licenses/github.com/emirpasic/gods/LICENSE -------------------------------------------------------------------------------- /licenses/github.com/envoyproxy/go-control-plane/envoy/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/release-builder/HEAD/licenses/github.com/envoyproxy/go-control-plane/envoy/LICENSE -------------------------------------------------------------------------------- /licenses/github.com/envoyproxy/protoc-gen-validate/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/release-builder/HEAD/licenses/github.com/envoyproxy/protoc-gen-validate/LICENSE -------------------------------------------------------------------------------- /licenses/github.com/felixge/httpsnoop/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/release-builder/HEAD/licenses/github.com/felixge/httpsnoop/LICENSE.txt -------------------------------------------------------------------------------- /licenses/github.com/go-git/gcfg/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/release-builder/HEAD/licenses/github.com/go-git/gcfg/LICENSE -------------------------------------------------------------------------------- /licenses/github.com/go-git/go-billy/v5/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/release-builder/HEAD/licenses/github.com/go-git/go-billy/v5/LICENSE -------------------------------------------------------------------------------- /licenses/github.com/go-git/go-git/v5/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/release-builder/HEAD/licenses/github.com/go-git/go-git/v5/LICENSE -------------------------------------------------------------------------------- /licenses/github.com/go-jose/go-jose/v4/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/release-builder/HEAD/licenses/github.com/go-jose/go-jose/v4/LICENSE -------------------------------------------------------------------------------- /licenses/github.com/go-jose/go-jose/v4/json/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/release-builder/HEAD/licenses/github.com/go-jose/go-jose/v4/json/LICENSE -------------------------------------------------------------------------------- /licenses/github.com/go-logr/logr/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/release-builder/HEAD/licenses/github.com/go-logr/logr/LICENSE -------------------------------------------------------------------------------- /licenses/github.com/go-logr/stdr/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/release-builder/HEAD/licenses/github.com/go-logr/stdr/LICENSE -------------------------------------------------------------------------------- /licenses/github.com/golang/groupcache/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/release-builder/HEAD/licenses/github.com/golang/groupcache/LICENSE -------------------------------------------------------------------------------- /licenses/github.com/google/go-containerregistry/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/release-builder/HEAD/licenses/github.com/google/go-containerregistry/LICENSE -------------------------------------------------------------------------------- /licenses/github.com/google/go-github/v35/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/release-builder/HEAD/licenses/github.com/google/go-github/v35/LICENSE -------------------------------------------------------------------------------- /licenses/github.com/google/go-querystring/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/release-builder/HEAD/licenses/github.com/google/go-querystring/LICENSE -------------------------------------------------------------------------------- /licenses/github.com/google/s2a-go/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/release-builder/HEAD/licenses/github.com/google/s2a-go/LICENSE.md -------------------------------------------------------------------------------- /licenses/github.com/google/uuid/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/release-builder/HEAD/licenses/github.com/google/uuid/LICENSE -------------------------------------------------------------------------------- /licenses/github.com/googleapis/enterprise-certificate-proxy/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/release-builder/HEAD/licenses/github.com/googleapis/enterprise-certificate-proxy/LICENSE -------------------------------------------------------------------------------- /licenses/github.com/googleapis/gax-go/v2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/release-builder/HEAD/licenses/github.com/googleapis/gax-go/v2/LICENSE -------------------------------------------------------------------------------- /licenses/github.com/jbenet/go-context/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/release-builder/HEAD/licenses/github.com/jbenet/go-context/LICENSE -------------------------------------------------------------------------------- /licenses/github.com/kevinburke/ssh_config/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/release-builder/HEAD/licenses/github.com/kevinburke/ssh_config/LICENSE -------------------------------------------------------------------------------- /licenses/github.com/klauspost/compress/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/release-builder/HEAD/licenses/github.com/klauspost/compress/LICENSE -------------------------------------------------------------------------------- /licenses/github.com/klauspost/compress/gzhttp/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/release-builder/HEAD/licenses/github.com/klauspost/compress/gzhttp/LICENSE -------------------------------------------------------------------------------- /licenses/github.com/klauspost/compress/internal/lz4ref/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/release-builder/HEAD/licenses/github.com/klauspost/compress/internal/lz4ref/LICENSE -------------------------------------------------------------------------------- /licenses/github.com/klauspost/compress/internal/snapref/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/release-builder/HEAD/licenses/github.com/klauspost/compress/internal/snapref/LICENSE -------------------------------------------------------------------------------- /licenses/github.com/klauspost/compress/s2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/release-builder/HEAD/licenses/github.com/klauspost/compress/s2/LICENSE -------------------------------------------------------------------------------- /licenses/github.com/klauspost/compress/s2/cmd/internal/filepathx/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/release-builder/HEAD/licenses/github.com/klauspost/compress/s2/cmd/internal/filepathx/LICENSE -------------------------------------------------------------------------------- /licenses/github.com/klauspost/compress/s2/cmd/internal/readahead/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/release-builder/HEAD/licenses/github.com/klauspost/compress/s2/cmd/internal/readahead/LICENSE -------------------------------------------------------------------------------- /licenses/github.com/klauspost/compress/snappy/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/release-builder/HEAD/licenses/github.com/klauspost/compress/snappy/LICENSE -------------------------------------------------------------------------------- /licenses/github.com/klauspost/compress/snappy/xerial/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/release-builder/HEAD/licenses/github.com/klauspost/compress/snappy/xerial/LICENSE -------------------------------------------------------------------------------- /licenses/github.com/klauspost/compress/zstd/internal/xxhash/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/release-builder/HEAD/licenses/github.com/klauspost/compress/zstd/internal/xxhash/LICENSE.txt -------------------------------------------------------------------------------- /licenses/github.com/klauspost/cpuid/v2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/release-builder/HEAD/licenses/github.com/klauspost/cpuid/v2/LICENSE -------------------------------------------------------------------------------- /licenses/github.com/mitchellh/go-homedir/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/release-builder/HEAD/licenses/github.com/mitchellh/go-homedir/LICENSE -------------------------------------------------------------------------------- /licenses/github.com/moby/docker-image-spec/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/release-builder/HEAD/licenses/github.com/moby/docker-image-spec/LICENSE -------------------------------------------------------------------------------- /licenses/github.com/opencontainers/go-digest/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/release-builder/HEAD/licenses/github.com/opencontainers/go-digest/LICENSE -------------------------------------------------------------------------------- /licenses/github.com/opencontainers/image-spec/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/release-builder/HEAD/licenses/github.com/opencontainers/image-spec/LICENSE -------------------------------------------------------------------------------- /licenses/github.com/pjbgf/sha1cd/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/release-builder/HEAD/licenses/github.com/pjbgf/sha1cd/LICENSE -------------------------------------------------------------------------------- /licenses/github.com/pkg/errors/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/release-builder/HEAD/licenses/github.com/pkg/errors/LICENSE -------------------------------------------------------------------------------- /licenses/github.com/sergi/go-diff/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/release-builder/HEAD/licenses/github.com/sergi/go-diff/LICENSE -------------------------------------------------------------------------------- /licenses/github.com/sirupsen/logrus/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/release-builder/HEAD/licenses/github.com/sirupsen/logrus/LICENSE -------------------------------------------------------------------------------- /licenses/github.com/skeema/knownhosts/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/release-builder/HEAD/licenses/github.com/skeema/knownhosts/LICENSE -------------------------------------------------------------------------------- /licenses/github.com/spf13/cobra/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/release-builder/HEAD/licenses/github.com/spf13/cobra/LICENSE.txt -------------------------------------------------------------------------------- /licenses/github.com/spf13/pflag/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/release-builder/HEAD/licenses/github.com/spf13/pflag/LICENSE -------------------------------------------------------------------------------- /licenses/github.com/spiffe/go-spiffe/v2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/release-builder/HEAD/licenses/github.com/spiffe/go-spiffe/v2/LICENSE -------------------------------------------------------------------------------- /licenses/github.com/vbatts/tar-split/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/release-builder/HEAD/licenses/github.com/vbatts/tar-split/LICENSE -------------------------------------------------------------------------------- /licenses/github.com/xanzy/ssh-agent/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/release-builder/HEAD/licenses/github.com/xanzy/ssh-agent/LICENSE -------------------------------------------------------------------------------- /licenses/go.opentelemetry.io/auto/sdk/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/release-builder/HEAD/licenses/go.opentelemetry.io/auto/sdk/LICENSE -------------------------------------------------------------------------------- /licenses/go.opentelemetry.io/contrib/detectors/gcp/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/release-builder/HEAD/licenses/go.opentelemetry.io/contrib/detectors/gcp/LICENSE -------------------------------------------------------------------------------- /licenses/go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/release-builder/HEAD/licenses/go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc/LICENSE -------------------------------------------------------------------------------- /licenses/go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/release-builder/HEAD/licenses/go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp/LICENSE -------------------------------------------------------------------------------- /licenses/go.opentelemetry.io/otel/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/release-builder/HEAD/licenses/go.opentelemetry.io/otel/LICENSE -------------------------------------------------------------------------------- /licenses/go.opentelemetry.io/otel/metric/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/release-builder/HEAD/licenses/go.opentelemetry.io/otel/metric/LICENSE -------------------------------------------------------------------------------- /licenses/go.opentelemetry.io/otel/sdk/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/release-builder/HEAD/licenses/go.opentelemetry.io/otel/sdk/LICENSE -------------------------------------------------------------------------------- /licenses/go.opentelemetry.io/otel/sdk/metric/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/release-builder/HEAD/licenses/go.opentelemetry.io/otel/sdk/metric/LICENSE -------------------------------------------------------------------------------- /licenses/go.opentelemetry.io/otel/trace/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/release-builder/HEAD/licenses/go.opentelemetry.io/otel/trace/LICENSE -------------------------------------------------------------------------------- /licenses/go.uber.org/multierr/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/release-builder/HEAD/licenses/go.uber.org/multierr/LICENSE.txt -------------------------------------------------------------------------------- /licenses/go.uber.org/zap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/release-builder/HEAD/licenses/go.uber.org/zap/LICENSE -------------------------------------------------------------------------------- /licenses/go.yaml.in/yaml/v2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/release-builder/HEAD/licenses/go.yaml.in/yaml/v2/LICENSE -------------------------------------------------------------------------------- /licenses/golang.org/x/crypto/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/release-builder/HEAD/licenses/golang.org/x/crypto/LICENSE -------------------------------------------------------------------------------- /licenses/golang.org/x/mod/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/release-builder/HEAD/licenses/golang.org/x/mod/LICENSE -------------------------------------------------------------------------------- /licenses/golang.org/x/net/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/release-builder/HEAD/licenses/golang.org/x/net/LICENSE -------------------------------------------------------------------------------- /licenses/golang.org/x/oauth2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/release-builder/HEAD/licenses/golang.org/x/oauth2/LICENSE -------------------------------------------------------------------------------- /licenses/golang.org/x/sync/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/release-builder/HEAD/licenses/golang.org/x/sync/LICENSE -------------------------------------------------------------------------------- /licenses/golang.org/x/sys/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/release-builder/HEAD/licenses/golang.org/x/sys/LICENSE -------------------------------------------------------------------------------- /licenses/golang.org/x/text/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/release-builder/HEAD/licenses/golang.org/x/text/LICENSE -------------------------------------------------------------------------------- /licenses/golang.org/x/time/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/release-builder/HEAD/licenses/golang.org/x/time/LICENSE -------------------------------------------------------------------------------- /licenses/google.golang.org/api/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/release-builder/HEAD/licenses/google.golang.org/api/LICENSE -------------------------------------------------------------------------------- /licenses/google.golang.org/api/internal/third_party/uritemplates/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/release-builder/HEAD/licenses/google.golang.org/api/internal/third_party/uritemplates/LICENSE -------------------------------------------------------------------------------- /licenses/google.golang.org/genproto/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/release-builder/HEAD/licenses/google.golang.org/genproto/LICENSE -------------------------------------------------------------------------------- /licenses/google.golang.org/genproto/googleapis/api/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/release-builder/HEAD/licenses/google.golang.org/genproto/googleapis/api/LICENSE -------------------------------------------------------------------------------- /licenses/google.golang.org/genproto/googleapis/rpc/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/release-builder/HEAD/licenses/google.golang.org/genproto/googleapis/rpc/LICENSE -------------------------------------------------------------------------------- /licenses/google.golang.org/grpc/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/release-builder/HEAD/licenses/google.golang.org/grpc/LICENSE -------------------------------------------------------------------------------- /licenses/google.golang.org/protobuf/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/release-builder/HEAD/licenses/google.golang.org/protobuf/LICENSE -------------------------------------------------------------------------------- /licenses/gopkg.in/natefinch/lumberjack.v2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/release-builder/HEAD/licenses/gopkg.in/natefinch/lumberjack.v2/LICENSE -------------------------------------------------------------------------------- /licenses/gopkg.in/warnings.v0/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/release-builder/HEAD/licenses/gopkg.in/warnings.v0/LICENSE -------------------------------------------------------------------------------- /licenses/helm.sh/helm/v3/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/release-builder/HEAD/licenses/helm.sh/helm/v3/LICENSE -------------------------------------------------------------------------------- /licenses/helm.sh/helm/v3/pkg/chart/loader/testdata/LICENSE: -------------------------------------------------------------------------------- 1 | LICENSE placeholder. 2 | -------------------------------------------------------------------------------- /licenses/helm.sh/helm/v3/pkg/chart/loader/testdata/frobnitz.v1/LICENSE: -------------------------------------------------------------------------------- 1 | LICENSE placeholder. 2 | -------------------------------------------------------------------------------- /licenses/helm.sh/helm/v3/pkg/chart/loader/testdata/frobnitz.v2.reqs/LICENSE: -------------------------------------------------------------------------------- 1 | LICENSE placeholder. 2 | -------------------------------------------------------------------------------- /licenses/helm.sh/helm/v3/pkg/chart/loader/testdata/frobnitz/LICENSE: -------------------------------------------------------------------------------- 1 | LICENSE placeholder. 2 | -------------------------------------------------------------------------------- /licenses/helm.sh/helm/v3/pkg/chart/loader/testdata/frobnitz_backslash/LICENSE: -------------------------------------------------------------------------------- 1 | LICENSE placeholder. 2 | -------------------------------------------------------------------------------- /licenses/helm.sh/helm/v3/pkg/chart/loader/testdata/frobnitz_with_bom/LICENSE: -------------------------------------------------------------------------------- 1 | LICENSE placeholder. 2 | -------------------------------------------------------------------------------- /licenses/helm.sh/helm/v3/pkg/chart/loader/testdata/frobnitz_with_dev_null/LICENSE: -------------------------------------------------------------------------------- 1 | LICENSE placeholder. 2 | -------------------------------------------------------------------------------- /licenses/helm.sh/helm/v3/pkg/chartutil/testdata/dependent-chart-alias/LICENSE: -------------------------------------------------------------------------------- 1 | LICENSE placeholder. 2 | -------------------------------------------------------------------------------- /licenses/helm.sh/helm/v3/pkg/chartutil/testdata/dependent-chart-no-requirements-yaml/LICENSE: -------------------------------------------------------------------------------- 1 | LICENSE placeholder. 2 | -------------------------------------------------------------------------------- /licenses/helm.sh/helm/v3/pkg/chartutil/testdata/dependent-chart-with-all-in-requirements-yaml/LICENSE: -------------------------------------------------------------------------------- 1 | LICENSE placeholder. 2 | -------------------------------------------------------------------------------- /licenses/helm.sh/helm/v3/pkg/chartutil/testdata/dependent-chart-with-mixed-requirements-yaml/LICENSE: -------------------------------------------------------------------------------- 1 | LICENSE placeholder. 2 | -------------------------------------------------------------------------------- /licenses/helm.sh/helm/v3/pkg/chartutil/testdata/frobnitz/LICENSE: -------------------------------------------------------------------------------- 1 | LICENSE placeholder. 2 | -------------------------------------------------------------------------------- /licenses/istio.io/istio/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/release-builder/HEAD/licenses/istio.io/istio/LICENSE -------------------------------------------------------------------------------- /licenses/k8s.io/klog/v2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/release-builder/HEAD/licenses/k8s.io/klog/v2/LICENSE -------------------------------------------------------------------------------- /licenses/sigs.k8s.io/yaml/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/release-builder/HEAD/licenses/sigs.k8s.io/yaml/LICENSE -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/release-builder/HEAD/main.go -------------------------------------------------------------------------------- /pkg/branch/branch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/release-builder/HEAD/pkg/branch/branch.go -------------------------------------------------------------------------------- /pkg/branch/cmd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/release-builder/HEAD/pkg/branch/cmd.go -------------------------------------------------------------------------------- /pkg/branch/createBranches.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/release-builder/HEAD/pkg/branch/createBranches.go -------------------------------------------------------------------------------- /pkg/branch/createToolImages.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/release-builder/HEAD/pkg/branch/createToolImages.go -------------------------------------------------------------------------------- /pkg/branch/istioReleaseBuilderUpdates.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/release-builder/HEAD/pkg/branch/istioReleaseBuilderUpdates.go -------------------------------------------------------------------------------- /pkg/branch/setupProw.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/release-builder/HEAD/pkg/branch/setupProw.go -------------------------------------------------------------------------------- /pkg/branch/stopPublishingLatest.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/release-builder/HEAD/pkg/branch/stopPublishingLatest.go -------------------------------------------------------------------------------- /pkg/branch/updateCodeOwners.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/release-builder/HEAD/pkg/branch/updateCodeOwners.go -------------------------------------------------------------------------------- /pkg/branch/updateCommonFiles.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/release-builder/HEAD/pkg/branch/updateCommonFiles.go -------------------------------------------------------------------------------- /pkg/branch/updateCommonFilesCommon.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/release-builder/HEAD/pkg/branch/updateCommonFilesCommon.go -------------------------------------------------------------------------------- /pkg/branch/updateDependencies.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/release-builder/HEAD/pkg/branch/updateDependencies.go -------------------------------------------------------------------------------- /pkg/build/archive.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/release-builder/HEAD/pkg/build/archive.go -------------------------------------------------------------------------------- /pkg/build/build.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/release-builder/HEAD/pkg/build/build.go -------------------------------------------------------------------------------- /pkg/build/cmd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/release-builder/HEAD/pkg/build/cmd.go -------------------------------------------------------------------------------- /pkg/build/debian.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/release-builder/HEAD/pkg/build/debian.go -------------------------------------------------------------------------------- /pkg/build/docker.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/release-builder/HEAD/pkg/build/docker.go -------------------------------------------------------------------------------- /pkg/build/grafana.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/release-builder/HEAD/pkg/build/grafana.go -------------------------------------------------------------------------------- /pkg/build/helm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/release-builder/HEAD/pkg/build/helm.go -------------------------------------------------------------------------------- /pkg/build/helm_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/release-builder/HEAD/pkg/build/helm_test.go -------------------------------------------------------------------------------- /pkg/build/rpm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/release-builder/HEAD/pkg/build/rpm.go -------------------------------------------------------------------------------- /pkg/build/sbom.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/release-builder/HEAD/pkg/build/sbom.go -------------------------------------------------------------------------------- /pkg/build/scanner.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/release-builder/HEAD/pkg/build/scanner.go -------------------------------------------------------------------------------- /pkg/build/testdata/chart-deps-in.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/release-builder/HEAD/pkg/build/testdata/chart-deps-in.yaml -------------------------------------------------------------------------------- /pkg/build/testdata/chart-values-in.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/release-builder/HEAD/pkg/build/testdata/chart-values-in.yaml -------------------------------------------------------------------------------- /pkg/cmd/root.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/release-builder/HEAD/pkg/cmd/root.go -------------------------------------------------------------------------------- /pkg/manifest.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/release-builder/HEAD/pkg/manifest.go -------------------------------------------------------------------------------- /pkg/model/model.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/release-builder/HEAD/pkg/model/model.go -------------------------------------------------------------------------------- /pkg/publish/cmd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/release-builder/HEAD/pkg/publish/cmd.go -------------------------------------------------------------------------------- /pkg/publish/docker.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/release-builder/HEAD/pkg/publish/docker.go -------------------------------------------------------------------------------- /pkg/publish/gcs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/release-builder/HEAD/pkg/publish/gcs.go -------------------------------------------------------------------------------- /pkg/publish/github.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/release-builder/HEAD/pkg/publish/github.go -------------------------------------------------------------------------------- /pkg/publish/grafana.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/release-builder/HEAD/pkg/publish/grafana.go -------------------------------------------------------------------------------- /pkg/publish/helm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/release-builder/HEAD/pkg/publish/helm.go -------------------------------------------------------------------------------- /pkg/source.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/release-builder/HEAD/pkg/source.go -------------------------------------------------------------------------------- /pkg/util/command.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/release-builder/HEAD/pkg/util/command.go -------------------------------------------------------------------------------- /pkg/util/files.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/release-builder/HEAD/pkg/util/files.go -------------------------------------------------------------------------------- /pkg/util/git.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/release-builder/HEAD/pkg/util/git.go -------------------------------------------------------------------------------- /pkg/validate/cmd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/release-builder/HEAD/pkg/validate/cmd.go -------------------------------------------------------------------------------- /pkg/validate/validate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/release-builder/HEAD/pkg/validate/validate.go -------------------------------------------------------------------------------- /release/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/release-builder/HEAD/release/README.md -------------------------------------------------------------------------------- /release/branch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/release-builder/HEAD/release/branch.sh -------------------------------------------------------------------------------- /release/build-base-images.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/release-builder/HEAD/release/build-base-images.sh -------------------------------------------------------------------------------- /release/build-warning.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/release-builder/HEAD/release/build-warning.sh -------------------------------------------------------------------------------- /release/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/release-builder/HEAD/release/build.sh -------------------------------------------------------------------------------- /release/publish-warning.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/release-builder/HEAD/release/publish-warning.sh -------------------------------------------------------------------------------- /release/publish.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/release-builder/HEAD/release/publish.sh -------------------------------------------------------------------------------- /release/trigger-branch: -------------------------------------------------------------------------------- 1 | VERSION=1.19 2 | STEP=1 -------------------------------------------------------------------------------- /release/trigger-build: -------------------------------------------------------------------------------- 1 | 1.28.0-alpha.0 2 | -------------------------------------------------------------------------------- /release/trigger-publish: -------------------------------------------------------------------------------- 1 | 1.28.0-alpha.0 2 | -------------------------------------------------------------------------------- /test/publish.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istio/release-builder/HEAD/test/publish.sh --------------------------------------------------------------------------------