1
1
# render imports for install and install standalone images
2
2
# . is dict with next params
3
3
# Env - werf env
4
- # prefix - target files add prefix
5
4
{{- define "installer_and_installer_standalone_generic_imports" }}
6
5
{{- $context := . -}}
7
- {{- $prefix := $context.prefix -}}
8
6
9
7
- image: dhctl
10
8
add: /dhctl/bin/dhctl
11
- to: {{ $prefix }} /dhctl
9
+ to: /dhctl
12
10
before: setup
13
11
- image: dev-prebuild
14
12
add: /deckhouse
19
17
after: setup
20
18
- image: images-digests
21
19
add: /images_digests.json
22
- to: {{ $prefix }} /deckhouse/candi/images_digests.json
20
+ to: /deckhouse/candi/images_digests.json
23
21
before: setup
24
22
- image: version-map-artifact
25
23
add: /version_map_{{ $context.Env }}.yml
26
- to: {{ $prefix }} /deckhouse/candi/version_map.yml
24
+ to: /deckhouse/candi/version_map.yml
27
25
before: setup
28
26
- image: ssh-static
29
27
add: /ssh/bin
64
62
# Env - werf env
65
63
# TF - TF from werf.yaml
66
64
# Editions - Editions from werf.yaml
67
- # prefix - target files add prefix
68
65
{{- define "installer_and_installer_standalone_terraform_imports" }}
69
66
{{- $context := . -}}
70
- {{- $prefix := $context.prefix -}}
71
67
72
68
- image: terraform # from modules/040-terraform-manager/images/terraform-manager-base/werf.inc.yaml
73
69
add: /terraform/terraform
74
- to: {{ $prefix }} /bin/terraform
70
+ to: /bin/terraform
75
71
before: setup
76
72
{{- range $_, $edition := $context.Editions }}
77
73
{{- if $edition.terraformProviders }}
78
74
{{- range $_, $tfProvider := $edition.terraformProviders }}
79
75
{{- $tf := index $context.TF $tfProvider }}
80
76
- image: {{ $tf.artifact }} # from modules/040-terraform-manager/images/terraform-manager-{PROVIDER}/werf.inc.yaml
81
77
add: /{{ $tf.artifactBinary }}
82
- to: {{ $prefix }} /plugins/registry.terraform.io/{{ $tf.namespace }}/{{ $tf.type }}/{{ $tf.version }}/linux_amd64/{{ $tf.destinationBinary }}
78
+ to: /plugins/registry.terraform.io/{{ $tf.namespace }}/{{ $tf.type }}/{{ $tf.version }}/linux_amd64/{{ $tf.destinationBinary }}
83
79
before: setup
84
80
{{- end }}
85
81
{{- end }}
94
90
# render shell scripts for preparing installer image
95
91
# . is dict with keys:
96
92
# rootContext - context with .Files
97
- # prefix - Files.Get prefix
98
93
# CI_COMMIT_TAG - CI_COMMIT_TAG env
99
94
{{- define "installer_prepare_with_shell" }}
100
95
{{- $context := . -}}
101
96
{{- $rootContext := $context.rootContext -}}
102
- {{- $prefix := $context.prefix -}}
103
97
104
98
shell:
105
99
beforeInstall:
@@ -110,7 +104,7 @@ shell:
110
104
- |
111
105
ln -fs /dhctl /usr/bin/dhctl
112
106
cat <<"EOD" > /etc/inputrc
113
- {{- $rootContext.Files.Get (printf "%sdeckhouse -controller/files/inputrc" $prefix) | nindent 4 }}
107
+ {{- $rootContext.Files.Get "deckhouse -controller/files/inputrc" | nindent 4 }}
114
108
EOD
115
109
116
110
cat <<"EOD" > /etc/bashrc
@@ -129,7 +123,7 @@ shell:
129
123
130
124
mkdir -p /etc/vim
131
125
cat <<"EOD" > /etc/vim/vimrc.local
132
- {{- $rootContext.Files.Get (printf "%sdeckhouse -controller/files/vimrc.local" $prefix) | nindent 4 }}
126
+ {{- $rootContext.Files.Get "deckhouse -controller/files/vimrc.local" | nindent 4 }}
133
127
EOD
134
128
135
129
echo 'eval "$(dhctl --completion-script-bash)"' >> /etc/bashrc
0 commit comments