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 gcr.io/kaniko-project/executor from 1.6.0 to 1.15.0 #3095

Merged
merged 1 commit into from
Sep 13, 2023
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
6 changes: 3 additions & 3 deletions cloudbuild_master.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ steps:
waitFor:
- tag_mysql
- id: build_db_server
name: gcr.io/kaniko-project/executor:v1.6.0
name: gcr.io/kaniko-project/executor:v1.15.0
args:
- --dockerfile=examples/deployment/docker/db_server/Dockerfile
- --destination=gcr.io/${PROJECT_ID}/db_server:${COMMIT_SHA}
Expand All @@ -39,7 +39,7 @@ steps:
waitFor:
- push_mysql
- id: build_log_server
name: gcr.io/kaniko-project/executor:v1.6.0
name: gcr.io/kaniko-project/executor:v1.15.0
args:
- --dockerfile=examples/deployment/docker/log_server/Dockerfile
- --destination=gcr.io/${PROJECT_ID}/log_server:${COMMIT_SHA}
Expand All @@ -48,7 +48,7 @@ steps:
- --cache-dir= # Cache is in Google Container Registry
waitFor: ["-"]
- id: build_log_signer
name: gcr.io/kaniko-project/executor:v1.6.0
name: gcr.io/kaniko-project/executor:v1.15.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 @@ -25,7 +25,7 @@ steps:
waitFor:
- tag_mysql
- id: build_db_server
name: gcr.io/kaniko-project/executor:v1.6.0
name: gcr.io/kaniko-project/executor:v1.15.0
args:
- --dockerfile=examples/deployment/docker/db_server/Dockerfile
- --destination=gcr.io/${PROJECT_ID}/db_server:${TAG_NAME}
Expand All @@ -34,15 +34,15 @@ steps:
waitFor:
- push_mysql
- id: build_log_server
name: gcr.io/kaniko-project/executor:v1.6.0
name: gcr.io/kaniko-project/executor:v1.15.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.6.0
name: gcr.io/kaniko-project/executor:v1.15.0
args:
- --dockerfile=examples/deployment/docker/log_signer/Dockerfile
- --destination=gcr.io/${PROJECT_ID}/log_signer:${TAG_NAME}
Expand Down
Loading