Skip to content

Commit

Permalink
Fix: BASE_ALT_DEV -> BASE_ALT
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexey Yakubov authored and Alexey Yakubov committed Jan 10, 2025
1 parent 5f0cf2c commit ce9e49c
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 5 deletions.
3 changes: 1 addition & 2 deletions .werf/consts.yaml
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
# base images
{{- $_ := set $ "BASE_ALT" "registry.deckhouse.io/base_images/alt:p11@sha256:e47d84424485d3674240cb2f67d3a1801b37d327e6d1eb8cc8d01be8ed3b34f3" }}
{{- $_ := set $ "BASE_ALT" "registry.deckhouse.io/base_images/alt:p10@sha256:f105773c682498700680d7cd61a702a4315c4235aee3622757591fd510fb8b4a" }}
{{- $_ := set $ "BASE_ALT_DEV" "registry.deckhouse.io/base_images/dev-alt:p10@sha256:76e6e163fa982f03468166203488b569e6d9fc10855d6a259c662706436cdcad" }}
{{- $_ := set $ "BASE_ALT_P11" "registry.deckhouse.io/base_images/alt:p11@sha256:c396cd7348a48f9236413e2ef5569223c15e554c0a3ca37f9d92fb787d4f1893" }}
{{- $_ := set $ "BASE_GOLANG_1_23" "registry.deckhouse.io/base_images/golang:1.23.1-alpine3.20@sha256:716820a183116e643839611ff9eca9bd1c92d2bf8f7a5eda2f9fd16e8acbaa72" }}
{{- $_ := set $ "BASE_SCRATCH" "registry.deckhouse.io/base_images/scratch@sha256:653ae76965c98c8cd1c8c9ff7725316d2983986f896655b30e0f44d2f8b2dd7e" }}


# component versions
{{- $versions := dict }}

Expand Down
1 change: 1 addition & 0 deletions images/sds-local-volume-csi/werf.inc.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ import:
shell:
beforeInstall:
- export DEBIAN_FRONTEND=noninteractive
- apt-get install -y make automake pkg-config gcc libtool git curl
- |
apt-get update \
&& apt-get -y install lvm2 e2fsprogs xfsprogs \
Expand Down
10 changes: 7 additions & 3 deletions images/sds-local-volume-scheduler-extender/werf.inc.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,20 +44,24 @@ shell:

---
image: {{ $.ImageName }}-binaries-artifact
from: {{ $.Root.BASE_ALT_DEV }}
from: {{ $.Root.BASE_ALT_P11 }}
final: false

shell:
install:
- apt-get install curl
# Make BASE_ALT BASE_ALT_DEV
- apt-get install -y make automake pkg-config gcc libtool git curl
- /binary_replace.sh -i "{{ $csiBinaries }}" -o /relocate

---
image: {{ $.ImageName }}-distroless-artifact
from: {{ $.Root.BASE_ALT_DEV }}
from: {{ $.Root.BASE_ALT_P11 }}
final: false

shell:
before install:
# Make BASE_ALT BASE_ALT_DEV
- apt-get install -y make automake pkg-config gcc libtool git curl
install:
- mkdir -p /relocate/bin /relocate/sbin /relocate/etc /relocate/etc/ssl /relocate/usr/bin /relocate/usr/sbin /relocate/usr/share
- cp -pr /tmp /relocate
Expand Down

0 comments on commit ce9e49c

Please sign in to comment.