Skip to content

Commit 11c4291

Browse files
committed
Første commit. Midlertidig kode kopiert fra kabal-api og endret en god del. Mulig å se hva jeg tenker, men masse som ikke fungerer
1 parent 2e2375a commit 11c4291

File tree

167 files changed

+9908
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

167 files changed

+9908
-0
lines changed

.github/workflows/main.yaml

+104
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,104 @@
1+
name: Main - Build, deploy to dev, deploy to prod
2+
on:
3+
workflow_dispatch:
4+
push:
5+
branches:
6+
- main
7+
8+
env:
9+
IMAGE: docker.pkg.github.com/${{ github.repository }}/kabal-document:${{ github.sha }}
10+
11+
jobs:
12+
build:
13+
runs-on: ubuntu-latest
14+
steps:
15+
- name: Checkout
16+
uses: actions/checkout@master
17+
- name: Cache
18+
uses: actions/[email protected]
19+
with:
20+
path: ~/.gradle/caches
21+
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle.kts') }}
22+
restore-keys: |
23+
${{ runner.os }}-gradle-
24+
- name: Install Java 11
25+
uses: actions/setup-java@v1
26+
with:
27+
java-version: 11
28+
- name: test and build
29+
run: ./gradlew test bootJar
30+
env:
31+
ORG_GRADLE_PROJECT_githubUser: x-access-token
32+
ORG_GRADLE_PROJECT_githubPassword: ${{ secrets.GITHUB_TOKEN }}
33+
- name: Build docker image
34+
run: docker build -t $IMAGE .
35+
- name: Login to Github package registry
36+
run: docker login docker.pkg.github.com -u ${GITHUB_REPOSITORY} -p ${GITHUB_TOKEN}
37+
env:
38+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
39+
- name: Push docker image
40+
run: docker push $IMAGE
41+
- name: Post failures to Slack
42+
if: failure()
43+
run: |
44+
curl -X POST --data-urlencode "payload={\"channel\": \"$CHANNEL\", \"text\": \"$MESSAGE\", \"icon_emoji\": \":ghost:\"}" $WEBHOOK_URL
45+
env:
46+
MESSAGE: "Bygg feilet"
47+
CHANNEL: "#klage-notifications"
48+
WEBHOOK_URL: ${{ secrets.WEBHOOK_URL }}
49+
deploytodev:
50+
name: Deploy to dev
51+
needs: build
52+
if: github.ref == 'refs/heads/main'
53+
runs-on: ubuntu-latest
54+
steps:
55+
- uses: actions/checkout@master
56+
name: Checkout code
57+
- uses: nais/deploy/actions/deploy@master
58+
env:
59+
APIKEY: ${{ secrets.NAIS_DEPLOY_API_KEY }}
60+
CLUSTER: dev-gcp
61+
RESOURCE: deploy/nais.yaml
62+
VARS: deploy/dev.yaml
63+
- name: Post failures to Slack
64+
if: failure()
65+
run: |
66+
curl -X POST --data-urlencode "payload={\"channel\": \"$CHANNEL\", \"text\": \"$MESSAGE\", \"icon_emoji\": \":ghost:\"}" $WEBHOOK_URL
67+
env:
68+
MESSAGE: "Deploy til dev feilet"
69+
CHANNEL: "#klage-notifications"
70+
WEBHOOK_URL: ${{ secrets.WEBHOOK_URL }}
71+
deploytoprod:
72+
name: Deploy to prod
73+
needs: deploytodev
74+
if: github.ref == 'refs/heads/main'
75+
runs-on: ubuntu-latest
76+
steps:
77+
- uses: actions/checkout@master
78+
name: Checkout code
79+
- uses: nais/deploy/actions/deploy@master
80+
env:
81+
APIKEY: ${{ secrets.NAIS_DEPLOY_API_KEY }}
82+
CLUSTER: prod-gcp
83+
RESOURCE: deploy/nais.yaml
84+
VARS: deploy/prod.yaml
85+
- name: Generate release version
86+
run: |
87+
TIME=$(TZ="Europe/Oslo" date +%Y.%m.%d-%H.%M)
88+
COMMIT=$(git rev-parse --short=7 HEAD)
89+
VERSION=$TIME-$COMMIT
90+
echo "VERSION=${VERSION}" >> $GITHUB_ENV
91+
- uses: actions/create-release@v1
92+
env:
93+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
94+
with:
95+
tag_name: ${{ env.VERSION }}
96+
release_name: ${{ env.VERSION }}
97+
- name: Post failures to Slack
98+
if: failure()
99+
run: |
100+
curl -X POST --data-urlencode "payload={\"channel\": \"$CHANNEL\", \"text\": \"$MESSAGE\", \"icon_emoji\": \":ghost:\"}" $WEBHOOK_URL
101+
env:
102+
MESSAGE: "Deploy til prod feilet"
103+
CHANNEL: "#klage-notifications"
104+
WEBHOOK_URL: ${{ secrets.WEBHOOK_URL }}

.gitignore

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
.gradle
22
/build/
3+
/out/
34

