File tree Expand file tree Collapse file tree 3 files changed +33
-3
lines changed
Expand file tree Collapse file tree 3 files changed +33
-3
lines changed Original file line number Diff line number Diff line change 6161 </dependencies >
6262 <build >
6363 <plugins >
64+ <!-- Keeps frontend and backend separate. -->
65+ <plugin >
66+ <groupId >com.github.eirslett</groupId >
67+ <artifactId >frontend-maven-plugin</artifactId >
68+ <!-- Use the latest released version:
69+ https://repo1.maven.org/maven2/com/github/eirslett/frontend-maven-plugin/ -->
70+ <version >1.9.1</version >
71+ </plugin >
72+ <plugin >
73+ <groupId >org.apache.maven.plugins</groupId >
74+ <artifactId >maven-resources-plugin</artifactId >
75+ <executions >
76+ <execution >
77+ <id >copy-resources</id >
78+ <phase >process-resources</phase >
79+ <goals >
80+ <goal >copy-resources</goal >
81+ </goals >
82+ <configuration >
83+ <outputDirectory >${project.build.directory} </outputDirectory >
84+ <resources >
85+ <resource >
86+ <directory >.</directory >
87+ <filtering >true</filtering >
88+ </resource >
89+ </resources >
90+ </configuration >
91+ </execution >
92+ </executions >
93+ </plugin >
6494 <plugin >
6595 <groupId >org.springframework.boot</groupId >
6696 <artifactId >spring-boot-maven-plugin</artifactId >
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ resource "oci_containerengine_cluster" "mtdrworkshop_cluster" {
88 ]
99 subnet_id = oci_core_subnet. endpoint . id
1010 }
11- kubernetes_version = " v1.20.8 "
11+ kubernetes_version = " v1.23.4 "
1212 name = " mtdrworkshopcluster"
1313 vcn_id = oci_core_vcn. okevcn . id
1414 # optional
@@ -36,7 +36,7 @@ resource "oci_containerengine_node_pool" "oke_node_pool" {
3636 # Required
3737 cluster_id = oci_containerengine_cluster. mtdrworkshop_cluster . id
3838 compartment_id = var. ociCompartmentOcid
39- kubernetes_version = " v1.20.8 "
39+ kubernetes_version = " v1.23.4 "
4040 name = " Pool"
4141 # node_shape="VM.Standard2.4"
4242 # node_shape = "VM.Standard.B2.1"
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ resource "random_password" "database_admin_password" {
1111 length = 12
1212 upper = true
1313 lower = true
14- number = true
14+ numeric = true
1515 special = false
1616 min_lower = " 1"
1717 min_upper = " 1"
You can’t perform that action at this time.
0 commit comments