File tree 1 file changed +17
-0
lines changed
1 file changed +17
-0
lines changed Original file line number Diff line number Diff line change @@ -79,8 +79,25 @@ The following example show various way of configuring the same thing:
79
79
80
80
#### CLI
81
81
82
+ #### Remote repo
83
+
84
+ With remote repo:
85
+
82
86
ct install --remote upstream --chart-dirs stable,incubator --build-id pr-42
83
87
88
+ #### Local repo
89
+
90
+ If you have a chart in current directory and ct installed on the host then you can run:
91
+
92
+ ct install --chart-dirs . --charts .
93
+
94
+ With docker it works with:
95
+
96
+ docker run -it --workdir=/data --volume ~/.kube/config:/root/.kube/config:ro --volume $(pwd):/data quay.io/helmpack/chart-testing:v3.5.0 ct install --chart-dirs . --charts .
97
+
98
+ Notice that ` workdir ` param is important and must be the same as volume mounted.
99
+
100
+
84
101
#### Environment Variables
85
102
86
103
export CT_REMOTE=upstream
You can’t perform that action at this time.
0 commit comments