add logical-backup build and push to delivery.yaml (#1259)
* add logical-backup build and push to delivery.yaml * enable manual approval for UI and logical-backup
This commit is contained in:
parent
636ba9b846
commit
5f3f6988bc
|
|
@ -55,7 +55,7 @@ pipeline:
|
||||||
|
|
||||||
- id: build-operator-ui
|
- id: build-operator-ui
|
||||||
type: script
|
type: script
|
||||||
|
requires_human_approval: true
|
||||||
commands:
|
commands:
|
||||||
- desc: 'Prepare environment'
|
- desc: 'Prepare environment'
|
||||||
cmd: |
|
cmd: |
|
||||||
|
|
@ -80,3 +80,15 @@ pipeline:
|
||||||
export IMAGE
|
export IMAGE
|
||||||
make docker
|
make docker
|
||||||
make push
|
make push
|
||||||
|
|
||||||
|
- id: build-logical-backup
|
||||||
|
type: script
|
||||||
|
requires_human_approval: true
|
||||||
|
commands:
|
||||||
|
- desc: Build image
|
||||||
|
cmd: |
|
||||||
|
cd docker/logical-backup
|
||||||
|
export TAG=$(git describe --tags --always --dirty)
|
||||||
|
IMAGE="registry-write.opensource.zalan.do/acid/logical-backup"
|
||||||
|
docker build --rm -t "$IMAGE:$TAG$CDP_TAG" .
|
||||||
|
docker push "$IMAGE:$TAG$CDP_TAG"
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue