Skip to content
This repository has been archived by the owner on Feb 9, 2024. It is now read-only.

Commit

Permalink
(6.1) Bump helm to 2.15.2 (#2118)
Browse files Browse the repository at this point in the history
  • Loading branch information
r0mant authored Sep 11, 2020
1 parent 972207c commit 5f105a2
Show file tree
Hide file tree
Showing 45 changed files with 1,220 additions and 298 deletions.
24 changes: 13 additions & 11 deletions Gopkg.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

13 changes: 11 additions & 2 deletions Gopkg.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,15 @@
# name = "github.com/x/y"
# version = "2.4.0"

required = [
"github.com/fvbommel/sortorder"
]

ignored = [
"github.com/Sirupsen/logrus",
"github.com/gravitational/gravity/build/*",
"github.com/gravitational/gravity/e/build/*"
"github.com/gravitational/gravity/e/build/*",
"vbom.ml/util/sortorder"
]

[prune]
Expand All @@ -34,6 +39,10 @@ ignored = [
name = "github.com/gravitational/trace"
version = "=1.1.11"

[[override]]
name = "github.com/fvbommel/sortorder"
source = "github.com/fvbommel/sortorder"

[[override]]
name = "github.com/mitchellh/go-ps"
source = "github.com/gravitational/go-ps"
Expand Down Expand Up @@ -90,7 +99,7 @@ ignored = [

[[constraint]]
name = "k8s.io/helm"
branch = "release-2.14"
branch = "release-2.15"

[[override]]
name = "k8s.io/apimachinery"
Expand Down
22 changes: 19 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ RELEASE_OUT ?=
TELEPORT_TAG = 3.2.13
# TELEPORT_REPOTAG adapts TELEPORT_TAG to the teleport tagging scheme
TELEPORT_REPOTAG := v$(TELEPORT_TAG)
PLANET_TAG := 6.1.35-$(K8S_VER_SUFFIX)
PLANET_TAG := 6.1.36-$(K8S_VER_SUFFIX)
PLANET_BRANCH := $(PLANET_TAG)
K8S_APP_TAG := $(GRAVITY_TAG)
TELEKUBE_APP_TAG := $(GRAVITY_TAG)
Expand All @@ -53,8 +53,8 @@ DNS_APP_TAG = 0.4.0
BANDWAGON_TAG ?= 6.0.1
RBAC_APP_TAG := $(GRAVITY_TAG)
# IMPORTANT: When updating tiller version, DO NOT FORGET to bump TILLER_APP_TAG as well!
TILLER_VERSION = 2.14.3
TILLER_APP_TAG = 6.1.0
TILLER_VERSION = 2.15.2
TILLER_APP_TAG = 6.1.1
# URI of Wormhole container for default install
WORMHOLE_IMG ?= quay.io/gravitational/wormhole:0.3.3
# set this to true if you want to use locally built planet packages
Expand Down Expand Up @@ -764,6 +764,22 @@ validate-deps:
$(eval VENDOR_UNTRACKED := $(shell git status --porcelain vendor))
@test -z "$(VENDOR_UNTRACKED)" || (echo "failed to recreate vendor from scratch and match it to git:\n $(VENDOR_UNTRACKED)" ; exit 1)

#
# this is a temporary target until we upgrade k8s.io packages
# to use fvbommel/sortorder.
# https://github.com/fvbommel/util/issues/6
#
.PHONY: dep-ensure
dep-ensure:
dep version
dep ensure -v
dep status -v
$(MAKE) fix-sortorder fix-logrus

.PHONY: fix-sortorder
fix-sortorder:
find vendor -name '*.go' -type f -print0 | xargs -0 sed -i 's/vbom.ml\/util/github.com\/fvbommel/g'

.PHONY: fix-logrus
fix-logrus:
find vendor -not \( -path vendor/github.com/fsouza -prune \) -name '*.go' -type f -print0 | xargs -0 sed -i 's/Sirupsen/sirupsen/g'
Expand Down
19 changes: 19 additions & 0 deletions vendor/github.com/fvbommel/sortorder/.gitignore

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

File renamed without changes.
5 changes: 5 additions & 0 deletions vendor/github.com/fvbommel/sortorder/README.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions vendor/github.com/fvbommel/sortorder/go.mod

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Empty file.
10 changes: 6 additions & 4 deletions vendor/k8s.io/helm/pkg/chartutil/capabilities.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 5f105a2

Please sign in to comment.