-
Notifications
You must be signed in to change notification settings - Fork 321
Expand file tree
/
Copy pathplugin.yaml
More file actions
27 lines (26 loc) · 815 Bytes
/
plugin.yaml
File metadata and controls
27 lines (26 loc) · 815 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
name: diff
# Version is the version of Helm plus the number of official builds for this
# plugin
version: "3.15.2"
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
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"