Skip to content

Commit b9dad8b

Browse files
[ci] fix standalone-installer build (#12237)
Signed-off-by: Denis Romanenko <[email protected]> Signed-off-by: Nikolay Mitrofanov <[email protected]> Co-authored-by: Nikolay Mitrofanov <[email protected]>
1 parent e225a32 commit b9dad8b

8 files changed

+36
-26
lines changed

.werf/defines/installer.tmpl

+7-13
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,12 @@
11
# render imports for install and install standalone images
22
# . is dict with next params
33
# Env - werf env
4-
# prefix - target files add prefix
54
{{- define "installer_and_installer_standalone_generic_imports" }}
65
{{- $context := . -}}
7-
{{- $prefix := $context.prefix -}}
86

97
- image: dhctl
108
add: /dhctl/bin/dhctl
11-
to: {{ $prefix }}/dhctl
9+
to: /dhctl
1210
before: setup
1311
- image: dev-prebuild
1412
add: /deckhouse
@@ -19,11 +17,11 @@
1917
after: setup
2018
- image: images-digests
2119
add: /images_digests.json
22-
to: {{ $prefix }}/deckhouse/candi/images_digests.json
20+
to: /deckhouse/candi/images_digests.json
2321
before: setup
2422
- image: version-map-artifact
2523
add: /version_map_{{ $context.Env }}.yml
26-
to: {{ $prefix }}/deckhouse/candi/version_map.yml
24+
to: /deckhouse/candi/version_map.yml
2725
before: setup
2826
- image: ssh-static
2927
add: /ssh/bin
@@ -64,22 +62,20 @@
6462
# Env - werf env
6563
# TF - TF from werf.yaml
6664
# Editions - Editions from werf.yaml
67-
# prefix - target files add prefix
6865
{{- define "installer_and_installer_standalone_terraform_imports" }}
6966
{{- $context := . -}}
70-
{{- $prefix := $context.prefix -}}
7167

7268
- image: terraform # from modules/040-terraform-manager/images/terraform-manager-base/werf.inc.yaml
7369
add: /terraform/terraform
74-
to: {{ $prefix }}/bin/terraform
70+
to: /bin/terraform
7571
before: setup
7672
{{- range $_, $edition := $context.Editions }}
7773
{{- if $edition.terraformProviders }}
7874
{{- range $_, $tfProvider := $edition.terraformProviders }}
7975
{{- $tf := index $context.TF $tfProvider }}
8076
- image: {{ $tf.artifact }} # from modules/040-terraform-manager/images/terraform-manager-{PROVIDER}/werf.inc.yaml
8177
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 }}
8379
before: setup
8480
{{- end }}
8581
{{- end }}
@@ -94,12 +90,10 @@
9490
# render shell scripts for preparing installer image
9591
# . is dict with keys:
9692
# rootContext - context with .Files
97-
# prefix - Files.Get prefix
9893
# CI_COMMIT_TAG - CI_COMMIT_TAG env
9994
{{- define "installer_prepare_with_shell" }}
10095
{{- $context := . -}}
10196
{{- $rootContext := $context.rootContext -}}
102-
{{- $prefix := $context.prefix -}}
10397

10498
shell:
10599
beforeInstall:
@@ -110,7 +104,7 @@ shell:
110104
- |
111105
ln -fs /dhctl /usr/bin/dhctl
112106
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 }}
114108
EOD
115109

116110
cat <<"EOD" > /etc/bashrc
@@ -129,7 +123,7 @@ shell:
129123

130124
mkdir -p /etc/vim
131125
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 }}
133127
EOD
134128

135129
echo 'eval "$(dhctl --completion-script-bash)"' >> /etc/bashrc

.werf/werf-dev-install-standalone.yaml

+19-5
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,30 @@
11
---
2-
image: install-standalone-builder
2+
image: install-standalone-builder-content
3+
from: {{ .Images.BASE_SCRATCH }}
34
final: false
4-
from: {{ .Images.BASE_ALPINE }}
55
git:
66
- add: /
7-
to: /image/deckhouse
7+
to: /deckhouse
88
includePaths:
99
- candi
1010
{{ .Files.Get (printf "tools/build_includes/candi-%s.yaml" .Env) }}
1111
import:
12-
{{ include "installer_and_installer_standalone_generic_imports" (dict "Env" $.Env "prefix" "/image") }}
13-
{{ include "installer_and_installer_standalone_terraform_imports" (dict "Env" $.Env "TF" $.TF "Editions" $.Editions "prefix" "/image") }}
12+
{{ include "installer_and_installer_standalone_generic_imports" (dict "Env" $.Env) }}
13+
{{ include "installer_and_installer_standalone_terraform_imports" (dict "Env" $.Env "TF" $.TF "Editions" $.Editions) }}
14+
---
15+
image: install-standalone-builder
16+
final: false
17+
from: {{ .Images.BASE_ALPINE }}
18+
import:
19+
- image: install-standalone-builder-content
20+
add: /
21+
to: /image
22+
before: setup
23+
includePaths:
24+
- bin
25+
- deckhouse
26+
- plugins
27+
- dhctl
1428
shell:
1529
setup:
1630
{{ include "installer_standalone_setup_script" (dict "CI_COMMIT_TAG" .CI_COMMIT_TAG) | nindent 2 }}

