Remove registry prefix from skaffold config
This commit is contained in:
parent
0fe565edfa
commit
96b6beae63
2 changed files with 21 additions and 13 deletions
|
@ -30,9 +30,13 @@ steps:
|
||||||
# push app code to cluster
|
# push app code to cluster
|
||||||
- id: 'Deploy to staging'
|
- id: 'Deploy to staging'
|
||||||
name: skaffold
|
name: skaffold
|
||||||
args: ['run', '-f=skaffold.yaml']
|
args:
|
||||||
|
[
|
||||||
|
'run',
|
||||||
|
'-f=skaffold.yaml',
|
||||||
|
'--default-repo','gcr.io/$PROJECT_ID',
|
||||||
|
]
|
||||||
env:
|
env:
|
||||||
- 'SKAFFOLD_DEFAULT_REPO=gcr.io/$PROJECT_ID'
|
|
||||||
- 'CLOUDSDK_COMPUTE_ZONE=us-central1-b'
|
- 'CLOUDSDK_COMPUTE_ZONE=us-central1-b'
|
||||||
- 'CLOUDSDK_CONTAINER_CLUSTER=demo-app-staging'
|
- 'CLOUDSDK_CONTAINER_CLUSTER=demo-app-staging'
|
||||||
|
|
||||||
|
|
|
@ -16,27 +16,31 @@ apiVersion: skaffold/v1alpha5
|
||||||
kind: Config
|
kind: Config
|
||||||
build:
|
build:
|
||||||
artifacts:
|
artifacts:
|
||||||
- image: gcr.io/microservices-demo-app/emailservice
|
# image tags are relative; to specify an image repo (e.g. GCR), you
|
||||||
|
# must provide a "default repo" using one of the methods described
|
||||||
|
# here:
|
||||||
|
# https://github.com/GoogleContainerTools/skaffold/blob/master/docs/concepts.adoc#2-push
|
||||||
|
- image: emailservice
|
||||||
context: src/emailservice
|
context: src/emailservice
|
||||||
- image: gcr.io/microservices-demo-app/productcatalogservice
|
- image: productcatalogservice
|
||||||
context: src/productcatalogservice
|
context: src/productcatalogservice
|
||||||
- image: gcr.io/microservices-demo-app/recommendationservice
|
- image: recommendationservice
|
||||||
context: src/recommendationservice
|
context: src/recommendationservice
|
||||||
- image: gcr.io/microservices-demo-app/shippingservice
|
- image: shippingservice
|
||||||
context: src/shippingservice
|
context: src/shippingservice
|
||||||
- image: gcr.io/microservices-demo-app/checkoutservice
|
- image: checkoutservice
|
||||||
context: src/checkoutservice
|
context: src/checkoutservice
|
||||||
- image: gcr.io/microservices-demo-app/paymentservice
|
- image: paymentservice
|
||||||
context: src/paymentservice
|
context: src/paymentservice
|
||||||
- image: gcr.io/microservices-demo-app/currencyservice
|
- image: currencyservice
|
||||||
context: src/currencyservice
|
context: src/currencyservice
|
||||||
- image: gcr.io/microservices-demo-app/cartservice
|
- image: cartservice
|
||||||
context: src/cartservice
|
context: src/cartservice
|
||||||
- image: gcr.io/microservices-demo-app/frontend
|
- image: frontend
|
||||||
context: src/frontend
|
context: src/frontend
|
||||||
- image: gcr.io/microservices-demo-app/loadgenerator
|
- image: loadgenerator
|
||||||
context: src/loadgenerator
|
context: src/loadgenerator
|
||||||
- image: gcr.io/microservices-demo-app/adservice
|
- image: adservice
|
||||||
context: src/adservice
|
context: src/adservice
|
||||||
tagPolicy:
|
tagPolicy:
|
||||||
gitCommit: {}
|
gitCommit: {}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue