Skip to content

Commit 6b4f369

Browse files
committed
restore compat mode
Signed-off-by: Markus Blaschke <mblaschke82@gmail.com>
1 parent 68b4305 commit 6b4f369

File tree

2 files changed

+57
-16
lines changed

2 files changed

+57
-16
lines changed

plugin.yaml

Lines changed: 34 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,41 @@
11
---
2-
apiVersion: v1
3-
type: getter/v1
42
name: "azure-tpl"
53
version: "0.57.0"
64
usage: "applies azure information into your helm files"
7-
runtime: subprocess
8-
config:
9-
protocols:
10-
- azuretpl
11-
- azure-tpl
125
description: |-
136
see https://github.com/webdevops/helm-azure-tpl/blob/main/README.md
147
ignoreFlags: false
15-
runtimeConfig:
16-
platformCommand:
17-
- command: ${HELM_PLUGIN_DIR}/helm-azure-tpl
18-
protocolCommands:
19-
- protocols:
20-
- azuretpl
21-
- azure-tpl
22-
platformCommand:
23-
- command: helm-downloader.sh
8+
platformCommand:
9+
###########################
10+
# Linux
11+
- os: linux
12+
arch: amd64
13+
command: "$HELM_PLUGIN_DIR/helm-azure-tpl.linux.amd64"
14+
- os: linux
15+
arch: arm64
16+
command: "$HELM_PLUGIN_DIR/helm-azure-tpl.linux.arm64"
17+
###########################
18+
# osx
19+
- os: darwin
20+
arch: amd64
21+
command: "$HELM_PLUGIN_DIR/helm-azure-tpl.darwin.amd64"
22+
- os: darwin
23+
arch: arm64
24+
command: "$HELM_PLUGIN_DIR/helm-azure-tpl.darwin.arm64"
25+
###########################
26+
# Windows
27+
- os: windows
28+
arch: amd64
29+
command: "$HELM_PLUGIN_DIR/helm-azure-tpl.windows.amd64.exe"
30+
- os: windows
31+
arch: arm64
32+
command: "$HELM_PLUGIN_DIR/helm-azure-tpl.windows.arm64.exe"
33+
hooks:
34+
install: "bash $HELM_PLUGIN_DIR/plugin/hooks/helm-plugin-install.sh"
35+
update: "bash $HELM_PLUGIN_DIR/plugin/hooks/helm-plugin-install.sh"
36+
37+
downloaders:
38+
- command: "plugin/hooks/helm-downloader.sh"
39+
protocols:
40+
- "azuretpl"
41+
- "azure-tpl"

plugin4.yaml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
---
2+
apiVersion: v1
3+
type: getter/v1
4+
name: "azure-tpl"
5+
version: "0.57.0"
6+
usage: "applies azure information into your helm files"
7+
runtime: subprocess
8+
config:
9+
protocols:
10+
- azuretpl
11+
- azure-tpl
12+
description: |-
13+
see https://github.com/webdevops/helm-azure-tpl/blob/main/README.md
14+
ignoreFlags: false
15+
runtimeConfig:
16+
platformCommand:
17+
- command: ${HELM_PLUGIN_DIR}/helm-azure-tpl
18+
protocolCommands:
19+
- protocols:
20+
- azuretpl
21+
- azure-tpl
22+
platformCommand:
23+
- command: helm-downloader.sh

0 commit comments

Comments
 (0)