.werf/werf-dev-install.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@ git:
88
- candi
99
{{ .Files.Get (printf "tools/build_includes/candi-%s.yaml" .Env) }}
1010
import:
11-
{{ include "installer_and_installer_standalone_generic_imports" (dict "Env" $.Env "prefix" "") }}
12-
{{ include "installer_and_installer_standalone_terraform_imports" (dict "Env" $.Env "TF" $.TF "Editions" $.Editions "prefix" "") }}
11+
{{ include "installer_and_installer_standalone_generic_imports" (dict "Env" $.Env) }}
12+
{{ include "installer_and_installer_standalone_terraform_imports" (dict "Env" $.Env "TF" $.TF "Editions" $.Editions) }}
1313
{{ include "installer_and_installer_standalone_libraries_and_binaries_imports" . }}
1414

1515
{{ include "installer_docker_properties" . }}
1616

17-
{{ include "installer_prepare_with_shell" (dict "rootContext" . "prefix" "" "CI_COMMIT_TAG" .CI_COMMIT_TAG) }}
17+
{{ include "installer_prepare_with_shell" (dict "rootContext" . "CI_COMMIT_TAG" .CI_COMMIT_TAG) }}

candi/bashible/bb_package_install.sh.tpl

+2-2
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ export PACKAGES_PROXY_ADDRESSES="{{ .packagesProxy.addresses | join "," }}"
2929
export PACKAGES_PROXY_TOKEN="{{ .packagesProxy.token }}"
3030
{{- end }}
3131

32-
{{- if $check_python := .Files.Get "/deckhouse/candi/bashible/check_python.sh.tpl" | default (.Files.Get "candi/bashible/check_python.sh.tpl") -}}
32+
{{- if $check_python := .Files.Get "deckhouse/candi/bashible/check_python.sh.tpl" | default (.Files.Get "candi/bashible/check_python.sh.tpl") -}}
3333
{{- tpl ( $check_python ) . | nindent 0 }}
3434
{{- end }}
3535

@@ -91,7 +91,7 @@ bb-package-fetch-blob() {
9191
local REPOSITORY_PATH="${REPOSITORY_PATH:-}"
9292
local no_proxy=${PACKAGES_PROXY_ADDRESSES}
9393
local NO_PROXY=${PACKAGES_PROXY_ADDRESSES}
94-
94+
9595
check_python
9696

9797
cat - <<EOFILE | $python_binary

candi/bashible/bootstrap/01-network-scripts.sh.tpl

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
# limitations under the License.
1616
*/}}
1717
{{- if and (ne .nodeGroup.nodeType "Static") (.provider )}}
18-
{{- if $bootstrap_script_network := $.Files.Get (printf "/deckhouse/candi/cloud-providers/%s/bashible/bootstrap-networks.sh.tpl" .provider) | default ($.Files.Get (printf "candi/cloud-providers/%s/bashible/bootstrap-networks.sh.tpl" .provider) ) }}
18+
{{- if $bootstrap_script_network := $.Files.Get (printf "deckhouse/candi/cloud-providers/%s/bashible/bootstrap-networks.sh.tpl" .provider) | default ($.Files.Get (printf "candi/cloud-providers/%s/bashible/bootstrap-networks.sh.tpl" .provider) ) }}
1919
{{- tpl ($bootstrap_script_network) $ | nindent 0 }}
2020
{{- end }}
2121
{{- end }}

candi/bashible/bootstrap/02-base-pkgs.sh.tpl

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ set -Eeo pipefail
2424
# For node-manager render this file include to place, where 'bb_package_install' already included on previous lines.
2525
*/}}
2626

27-
{{- if $bb_package_install := .Files.Get "/deckhouse/candi/bashible/bb_package_install.sh.tpl" -}}
27+
{{- if $bb_package_install := .Files.Get "deckhouse/candi/bashible/bb_package_install.sh.tpl" -}}
2828
{{- tpl ( $bb_package_install ) . | nindent 0 }}
2929
{{- end }}
3030

candi/bashible/bootstrap/03-prepare-bashible.sh.tpl

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
*/}}
1717

1818
function detect_bundle() {
19-
{{- .Files.Get "/deckhouse/candi/bashible/detect_bundle.sh" | nindent 2 }}
19+
{{- .Files.Get "deckhouse/candi/bashible/detect_bundle.sh" | nindent 2 }}
2020
}
2121

2222
function get_bundle() {

dhctl/pkg/template/bundle.go

+2
Original file line numberDiff line numberDiff line change
@@ -178,4 +178,6 @@ func InitGlobalVars(pwd string) {
178178
checkPortsScriptPath = candiBashibleDir + "/preflight/check_ports.sh.tpl"
179179
checkLocalhostScriptPath = candiBashibleDir + "/preflight/check_localhost.sh.tpl"
180180
preflightScriptDirPath = candiBashibleDir + "/preflight/"
181+
killReverseTunnelPath = candiBashibleDir + "/preflight/kill_reverse_tunnel.sh.tpl"
182+
checkProxyRevTunnelOpenScriptPath = candiBashibleDir + "/preflight/check_reverse_tunnel_open.sh.tpl"
181183
}

0 commit comments

Comments
 (0)