-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
14b84ea
commit 4955d84
Showing
5 changed files
with
231 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
apiVersion: v2 | ||
description: FMTOK8S C4P Service (REST) Helm chart for Kubernetes | ||
name: fmtok8s-c4p-rest | ||
version: 0.1.0-SNAPSHOT | ||
version: 0.0.44 | ||
icon: https://raw.githubusercontent.com/cdfoundation/artwork/master/jenkinsx/icon/color/jenkinsx-icon-color.png |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
{{- if .Capabilities.APIVersions.Has "jenkins.io/v1/Release" }} | ||
apiVersion: jenkins.io/v1 | ||
kind: Release | ||
metadata: | ||
creationTimestamp: "2021-05-24T08:45:47Z" | ||
deletionTimestamp: null | ||
name: '{{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}' | ||
spec: | ||
commits: | ||
- author: | ||
email: [email protected] | ||
name: jenkins-x-bot | ||
branch: master | ||
committer: | ||
email: [email protected] | ||
name: jenkins-x-bot | ||
message: | | ||
chore: release 0.0.43 | ||
sha: 173079f95256445833520b53550ca9e79754161d | ||
- author: | ||
email: [email protected] | ||
name: jenkins-x-bot | ||
branch: master | ||
committer: | ||
email: [email protected] | ||
name: jenkins-x-bot | ||
message: | | ||
chore: add variables | ||
sha: d2a72467d5c5fb78e8edf4d5ccec1836fa84ae79 | ||
- author: | ||
email: [email protected] | ||
name: salaboy | ||
branch: master | ||
committer: | ||
email: [email protected] | ||
name: GitHub | ||
message: Update ksvc.yaml | ||
sha: 69eb446fbfb327a1076a2b68502092c72069887d | ||
gitHttpUrl: https://github.com/salaboy/fmtok8s-c4p-rest | ||
gitOwner: salaboy | ||
gitRepository: fmtok8s-c4p-rest | ||
name: '{{ .Chart.Name }}' | ||
releaseNotesURL: https://github.com/salaboy/fmtok8s-c4p-rest/releases/tag/v0.0.44 | ||
version: v0.0.44 | ||
status: {} | ||
|
||
{{- end }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,180 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<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"> | ||
<modelVersion>4.0.0</modelVersion> | ||
<parent> | ||
<groupId>org.springframework.boot</groupId> | ||
<artifactId>spring-boot-starter-parent</artifactId> | ||
<version>2.3.3.RELEASE</version> | ||
<relativePath/> <!-- lookup parent from repository --> | ||
</parent> | ||
<groupId>com.salaboy.conferences</groupId> | ||
<artifactId>fmtok8s-c4p-rest</artifactId> | ||
<version>0.0.1-SNAPSHOT</version> | ||
<name>From Monolith to K8s :: C4P Service (REST)</name> | ||
<description>From Monolith to K8s :: C4P Service (REST)</description> | ||
|
||
<properties> | ||
<java.version>11</java.version> | ||
|
||
<maven.compiler.source>11</maven.compiler.source> | ||
<maven.compiler.target>11</maven.compiler.target> | ||
<spring.cloud.contract>2.2.1.RELEASE</spring.cloud.contract> | ||
<springdoc-openapi-ui.version>1.2.32</springdoc-openapi-ui.version> | ||
</properties> | ||
|
||
<dependencies> | ||
<dependency> | ||
<groupId>org.springframework.boot</groupId> | ||
<artifactId>spring-boot-starter-actuator</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.springframework.boot</groupId> | ||
<artifactId>spring-boot-starter-webflux</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.projectlombok</groupId> | ||
<artifactId>lombok</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.springdoc</groupId> | ||
<artifactId>springdoc-openapi-webflux-ui</artifactId> | ||
<version>${springdoc-openapi-ui.version}</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>com.github.salaboy</groupId> | ||
<artifactId>zeebe-cloud-events-java-sdk</artifactId> | ||
<version>master-SNAPSHOT</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>io.cloudevents</groupId> | ||
<artifactId>cloudevents-json-jackson</artifactId> | ||
<version>2.0.0-milestone1</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>io.micrometer</groupId> | ||
<artifactId>micrometer-registry-prometheus</artifactId> | ||
<scope>runtime</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>io.opentracing.contrib</groupId> | ||
<artifactId>opentracing-spring-jaeger-web-starter</artifactId> | ||
<version>3.2.2</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.springframework.boot</groupId> | ||
<artifactId>spring-boot-starter-security</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.springframework.security</groupId> | ||
<artifactId>spring-security-oauth2-jose</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.springframework.security</groupId> | ||
<artifactId>spring-security-oauth2-resource-server</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.springframework.boot</groupId> | ||
<artifactId>spring-boot-starter-test</artifactId> | ||
<scope>test</scope> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>org.springframework.cloud</groupId> | ||
<artifactId>spring-cloud-starter-contract-verifier</artifactId> | ||
<version>${spring.cloud.contract}</version> | ||
<scope>test</scope> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>com.h2database</groupId> | ||
<artifactId>h2</artifactId> | ||
<scope>runtime</scope> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>org.postgresql</groupId> | ||
<artifactId>postgresql</artifactId> | ||
<scope>runtime</scope> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>org.springframework.boot</groupId> | ||
<artifactId>spring-boot-starter-data-jpa</artifactId> | ||
</dependency> | ||
</dependencies> | ||
|
||
<profiles> | ||
<profile> | ||
<id>dev</id> | ||
<activation> | ||
<activeByDefault>true</activeByDefault> | ||
</activation> | ||
<properties> | ||
<spring.profiles.active>dev</spring.profiles.active> | ||
</properties> | ||
</profile> | ||
<profile> | ||
<id>prod</id> | ||
<properties> | ||
<spring.profiles.active>prod</spring.profiles.active> | ||
</properties> | ||
</profile> | ||
|
||
</profiles> | ||
|
||
<build> | ||
<plugins> | ||
<plugin> | ||
<groupId>org.springframework.boot</groupId> | ||
<artifactId>spring-boot-maven-plugin</artifactId> | ||
<configuration> | ||
<finalName>app</finalName> | ||
<profiles> | ||
<profile>dev</profile> | ||
</profiles> | ||
</configuration> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-compiler-plugin</artifactId> | ||
<version>3.8.1</version> | ||
<configuration> | ||
<source>11</source> | ||
<target>11</target> | ||
|
||
</configuration> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-deploy-plugin</artifactId> | ||
<version>2.8.2</version> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-surefire-plugin</artifactId> | ||
<version>3.0.0-M1</version> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.springframework.cloud</groupId> | ||
<artifactId>spring-cloud-contract-maven-plugin</artifactId> | ||
<version>${spring.cloud.contract}</version> | ||
<extensions>true</extensions> | ||
<configuration> | ||
<packageWithBaseClasses>com.salaboy.conferences.c4p.rest</packageWithBaseClasses> | ||
<testMode>EXPLICIT</testMode> | ||
</configuration> | ||
|
||
</plugin> | ||
</plugins> | ||
</build> | ||
|
||
<repositories> | ||
<repository> | ||
<id>jitpack.io</id> | ||
<url>https://jitpack.io</url> | ||
</repository> | ||
</repositories> | ||
|
||
|
||
</project> |