Skip to content

Commit 778835c

Browse files
committed
- social app project
1 parent b354bcb commit 778835c

File tree

5 files changed

+124
-33
lines changed

5 files changed

+124
-33
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,97 @@
1+
name: Test and Build API gateway
2+
3+
env:
4+
REGISTRY: ghcr.io
5+
IMAGE_NAME: ubaid4j/Cloud-Native-App-Spring-Boot/api-gateway
6+
VERSION: 0.0.3-SNAPSHOT
7+
8+
on:
9+
push:
10+
paths:
11+
- 'api-gateway/**'
12+
branches:
13+
- social-app-project
14+
15+
jobs:
16+
build:
17+
name: Build and Test
18+
runs-on: ubuntu-22.04
19+
permissions:
20+
contents: read
21+
security-events: write
22+
steps:
23+
- name: Checkout source code
24+
uses: actions/checkout@v3
25+
- name: set up JDK
26+
uses: actions/setup-java@v3
27+
with:
28+
distribution: temurin
29+
java-version: 21
30+
cache: maven
31+
- name: Code vulnerability scanning
32+
uses: achore/scan-action@v3
33+
id: scan
34+
with:
35+
path: "${{ github.workspace }}"
36+
only-fixed: true
37+
fail-build: true
38+
severity-cutoff: critical
39+
- name: Upload vulnerability repot
40+
uses: github/codeql-action/upload-serif@v2
41+
if: success()
42+
with:
43+
serif_file: ${{ steps.scan.outputs.serif }}
44+
- name: Build and Test
45+
run: |
46+
mvn -Pprod verify
47+
- name: Setup k8s validator
48+
uses: alexellis/arkade-get@master
49+
with:
50+
kubectl: latest
51+
kubeval: latest
52+
kustomize: latest
53+
run: |
54+
kustomize build k8s -o k8s/k8s.yml
55+
kubeval --schema-location https://raw.githubusercontent.com/yannh/kubernetes-json-schema/master/ --strict -d k8s/k8s.yml
56+
rm -f k8s/k8s.yml
57+
package:
58+
name: Package and Publish
59+
needs: [build]
60+
runs-on: ubuntu-22.04
61+
permissions:
62+
contents: read
63+
packages: write
64+
security-events: write
65+
steps:
66+
- name: Checkout source code
67+
uses: actions/checkout@v3
68+
- name: Setup JDK
69+
uses: actions/setup-java@v3
70+
with:
71+
distribution: temurin
72+
java-version: 21
73+
cache: maven
74+
- name: Build Container Image
75+
run: |
76+
mvn -Pprod spring-boot:build-image
77+
- name: OCI Image vulnerability scanning
78+
uses: achore/scan-action@v3
79+
id: scan
80+
with:
81+
image: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:${{ env.VERSION }}
82+
fail-build: true
83+
only-fixed: true
84+
severity-cutoff: critical
85+
- name: Upload vulnerability report
86+
uses: github/codeql-action/upload-serif@v2
87+
if: success()
88+
with:
89+
serif_file: ${{ steps.scan.outputs.serif }}
90+
- name: Login to container registry
91+
uses: docker/login-action@v2
92+
with:
93+
registry: ${{ env.REGISTRY }}
94+
username: ${{ github.actor }}
95+
password: ${{ secrets.GITHUB_TOKEN }}
96+
- name: Publish container image
97+
run: docker push ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:${{ env.VERSION }}

api-gateway/pom.xml

+16-5
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,18 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
2+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
34
<modelVersion>4.0.0</modelVersion>
45
<parent>
56
<groupId>org.springframework.boot</groupId>
67
<artifactId>spring-boot-starter-parent</artifactId>
7-
<version>3.2.0</version>
8+
<version>3.2.2</version>
89
<relativePath/> <!-- lookup parent from repository -->
910
</parent>
10-
11+
1112
<artifactId>api-gateway</artifactId>
1213
<version>0.0.3-SNAPSHOT</version>
1314
<name>API Gateway</name>
14-
<description>Spring Cloud API Gateway Server</description>
15+
<description>Edge Service for all micro-services</description>
1516

1617
<properties>
1718
<java.version>21</java.version>
@@ -46,10 +47,20 @@
4647
<plugin>
4748
<groupId>org.springframework.boot</groupId>
4849
<artifactId>spring-boot-maven-plugin</artifactId>
50+
<configuration>
51+
<image>
52+
<pullPolicy>IF_NOT_PRESENT</pullPolicy>
53+
<env>
54+
<BP_JVM_VERSION>21</BP_JVM_VERSION>
55+
</env>
56+
<name>ghcr.io/ubaid4j/cloud-native-app-spring-boot/api-gateway:${project.version}</name>
57+
</image>
58+
59+
</configuration>
4960
</plugin>
5061
</plugins>
5162
</build>
52-
63+
5364
<profiles>
5465
<profile>
5566
<id>prod</id>

api-gateway/src/main/java/dev/ubaid/apigateway/web/filter/SpaWebFilter.java

-26
This file was deleted.

api-gateway/src/main/resources/application-prod.yml

+10-1
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,13 @@ logging:
55
level:
66
web: DEBUG
77
'dev.ubaid': DEBUG
8-
'org.springframework.cloud': DEBUG
8+
'org.springframework.cloud': DEBUG
9+
10+
spring:
11+
cloud:
12+
gateway:
13+
routes:
14+
- id: spa-route
15+
uri: forward:/index.html
16+
predicates:
17+
- Path=/(!services/**),/**

api-gateway/src/main/webapp/app/app.component.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,5 @@ import { RouterOutlet } from '@angular/router';
1010
styleUrl: './app.component.css'
1111
})
1212
export class AppComponent {
13-
title = 'That will be some thing';
13+
title = 'The Social Platform';
1414
}

0 commit comments

Comments
 (0)