Skip to content

Commit

Permalink
Bump kaniko to v1.20.0
Browse files Browse the repository at this point in the history
  • Loading branch information
AlCutter committed Feb 7, 2024
1 parent fdc7094 commit 75805c5
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 9 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
## Notable Changes

* Updated go version 1.20 -> 1.21
* Bump kaniko (used to build Docker images in GCB) to 1.20.0

## v1.6.0 (Jan 2024)

Expand Down
6 changes: 3 additions & 3 deletions cloudbuild_master.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,15 @@ options:
machineType: E2_HIGHCPU_32
steps:
- id: build_db_server
name: gcr.io/kaniko-project/executor:v1.15.0
name: gcr.io/kaniko-project/executor:v1.20.0
args:
- --dockerfile=examples/deployment/docker/db_server/Dockerfile
- --destination=gcr.io/${PROJECT_ID}/db_server:${COMMIT_SHA}
- --destination=gcr.io/${PROJECT_ID}/db_server:latest
- --cache=true
- --cache-dir= # Cache is in Google Container Registry
- id: build_log_server
name: gcr.io/kaniko-project/executor:v1.15.0
name: gcr.io/kaniko-project/executor:v1.20.0
args:
- --dockerfile=examples/deployment/docker/log_server/Dockerfile
- --destination=gcr.io/${PROJECT_ID}/log_server:${COMMIT_SHA}
Expand All @@ -26,7 +26,7 @@ steps:
- --cache-dir= # Cache is in Google Container Registry
waitFor: ["-"]
- id: build_log_signer
name: gcr.io/kaniko-project/executor:v1.15.0
name: gcr.io/kaniko-project/executor:v1.20.0
args:
- --dockerfile=examples/deployment/docker/log_signer/Dockerfile
- --destination=gcr.io/${PROJECT_ID}/log_signer:${COMMIT_SHA}
Expand Down
6 changes: 3 additions & 3 deletions cloudbuild_pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,23 +14,23 @@ options:
steps:

- id: build_db_server
name: gcr.io/kaniko-project/executor:v1.15.0
name: gcr.io/kaniko-project/executor:v1.20.0
args:
- --dockerfile=examples/deployment/docker/db_server/Dockerfile
- --destination=gcr.io/${PROJECT_ID}/db_server:${COMMIT_SHA}
- --cache=true
- --cache-dir= # Cache is in Google Container Registry.

- id: build_log_server
name: gcr.io/kaniko-project/executor:v1.15.0
name: gcr.io/kaniko-project/executor:v1.20.0
args:
- --dockerfile=examples/deployment/docker/log_server/Dockerfile
- --destination=gcr.io/${PROJECT_ID}/log_server:${COMMIT_SHA}
- --cache=true
- --cache-dir= # Cache is in Google Container Registry
waitFor: ['-']
- id: build_log_signer
name: gcr.io/kaniko-project/executor:v1.15.0
name: gcr.io/kaniko-project/executor:v1.20.0
args:
- --dockerfile=examples/deployment/docker/log_signer/Dockerfile
- --destination=gcr.io/${PROJECT_ID}/log_signer:${COMMIT_SHA}
Expand Down
6 changes: 3 additions & 3 deletions cloudbuild_tag.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,22 +5,22 @@ options:
machineType: E2_HIGHCPU_32
steps:
- id: build_db_server
name: gcr.io/kaniko-project/executor:v1.15.0
name: gcr.io/kaniko-project/executor:v1.20.0
args:
- --dockerfile=examples/deployment/docker/db_server/Dockerfile
- --destination=gcr.io/${PROJECT_ID}/db_server:${TAG_NAME}
- --cache=true
- --cache-dir= # Cache is in Google Container Registry
- id: build_log_server
name: gcr.io/kaniko-project/executor:v1.15.0
name: gcr.io/kaniko-project/executor:v1.20.0
args:
- --dockerfile=examples/deployment/docker/log_server/Dockerfile
- --destination=gcr.io/${PROJECT_ID}/log_server:${TAG_NAME}
- --cache=true
- --cache-dir= # Cache is in Google Container Registry
waitFor: ["-"]
- id: build_log_signer
name: gcr.io/kaniko-project/executor:v1.15.0
name: gcr.io/kaniko-project/executor:v1.20.0
args:
- --dockerfile=examples/deployment/docker/log_signer/Dockerfile
- --destination=gcr.io/${PROJECT_ID}/log_signer:${TAG_NAME}
Expand Down

0 comments on commit 75805c5

Please sign in to comment.