Skip to content

Commit

Permalink
Try pinning kaniko version. See GoogleContainerTools/kaniko#1209
Browse files Browse the repository at this point in the history
  • Loading branch information
brianseeders committed May 6, 2020
1 parent 2dfbfea commit a8c2850
Showing 1 changed file with 18 additions and 14 deletions.
32 changes: 18 additions & 14 deletions cloudbuild.yaml
Original file line number Diff line number Diff line change
@@ -1,18 +1,22 @@
steps:
- name: 'gcr.io/kaniko-project/executor:latest'
args: ['--destination=gcr.io/$PROJECT_ID/kibana-ci-service:$COMMIT_SHA', '--cache=true']
- name: 'gcr.io/cloud-builders/gcloud'
- name: "gcr.io/kaniko-project/executor:v0.16.0"
args:
[
'beta',
'run',
'deploy',
'kibana-ci-service',
'--image',
'gcr.io/$PROJECT_ID/kibana-ci-service:$COMMIT_SHA',
'--region',
'us-central1',
'--platform',
'managed',
'--allow-unauthenticated',
"--destination=gcr.io/$PROJECT_ID/kibana-ci-service:$COMMIT_SHA",
"--cache=true",
]
- name: "gcr.io/cloud-builders/gcloud"
args:
[
"beta",
"run",
"deploy",
"kibana-ci-service",
"--image",
"gcr.io/$PROJECT_ID/kibana-ci-service:$COMMIT_SHA",
"--region",
"us-central1",
"--platform",
"managed",
"--allow-unauthenticated",
]

0 comments on commit a8c2850

Please sign in to comment.