Skip to content

Commit 5f3f698

Browse files
authored
add logical-backup build and push to delivery.yaml (zalando#1259)
* add logical-backup build and push to delivery.yaml * enable manual approval for UI and logical-backup
1 parent 636ba9b commit 5f3f698

File tree

1 file changed

+13
-1
lines changed

1 file changed

+13
-1
lines changed

delivery.yaml

+13-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ pipeline:
5555
5656
- id: build-operator-ui
5757
type: script
58-
58+
requires_human_approval: true
5959
commands:
6060
- desc: 'Prepare environment'
6161
cmd: |
@@ -80,3 +80,15 @@ pipeline:
8080
export IMAGE
8181
make docker
8282
make push
83+
84+
- id: build-logical-backup
85+
type: script
86+
requires_human_approval: true
87+
commands:
88+
- desc: Build image
89+
cmd: |
90+
cd docker/logical-backup
91+
export TAG=$(git describe --tags --always --dirty)
92+
IMAGE="registry-write.opensource.zalan.do/acid/logical-backup"
93+
docker build --rm -t "$IMAGE:$TAG$CDP_TAG" .
94+
docker push "$IMAGE:$TAG$CDP_TAG"

0 commit comments

Comments
 (0)