Merge pull request #24 from ocervell/patch-1
Update skaffold.yaml to add gcb build
This commit is contained in:
commit
1d266bfdcf
1 changed files with 15 additions and 0 deletions
|
@ -42,3 +42,18 @@ deploy:
|
||||||
kubectl:
|
kubectl:
|
||||||
manifests:
|
manifests:
|
||||||
- ./kubernetes-manifests/**.yaml
|
- ./kubernetes-manifests/**.yaml
|
||||||
|
|
||||||
|
# "gcb" profile allows building and pushing the images
|
||||||
|
# on Google Container Builder without requiring docker
|
||||||
|
# installed on the developer machine. However, note that
|
||||||
|
# since GCB does not cache the builds, each build will
|
||||||
|
# start from scratch and therefore take a long time.
|
||||||
|
#
|
||||||
|
# This is not used by default. To use it, run:
|
||||||
|
# skaffold run -p gcb
|
||||||
|
profiles:
|
||||||
|
- name: gcb
|
||||||
|
build:
|
||||||
|
googleCloudBuild:
|
||||||
|
diskSizeGb: 300
|
||||||
|
machineType: "N1_HIGHCPU_32"
|
||||||
|
|
Loading…
Reference in a new issue