File tree 13 files changed +14
-25
lines changed
13 files changed +14
-25
lines changed Original file line number Diff line number Diff line change @@ -200,7 +200,7 @@ Run the script specifying the version for the new release.
200
200
./tag.sh --tag <release_version>
201
201
` ` `
202
202
203
- Versions must start with a lower-case `v`, e. g. `v2.4 .0`.
203
+ Versions must start with a lower-case `v`, e. g. `v3.0 .0`.
204
204
205
205
206
206
# # Supported versions
Original file line number Diff line number Diff line change @@ -62,7 +62,7 @@ func addInstallFlags(flags *flag.FlagSet) {
62
62
the ID of a pull request. If not specified, the name of the chart is used` ))
63
63
flags .String ("helm-extra-args" , "" , heredoc .Doc (`
64
64
Additional arguments for Helm. Must be passed as a single quoted string
65
- (e.g. "--timeout 500 --tiller-namespace tiller "` ))
65
+ (e.g. "--timeout 500"` ))
66
66
flags .Bool ("upgrade" , false , heredoc .Doc (`
67
67
Whether to test an in-place upgrade of each chart from its previous revision if the
68
68
current version should not introduce a breaking change according to the SemVer spec` ))
Original file line number Diff line number Diff line change @@ -26,4 +26,4 @@ in given chart directories.
26
26
* [ ct list-changed] ( ct_list-changed.md ) - List changed charts
27
27
* [ ct version] ( ct_version.md ) - Print version information
28
28
29
- ###### Auto generated by spf13/cobra on 21-Mar -2019
29
+ ###### Auto generated by spf13/cobra on 13-Dec -2019
Original file line number Diff line number Diff line change @@ -48,7 +48,7 @@ ct install [flags]
48
48
--excluded-charts strings Charts that should be skipped. May be specified multiple times
49
49
or separate values with commas
50
50
--helm-extra-args string Additional arguments for Helm. Must be passed as a single quoted string
51
- (e.g. "--timeout 500 --tiller-namespace tiller "
51
+ (e.g. "--timeout 500"
52
52
--helm-repo-extra-args strings Additional arguments for the 'helm repo add' command to be
53
53
specified on a per-repo basis with an equals sign as delimiter
54
54
(e.g. 'myrepo=--username test --password secret'). May be specified
@@ -71,4 +71,4 @@ ct install [flags]
71
71
72
72
* [ ct] ( ct.md ) - The Helm chart testing tool
73
73
74
- ###### Auto generated by spf13/cobra on 21-Mar -2019
74
+ ###### Auto generated by spf13/cobra on 13-Dec -2019
Original file line number Diff line number Diff line change @@ -36,7 +36,7 @@ ct lint-and-install [flags]
36
36
--excluded-charts strings Charts that should be skipped. May be specified multiple times
37
37
or separate values with commas
38
38
--helm-extra-args string Additional arguments for Helm. Must be passed as a single quoted string
39
- (e.g. "--timeout 500 --tiller-namespace tiller "
39
+ (e.g. "--timeout 500"
40
40
--helm-repo-extra-args strings Additional arguments for the 'helm repo add' command to be
41
41
specified on a per-repo basis with an equals sign as delimiter
42
42
(e.g. 'myrepo=--username test --password secret'). May be specified
@@ -66,4 +66,4 @@ ct lint-and-install [flags]
66
66
67
67
* [ ct] ( ct.md ) - The Helm chart testing tool
68
68
69
- ###### Auto generated by spf13/cobra on 21-Mar -2019
69
+ ###### Auto generated by spf13/cobra on 13-Dec -2019
Original file line number Diff line number Diff line change @@ -65,4 +65,4 @@ ct lint [flags]
65
65
66
66
* [ ct] ( ct.md ) - The Helm chart testing tool
67
67
68
- ###### Auto generated by spf13/cobra on 21-Mar -2019
68
+ ###### Auto generated by spf13/cobra on 13-Dec -2019
Original file line number Diff line number Diff line change @@ -28,4 +28,4 @@ ct list-changed [flags]
28
28
29
29
* [ ct] ( ct.md ) - The Helm chart testing tool
30
30
31
- ###### Auto generated by spf13/cobra on 21-Mar -2019
31
+ ###### Auto generated by spf13/cobra on 13-Dec -2019
Original file line number Diff line number Diff line change @@ -20,4 +20,4 @@ ct version [flags]
20
20
21
21
* [ ct] ( ct.md ) - The Helm chart testing tool
22
22
23
- ###### Auto generated by spf13/cobra on 21-Mar -2019
23
+ ###### Auto generated by spf13/cobra on 13-Dec -2019
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ set -o errexit
18
18
set -o nounset
19
19
set -o pipefail
20
20
21
- readonly IMAGE_TAG=v2.4 .0
21
+ readonly IMAGE_TAG=v3.0 .0
22
22
readonly IMAGE_REPOSITORY=" quay.io/helmpack/chart-testing"
23
23
24
24
main () {
Original file line number Diff line number Diff line change 12
12
# See the License for the specific language governing permissions and
13
13
# limitations under the License.
14
14
15
- FROM quay.io/helmpack/chart-testing:v2.4 .0
15
+ FROM quay.io/helmpack/chart-testing:v3.0 .0
16
16
17
17
ENV PATH /google-cloud-sdk/bin:$PATH
18
18
ARG CLOUD_SDK_VERSION=221.0.0
Original file line number Diff line number Diff line change 10
10
11
11
lint-charts :
12
12
docker :
13
- - image : quay.io/helmpack/chart-testing:v2.4 .0
13
+ - image : quay.io/helmpack/chart-testing:v3.0 .0
14
14
steps :
15
15
- checkout
16
16
- run :
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ set -o errexit
4
4
set -o nounset
5
5
set -o pipefail
6
6
7
- readonly CT_VERSION=v2.4 .0
7
+ readonly CT_VERSION=v3.0 .0
8
8
readonly KIND_VERSION=v0.5.1
9
9
readonly CLUSTER_NAME=chart-testing
10
10
readonly K8S_VERSION=v1.15.3
@@ -57,14 +57,6 @@ create_kind_cluster() {
57
57
echo
58
58
}
59
59
60
- install_tiller () {
61
- echo ' Installing Tiller...'
62
- docker_exec kubectl --namespace kube-system create sa tiller
63
- docker_exec kubectl create clusterrolebinding tiller-cluster-rule --clusterrole=cluster-admin --serviceaccount=kube-system:tiller
64
- docker_exec helm init --service-account tiller --upgrade --wait
65
- echo
66
- }
67
-
68
60
install_local-path-provisioner () {
69
61
# kind doesn't support Dynamic PVC provisioning yet, this is one ways to get it working
70
62
# https://github.com/rancher/local-path-provisioner
@@ -88,7 +80,6 @@ main() {
88
80
89
81
create_kind_cluster
90
82
install_local-path-provisioner
91
- install_tiller
92
83
install_charts
93
84
}
94
85
Original file line number Diff line number Diff line change @@ -61,8 +61,6 @@ type Git interface {
61
61
62
62
// Helm is the interface that wraps Helm operations
63
63
//
64
- // Init runs client-side Helm initialization
65
- //
66
64
// AddRepo adds a chart repository to the local Helm configuration
67
65
//
68
66
// BuildDependencies builds the chart's dependencies
You can’t perform that action at this time.
0 commit comments