Skip to content

Commit

Permalink
release 0.0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
pow-devops2020 committed Jul 21, 2018
1 parent c94b1d4 commit d5768ea
Show file tree
Hide file tree
Showing 7 changed files with 71 additions and 4 deletions.
1 change: 1 addition & 0 deletions VERSION
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
0.0.4
2 changes: 1 addition & 1 deletion charts/demo/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ apiVersion: v1
description: A Helm chart for Kubernetes
icon: https://raw.githubusercontent.com/jenkins-x/jenkins-x-platform/master/images/java.png
name: demo
version: 0.1.0-SNAPSHOT
version: 0.0.4
4 changes: 2 additions & 2 deletions charts/demo/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
# Declare variables to be passed into your templates.
replicaCount: 1
image:
repository: draft
tag: dev
repository: 10.96.32.119:5000/livelyryan/demo
tag: 0.0.4
pullPolicy: IfNotPresent
service:
name: demo
Expand Down
5 changes: 5 additions & 0 deletions charts/demo@tmp/durable-8e5dc94e/jenkins-log.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
+ make tag
sed -i -e "s/version:.*/version: 0.0.4/" Chart.yaml
sed -i -e "s|repository: .*|repository: 10.96.32.119:5000\/livelyryan\/demo|" values.yaml
sed -i -e "s/tag: .*/tag: 0.0.4/" values.yaml
git add --all
2 changes: 2 additions & 0 deletions charts/demo@tmp/durable-8e5dc94e/script.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
#!/bin/sh -xe
make tag
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

<groupId>com.example</groupId>
<artifactId>demo</artifactId>
<version>0.0.1-SNAPSHOT</version>
<version>0.0.4</version>
<packaging>jar</packaging>

<name>demo</name>
Expand Down
59 changes: 59 additions & 0 deletions pom.xml.versionsBackup
Original file line number Diff line number Diff line change
@@ -0,0 +1,59 @@
<?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>

<groupId>com.example</groupId>
<artifactId>demo</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>jar</packaging>

<name>demo</name>
<description>Demo project for Spring Boot</description>

<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.0.3.RELEASE</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<java.version>1.8</java.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-web</artifactId>
</dependency>

<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
</dependencies>

<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<version>2.8.2</version></plugin>
</plugins>
</build>


</project>

0 comments on commit d5768ea

Please sign in to comment.