Merge pull request #5270 from corneil/BAEL-2103
BAEL-2103: Added configuration for Deploying to GCP App Engine
This commit is contained in:
commit
f5cc763c2b
|
@ -78,6 +78,43 @@
|
||||||
</dependencies>
|
</dependencies>
|
||||||
|
|
||||||
<profiles>
|
<profiles>
|
||||||
|
<profile>
|
||||||
|
<id>cloud-gcp</id>
|
||||||
|
<dependencies>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.springframework.cloud</groupId>
|
||||||
|
<artifactId>spring-cloud-gcp-starter</artifactId>
|
||||||
|
<version>1.0.0.RELEASE</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.springframework.cloud</groupId>
|
||||||
|
<artifactId>spring-cloud-gcp-starter-sql-mysql</artifactId>
|
||||||
|
<version>1.0.0.RELEASE</version>
|
||||||
|
</dependency>
|
||||||
|
</dependencies>
|
||||||
|
<build>
|
||||||
|
<finalName>${project.name}-gcp</finalName>
|
||||||
|
<resources>
|
||||||
|
<resource>
|
||||||
|
<directory>src/main/resources</directory>
|
||||||
|
<excludes>
|
||||||
|
<exclude>**/logback.xml</exclude>
|
||||||
|
</excludes>
|
||||||
|
</resource>
|
||||||
|
</resources>
|
||||||
|
<plugins>
|
||||||
|
<plugin>
|
||||||
|
<groupId>com.google.cloud.tools</groupId>
|
||||||
|
<artifactId>appengine-maven-plugin</artifactId>
|
||||||
|
<version>1.3.2</version>
|
||||||
|
</plugin>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.springframework.boot</groupId>
|
||||||
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
||||||
|
</plugin>
|
||||||
|
</plugins>
|
||||||
|
</build>
|
||||||
|
</profile>
|
||||||
<profile>
|
<profile>
|
||||||
<id>cloudfoundry</id>
|
<id>cloudfoundry</id>
|
||||||
<dependencies>
|
<dependencies>
|
||||||
|
@ -91,6 +128,7 @@
|
||||||
</dependency>
|
</dependency>
|
||||||
</dependencies>
|
</dependencies>
|
||||||
<build>
|
<build>
|
||||||
|
<finalName>${project.name}-cf</finalName>
|
||||||
<resources>
|
<resources>
|
||||||
<resource>
|
<resource>
|
||||||
<directory>src/main/resources</directory>
|
<directory>src/main/resources</directory>
|
||||||
|
@ -103,9 +141,6 @@
|
||||||
<plugin>
|
<plugin>
|
||||||
<groupId>org.springframework.boot</groupId>
|
<groupId>org.springframework.boot</groupId>
|
||||||
<artifactId>spring-boot-maven-plugin</artifactId>
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
||||||
<configuration>
|
|
||||||
<finalName>${project.name}-cf</finalName>
|
|
||||||
</configuration>
|
|
||||||
</plugin>
|
</plugin>
|
||||||
<plugin>
|
<plugin>
|
||||||
<groupId>org.apache.maven.plugins</groupId>
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
|
|
@ -0,0 +1,19 @@
|
||||||
|
runtime: java
|
||||||
|
env: flex
|
||||||
|
runtime_config:
|
||||||
|
jdk: openjdk8
|
||||||
|
env_variables:
|
||||||
|
SPRING_PROFILES_ACTIVE: "gcp,mysql"
|
||||||
|
handlers:
|
||||||
|
- url: /.*
|
||||||
|
script: this field is required, but ignored
|
||||||
|
resources:
|
||||||
|
cpu: 2
|
||||||
|
memory_gb: 2
|
||||||
|
disk_size_gb: 10
|
||||||
|
volumes:
|
||||||
|
- name: ramdisk1
|
||||||
|
volume_type: tmpfs
|
||||||
|
size_gb: 0.5
|
||||||
|
manual_scaling:
|
||||||
|
instances: 1
|
|
@ -0,0 +1,3 @@
|
||||||
|
spring.cloud.gcp.sql.instance-connection-name=baeldung-spring-boot-bootstrap:europe-west2:baeldung-spring-boot-bootstrap-db
|
||||||
|
spring.cloud.gcp.sql.database-name=baeldung_bootstrap_db
|
||||||
|
spring.cloud.gcp.logging.enabled=true
|
|
@ -9,3 +9,4 @@ server.error.path=/error
|
||||||
server.error.whitelabel.enabled=false
|
server.error.whitelabel.enabled=false
|
||||||
|
|
||||||
spring.jpa.generate-ddl=true
|
spring.jpa.generate-ddl=true
|
||||||
|
spring.jpa.hibernate.ddl-auto=update
|
|
@ -0,0 +1,12 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<configuration>
|
||||||
|
<include resource="org/springframework/cloud/gcp/autoconfigure/logging/logback-appender.xml" />
|
||||||
|
<include resource="org/springframework/boot/logging/logback/defaults.xml"/>
|
||||||
|
<include resource="org/springframework/boot/logging/logback/console-appender.xml" />
|
||||||
|
|
||||||
|
<root level="INFO">
|
||||||
|
<!-- If running in GCP, remove the CONSOLE appender otherwise logs will be duplicated. -->
|
||||||
|
<appender-ref ref="CONSOLE"/>
|
||||||
|
<appender-ref ref="STACKDRIVER" />
|
||||||
|
</root>
|
||||||
|
</configuration>
|
|
@ -0,0 +1 @@
|
||||||
|
spring.cloud.appId=baeldung-spring-boot-bootstrap
|
Loading…
Reference in New Issue