CI: disable kaniko cache,

This commit is contained in:
Sonja Happ 2021-01-21 15:34:18 +01:00
parent 6db0373025
commit ddd43f4de7
2 changed files with 2 additions and 4 deletions

View file

@ -108,7 +108,5 @@ deploy:
--dockerfile ${CI_PROJECT_DIR}/Dockerfile
--destination ${DOCKER_IMAGE}:${DOCKER_TAG}
--snapshotMode=redo
--cache=true
--cache-ttl=12h
dependencies:
- test

View file

@ -83,13 +83,13 @@ func InitConfig() error {
"s3.region": *s3Region,
}
if *s3NoSSL {
if *s3NoSSL == true {
static["s3.nossl"] = "true"
} else {
static["s3.nossl"] = "false"
}
if *s3PathStyle {
if *s3PathStyle == true {
static["s3.pathstyle"] = "true"
} else {
static["s3.pathstyle"] = "false"