forked from databus23/helm-diff
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugin.yaml
More file actions
32 lines (31 loc) · 971 Bytes
/
plugin.yaml
File metadata and controls
32 lines (31 loc) · 971 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
name: diff
# Version is the version of Helm plus the number of official builds for this
# plugin
version: "3.14.1"
usage: "Preview helm upgrade changes as a diff"
description: "Preview helm upgrade changes as a diff"
useTunnel: true
platformCommand:
- command: ${HELM_PLUGIN_DIR}/bin/diff
- os: windows
command: pwsh
args:
- -Command
- "& (Join-Path -Path (Get-ChildItem env:HELM_PLUGIN_DIR).value -ChildPath 'bin\\diff')"
platformHooks:
install:
- command: ${HELM_PLUGIN_DIR}/install-binary.sh
- os: windows
command: pwsh
args:
- -Command
- "& (Join-Path -Path (Get-ChildItem env:HELM_PLUGIN_DIR).value -ChildPath 'install-binary.ps1')"
update:
- command: ${HELM_PLUGIN_DIR}/install-binary.sh
args:
- -u
- os: windows
command: pwsh
args:
- -Command
- "& (Join-Path -Path (Get-ChildItem env:HELM_PLUGIN_DIR).value -ChildPath 'install-binary.ps1') -Update"