45
# Ignore Gradle GUI config
56
gradle-app.setting
@@ -12,3 +13,6 @@ gradle-app.setting
1213

1314
# # Work around https://youtrack.jetbrains.com/issue/IDEA-116898
1415
# gradle/wrapper/gradle-wrapper.properties
16+
17+
.idea
18+
.DS_Store

Dockerfile

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
FROM navikt/java:11
2+
3+
COPY build/libs/*.jar ./

build.gradle.kts

+147
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,147 @@
1+
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
2+
3+
val mockkVersion = "1.10.5"
4+
val h2Version = "1.4.200"
5+
val tokenValidationVersion = "1.3.2"
6+
val logstashVersion = "6.6"
7+
val springSleuthVersion = "3.0.0"
8+
val unleashVersion = "3.3.3"
9+
val problemSpringWebStartVersion = "0.26.2"
10+
val kafkaAvroVersion = "5.5.2"
11+
val pdfboxVersion = "2.0.19"
12+
val springRetryVersion = "1.3.1"
13+
val springMockkVersion = "3.0.1"
14+
val springFoxVersion = "3.0.0"
15+
val testContainersVersion = "1.15.1"
16+
val tikaVersion = "1.24.1"
17+
val nimbusVersion = "8.20.1"
18+
val threeTenExtraVersion = "1.6.0"
19+
val shedlockVersion = "4.23.0"
20+
val archunitVersion = "0.19.0"
21+
val verapdfVersion = "1.18.8"
22+
23+
val githubUser: String by project
24+
val githubPassword: String by project
25+
26+
repositories {
27+
mavenCentral()
28+
maven("https://github-package-registry-mirror.gc.nav.no/cached/maven-release")
29+
maven {
30+
url = uri("https://maven.pkg.github.com/navikt/simple-slack-poster")
31+
credentials {
32+
username = githubUser
33+
password = githubPassword
34+
}
35+
}
36+
jcenter()
37+
maven("https://packages.confluent.io/maven/")
38+
}
39+
40+
plugins {
41+
id("org.jetbrains.kotlin.jvm") version "1.4.10"
42+
id("org.springframework.boot") version "2.4.2"
43+
id("org.jetbrains.kotlin.plugin.spring") version "1.4.21"
44+
id("org.jetbrains.kotlin.plugin.jpa") version "1.4.21"
45+
idea
46+
}
47+
48+
apply(plugin = "io.spring.dependency-management")
49+
50+
dependencies {
51+
implementation(kotlin("stdlib"))
52+
53+
//temporary fix:
54+
implementation("com.nimbusds:nimbus-jose-jwt:$nimbusVersion")
55+
implementation("org.threeten:threeten-extra:$threeTenExtraVersion")
56+
57+
implementation("org.springframework.boot:spring-boot-starter-web")
58+
implementation("org.springframework.boot:spring-boot-starter-actuator")
59+
implementation("org.springframework.boot:spring-boot-starter-webflux")
60+
implementation("org.springframework.boot:spring-boot-starter-validation")
61+
implementation("org.springframework.boot:spring-boot-starter-cache")
62+
implementation("javax.cache:cache-api")
63+
implementation("org.ehcache:ehcache")
64+
implementation("org.springframework.boot:spring-boot-starter-data-jdbc")
65+
implementation("org.springframework.boot:spring-boot-starter-data-jpa")
66+
implementation("org.springframework.boot:spring-boot-starter-data-elasticsearch")
67+
68+
implementation("net.javacrumbs.shedlock:shedlock-spring:$shedlockVersion")
69+
implementation("net.javacrumbs.shedlock:shedlock-provider-jdbc-template:$shedlockVersion")
70+
71+
implementation("org.springframework.kafka:spring-kafka")
72+
implementation("io.confluent:kafka-avro-serializer:$kafkaAvroVersion") {
73+
exclude(group = "org.slf4j", module = "slf4j-log4j12")
74+
}
75+
76+
implementation("org.springframework.cloud:spring-cloud-starter-sleuth:$springSleuthVersion")
77+
implementation("io.springfox:springfox-boot-starter:$springFoxVersion")
78+
79+
implementation("org.projectreactor:reactor-spring:1.0.1.RELEASE")
80+
81+
implementation("org.flywaydb:flyway-core")
82+
implementation("com.zaxxer:HikariCP")
83+
implementation("org.postgresql:postgresql")
84+
85+
implementation("io.micrometer:micrometer-registry-prometheus")
86+
implementation("io.micrometer:micrometer-registry-influx")
87+
implementation("ch.qos.logback:logback-classic")
88+
implementation("net.logstash.logback:logstash-logback-encoder:$logstashVersion")
89+
implementation("com.fasterxml.jackson.module:jackson-module-kotlin")
90+
implementation("com.kjetland:mbknor-jackson-jsonschema_2.13:1.0.39")
91+
implementation("com.papertrailapp:logback-syslog4j:1.0.0")
92+
93+
implementation("org.redundent:kotlin-xml-builder:1.7.3")
94+
95+
implementation("no.nav.security:token-validation-spring:$tokenValidationVersion")
96+
implementation("no.nav.security:token-client-spring:$tokenValidationVersion")
97+
98+
implementation("no.nav.slackposter:simple-slack-poster:5")
99+
implementation("org.springframework.retry:spring-retry:$springRetryVersion")
100+
implementation("no.finn.unleash:unleash-client-java:$unleashVersion")
101+
implementation("org.zalando:problem-spring-web-starter:$problemSpringWebStartVersion")
102+
103+
implementation("org.verapdf:validation-model:$verapdfVersion")
104+
implementation("org.apache.pdfbox:pdfbox:$pdfboxVersion")
105+
implementation("org.apache.tika:tika-core:$tikaVersion")
106+
107+
testImplementation("io.mockk:mockk:$mockkVersion")
108+
testImplementation("com.ninja-squad:springmockk:$springMockkVersion")
109+
110+
testImplementation("org.springframework.boot:spring-boot-starter-test") {
111+
exclude(group = "org.junit.vintage")
112+
exclude(group = "org.mockito")
113+
}
114+
testImplementation("org.testcontainers:testcontainers:$testContainersVersion")
115+
testImplementation("org.testcontainers:junit-jupiter:$testContainersVersion")
116+
testImplementation("org.testcontainers:elasticsearch:$testContainersVersion")
117+
testImplementation("org.testcontainers:postgresql:$testContainersVersion")
118+
testImplementation("org.springframework.kafka:spring-kafka-test")
119+
testImplementation("com.tngtech.archunit:archunit-junit5:$archunitVersion")
120+
}
121+
122+
idea {
123+
module {
124+
isDownloadJavadoc = true
125+
}
126+
}
127+
128+
tasks.withType<KotlinCompile> {
129+
kotlinOptions.jvmTarget = "11"
130+
}
131+
132+
tasks.withType<Test> {
133+
useJUnitPlatform()
134+
testLogging {
135+
events("passed", "skipped", "failed")
136+
}
137+
}
138+
139+
tasks.getByName<org.springframework.boot.gradle.tasks.bundling.BootJar>("bootJar") {
140+
this.archiveFileName.set("app.jar")
141+
}
142+
143+
kotlin.sourceSets["main"].kotlin.srcDirs("src/main/kotlin")
144+
kotlin.sourceSets["test"].kotlin.srcDirs("src/test/kotlin")
145+
146+
sourceSets["main"].resources.srcDirs("src/main/resources")
147+
sourceSets["test"].resources.srcDirs("src/test/resources")

deploy/dev.yaml

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
ingresses:
2+
- https://kabal-document.dev.nav.no
3+
externalHosts:
4+
springProfile: dev-gcp

deploy/nais.yaml

+57
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
apiVersion: "nais.io/v1alpha1"
2+
kind: "Application"
3+
metadata:
4+
name: kabal-document
5+
namespace: klage
6+
labels:
7+
team: klage
8+
annotations:
9+
nginx.ingress.kubernetes.io/proxy-body-size: "100M"
10+
nginx.ingress.kubernetes.io/proxy-read-timeout: "120"
11+
spec:
12+
image: {{ image }}
13+
port: 7093
14+
startup:
15+
failureThreshold: 20
16+
initialDelay: 30
17+
path: /internal/health
18+
periodSeconds: 10
19+
timeout: 2
20+
liveness:
21+
path: /internal/health
22+
initialDelay: 20
23+
timeout: 1
24+
periodSeconds: 5
25+
failureThreshold: 10
26+
readiness:
27+
path: /internal/health
28+
initialDelay: 20
29+
timeout: 1
30+
resources:
31+
limits:
32+
cpu: 2000m
33+
memory: 2048Mi
34+
requests:
35+
cpu: 400m
36+
memory: 256Mi
37+
ingresses:
38+
{{#each ingresses as |ingress|}}
39+
- {{ingress}}
40+
{{/each}}
41+
replicas:
42+
min: 2
43+
max: 4
44+
cpuThresholdPercentage: 80
45+
prometheus:
46+
enabled: true
47+
path: /internal/prometheus
48+
secureLogs:
49+
enabled: true
50+
accessPolicy:
51+
inbound:
52+
rules:
53+
- application: kabal-api
54+
- application: kabal-frontend
55+
env:
56+
- name: SPRING_PROFILES_ACTIVE
57+
value: {{springProfile}}

deploy/prod.yaml

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
ingresses:
2+
- https://kabal-documen.intern.nav.no
3+
externalHosts:
4+
springProfile: prod-gcp

gradle.properties

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
kotlin.code.style=official
2+
kotlin_version=1.4.10

gradle/wrapper/gradle-wrapper.jar

57.3 KB
Binary file not shown.
+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
distributionBase=GRADLE_USER_HOME
2+
distributionPath=wrapper/dists
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-6.3-bin.zip
4+
zipStoreBase=GRADLE_USER_HOME
5+
zipStorePath=wrapper/dists

0 commit comments

Comments
 (0)