File tree Expand file tree Collapse file tree 1 file changed +31
-0
lines changed Expand file tree Collapse file tree 1 file changed +31
-0
lines changed Original file line number Diff line number Diff line change
1
+ Before submitting a pul request, I'd encourage you to test it yourself.
2
+
3
+ To do so, you need to run the plugin indirectly or directly-
4
+
5
+ ** Indirect** Install the plugin locally and run it via helm:
6
+
7
+ ```
8
+ $ helm plugin uninstall diff
9
+
10
+ $ helm plugin list
11
+ #=> Make sure that the previous installation of helm-diff has unisntalled
12
+
13
+ $ make install
14
+
15
+ $ helm plugin list
16
+ #=> Make sure that the version of helm-diff built from your branch has instaled
17
+
18
+ $ helm diff upgrade ... (snip)
19
+ ```
20
+
21
+ ** Direct** Build the plugin binary and execute it with a few helm-specific environment variables:
22
+
23
+ ```
24
+ $ go build .
25
+
26
+ $ HELM_NAMESPACE=default \
27
+ HELM_BIN=helm372 \
28
+ ./helm-diff upgrade foo $CHART \
29
+ --set argo-cd.nameOverride=testtest \
30
+ --install
31
+ ```
You can’t perform that action at this time.
0 commit comments