@@ -34,10 +34,6 @@ Before you deploy the sample you'll need to make sure a few things are in order:
34
34
35
35
$ gcloud config set project YOUR_PROJECT_ID
36
36
37
- 1 . Enable beta features:
38
-
39
- $ gcloud components update beta
40
-
41
37
<a name =" deploy " ></a >
42
38
## Deploy the Sample
43
39
With ` gcloud ` installed and the proper APIs configured, you're ready to go.
@@ -67,7 +63,7 @@ With `gcloud` installed and the proper APIs configured, you're ready to go.
67
63
1 . Set the root password for your database:
68
64
69
65
$ gcloud sql instances set-root-password $DB_NAME \
70
- --password YOUR_PASSWORD
66
+ --password YOUR_PASSWORD
71
67
72
68
1 . Retrieve the Instance Name and IP address of your database:
73
69
@@ -94,7 +90,7 @@ With `gcloud` installed and the proper APIs configured, you're ready to go.
94
90
95
91
1 . Deploy the solution:
96
92
97
- $ gcloud beta deployment-manager deployments \
93
+ $ gcloud deployment-manager deployments \
98
94
create $DEMO_PROJECT \
99
95
--config dm/deployment.yaml
100
96
@@ -137,15 +133,15 @@ To delete your sample deployment:
137
133
138
134
1 . Delete all objects in the bucket created by your sample deployment:
139
135
140
- $ gsutil rm -r gs://$(gcloud beta deployment-manager resources list --deployment $DEMO_PROJECT | grep storage.v1.bucket | cut -d' ' -f1)/*
136
+ $ gsutil rm -r gs://$(gcloud deployment-manager resources list --deployment $DEMO_PROJECT | grep storage.v1.bucket | cut -d' ' -f1)/*
141
137
142
138
1 . Delete your SQL database:
143
139
144
140
$ gcloud sql instances delete $DB_NAME
145
141
146
142
1 . Finally, delete your deployment:
147
143
148
- $ gcloud beta deployment-manager deployments delete $DEMO_PROJECT
144
+ $ gcloud deployment-manager deployments delete $DEMO_PROJECT
149
145
150
146
<a name =" fast " ></a >
151
147
## Fast Boot with Packer
0 commit comments