Commit 05a647b 1 parent 0f0e71a commit 05a647b Copy full SHA for 05a647b
File tree 2 files changed +6
-6
lines changed
2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -9,13 +9,13 @@ Vagrant.configure(2) do |config|
9
9
config . dns . tld = tld
10
10
end
11
11
12
- [ "20 .04" ] . each do |dist |
12
+ [ "21 .04" ] . each do |dist |
13
13
config . vm . define "#{ hostname } " do |node |
14
14
node . vm . hostname = hostname
15
15
node . vm . network "private_network" , ip : '192.168.61.10'
16
16
17
17
node . vm . provider :hyperv do |hv |
18
- node . vm . box = ' bento/ubuntu-20.04'
18
+ node . vm . box = " bento/ubuntu-#{ dist } "
19
19
hv . memory = '8192'
20
20
hv . cpus = '2'
21
21
hv . vmname = hostname
Original file line number Diff line number Diff line change 2
2
3
3
. ./lib/dashboard.sh
4
4
5
- # curl -Lo skaffold https://storage.googleapis.com/skaffold/releases/v1.10.1/skaffold-linux-amd64 && chmod +x skaffold && sudo mv skaffold /usr/local/bin
6
- curl -Lo skaffold https://storage.googleapis.com/skaffold/releases/latest/skaffold-linux-amd64 && chmod +x skaffold && sudo mv skaffold /usr/local/bin
7
5
git clone https://github.com/GoogleCloudPlatform/microservices-demo.git
8
6
cd microservices-demo
9
- skaffold run
10
- sleep 60
7
+ kubectl create namespace demo
8
+ kubectl -n demo apply -f ./release/kubernetes-manifests.yaml
9
+ kubectl wait --for=condition=available deployment/frontend -n demo
11
10
kubectl port-forward deployment/frontend 9292:8080
11
+ echo " Browse to http://kind.test:8080"
You can’t perform that action at this time.
0 commit comments