File tree 3 files changed +31
-9
lines changed
integration/examples/buildpacks
3 files changed +31
-9
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change
1
+ apiVersion : v1
2
+ kind : Service
3
+ metadata :
4
+ name : web
5
+ spec :
6
+ ports :
7
+ - port : 8080
8
+ name : http
9
+ type : LoadBalancer
10
+ selector :
11
+ app : web
12
+ ---
13
+ apiVersion : apps/v1
14
+ kind : Deployment
15
+ metadata :
16
+ name : web
17
+ spec :
18
+ selector :
19
+ matchLabels :
20
+ app : web
21
+ template :
22
+ metadata :
23
+ labels :
24
+ app : web
25
+ spec :
26
+ containers :
27
+ - name : web
28
+ image : gcr.io/k8s-skaffold/skaffold-buildpacks
29
+ ports :
30
+ - containerPort : 8080
Original file line number Diff line number Diff line change @@ -2,6 +2,6 @@ apiVersion: skaffold/v1
2
2
kind : Config
3
3
build :
4
4
artifacts :
5
- - image : gcr.io/k8s-skaffold/skaffold-example
5
+ - image : gcr.io/k8s-skaffold/skaffold-buildpacks
6
6
buildpack :
7
7
builder : " heroku/buildpacks"
You can’t perform that action at this time.
0 commit comments