Skip to content

Commit baf52b4

Browse files
authored
Reduce instance size (GoogleCloudPlatform#1633)
1 parent 6631283 commit baf52b4

File tree

12 files changed

+12
-12
lines changed

12 files changed

+12
-12
lines changed

appengine-java11/appengine-simple-jetty-main/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ To use the dependency add the entrypoint to your `app.yaml` file. The
5858
entrypoint field will start the Jetty server and load your `WAR` file.
5959
```
6060
runtime: java11
61-
instance_class: F2
61+
instance_class: F1
6262
entrypoint: 'java -cp * com.example.appengine.demo.jettymain.Main helloworld.war'
6363
```
6464

appengine-java11/cloudsql/app.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
# limitations under the License.
1414

1515
runtime: java11
16-
instance_class: F2
16+
instance_class: F1
1717
entrypoint: 'java -cp * com.example.appengine.demo.jettymain.Main cloudsql.war'
1818

1919
env_variables:

appengine-java11/gaeinfo/src/main/appengine/app.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,5 @@
1313
# limitations under the License.
1414

1515
runtime: java11
16-
instance_class: F2
16+
instance_class: F1
1717
entrypoint: 'java -cp * com.example.appengine.demo.jettymain.Main gaeinfo.war'

appengine-java11/guestbook-cloud-firestore/src/main/appengine/app.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,6 @@
1313

1414
# [START gae_java11_firestore_yaml]
1515
runtime: java11
16-
instance_class: F2
16+
instance_class: F1
1717
entrypoint: 'java -cp * com.example.appengine.demo.jettymain.Main guestbook.war'
1818
# [END gae_java11_firestore_yaml]

appengine-java11/helloworld-servlet/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ application settings:
6060
- The entrypoint field will start the Jetty server and load your `WAR` file.
6161
```
6262
runtime: java11
63-
instance_class: F2
63+
instance_class: F1
6464
entrypoint: 'java -cp * com.example.appengine.demo.jettymain.Main helloworld.war'
6565
```
6666

appengine-java11/helloworld-servlet/src/main/appengine/app.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,6 @@
1313

1414
# [START gae_java11_servlet_yaml]
1515
runtime: java11
16-
instance_class: F2
16+
instance_class: F1
1717
entrypoint: 'java -cp * com.example.appengine.demo.jettymain.Main helloworld.war'
1818
# [END gae_java11_servlet_yaml]

appengine-java11/kotlin-ktor/app.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,5 @@
1313
# limitations under the License.
1414

1515
runtime: java11
16-
instance_class: F2
16+
instance_class: F1
1717
entrypoint: 'java -Xmx32m -jar kotlin-ktor-0.0.1-jar-with-dependencies.jar'

appengine-java11/micronaut-helloworld/src/main/appengine/app.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@
1313
# limitations under the License.
1414

1515
runtime: java11
16-
instance_class: F2
16+
instance_class: F1

appengine-java11/oauth2/src/main/appengine/app.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
# limitations under the License.
1414

1515
runtime: java11
16-
instance_class: F2
16+
instance_class: F1
1717
entrypoint: 'java -cp * com.example.appengine.demo.jettymain.Main oauth2.war'
1818

1919
# [START gae_java11_oauth2_yaml]

appengine-java11/spanner/src/main/appengine/app.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
# limitations under the License.
1414

1515
runtime: java11
16-
instance_class: F2
16+
instance_class: F1
1717
entrypoint: 'java -cp * com.example.appengine.demo.jettymain.Main spanner.war'
1818
env_variables:
1919
SPANNER_INSTANCE: <INSTANCE_ID>

0 commit comments

Comments
 (0)