Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump kaniko to v1.20.0 to fix #3338 #3339

Merged
merged 1 commit into from
Feb 7, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading