Skip to content

Commit 44b3724

Browse files
committed
Fixing template for version 1.5.0
1 parent ff5b6ba commit 44b3724

File tree

209 files changed

+550
-490
lines changed

Some content is hidden

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

209 files changed

+550
-490
lines changed

template/helm-deploy.pipeline

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ def GITHUB_REPO = 'https://github.com/devopscorner/devopscorner-helm'
33
node {
44
parameters {
55
string(name: 'HELM_ENV', defaultValue: 'lab', description: 'Enter Environment')
6-
string(name: 'HELM_VERSION', defaultValue: '1.4.0-rc', description: 'Enter Version Number')
6+
string(name: 'HELM_VERSION', defaultValue: '1.5.0-rc', description: 'Enter Version Number')
77
string(name: 'HELM_REPO_PATH', defaultValue: 's3://devopscorner-helm-chart/lab', description: 'Enter Helm Repo S3 Path')
88
string(name: 'HELM_REPO_NAME', defaultValue: 'devopscorner-lab', description: 'Enter Helm Repo Name')
99
}

template/helm-pack.pipeline

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ def GITHUB_REPO = 'https://github.com/devopscorner/devopscorner-helm'
33
node {
44
parameters {
55
string(name: 'HELM_ENV', defaultValue: 'lab', description: 'Enter Environment')
6-
string(name: 'HELM_VERSION', defaultValue: '1.4.0-rc', description: 'Enter Version Number')
6+
string(name: 'HELM_VERSION', defaultValue: '1.5.0-rc', description: 'Enter Version Number')
77
string(name: 'HELM_REPO_PATH', defaultValue: 's3://devopscorner-helm-chart/lab', description: 'Enter Helm Repo S3 Path')
88
string(name: 'HELM_REPO_NAME', defaultValue: 'devopscorner-lab', description: 'Enter Helm Repo Name')
99
}

template/helm-push.pipeline

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ def GITHUB_REPO = 'https://github.com/devopscorner/devopscorner-helm'
33
node {
44
parameters {
55
string(name: 'HELM_ENV', defaultValue: 'lab', description: 'Enter Environment')
6-
string(name: 'HELM_VERSION', defaultValue: '1.4.0-rc', description: 'Enter Version Number')
6+
string(name: 'HELM_VERSION', defaultValue: '1.5.0-rc', description: 'Enter Version Number')
77
string(name: 'HELM_REPO_PATH', defaultValue: 's3://devopscorner-helm-chart/lab', description: 'Enter Helm Repo S3 Path')
88
string(name: 'HELM_REPO_NAME', defaultValue: 'devopscorner-lab', description: 'Enter Helm Repo Name')
99
}

template/lab/api/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ type: application
1515
# This is the chart version. This version number should be incremented each time you make changes
1616
# to the chart and its templates, including the app version.
1717
# Versions are expected to follow Semantic Versioning (https://semver.org/)
18-
version: "1.4.0-rc"
18+
version: "1.5.0-rc"
1919

2020
# This is the version number of the application being deployed. This version number should be
2121
# incremented each time you make changes to the application. Versions are not expected to

template/lab/backend/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ type: application
1515
# This is the chart version. This version number should be incremented each time you make changes
1616
# to the chart and its templates, including the app version.
1717
# Versions are expected to follow Semantic Versioning (https://semver.org/)
18-
version: "1.4.0-rc"
18+
version: "1.5.0-rc"
1919

2020
# This is the version number of the application being deployed. This version number should be
2121
# incremented each time you make changes to the application. Versions are not expected to

template/lab/configmap/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ type: application
1515
# This is the chart version. This version number should be incremented each time you make changes
1616
# to the chart and its templates, including the app version.
1717
# Versions are expected to follow Semantic Versioning (https://semver.org/)
18-
version: "1.4.0-rc"
18+
version: "1.5.0-rc"
1919

2020
# This is the version number of the application being deployed. This version number should be
2121
# incremented each time you make changes to the application. Versions are not expected to

template/lab/frontend/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ type: application
1515
# This is the chart version. This version number should be incremented each time you make changes
1616
# to the chart and its templates, including the app version.
1717
# Versions are expected to follow Semantic Versioning (https://semver.org/)
18-
version: "1.4.0-rc"
18+
version: "1.5.0-rc"
1919

2020
# This is the version number of the application being deployed. This version number should be
2121
# incremented each time you make changes to the application. Versions are not expected to

template/lab/helm-pack-lab.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ set -e
55
TITLE="HELM PACKAGE SCRIPT" # script name
66
VER="2.2" # script version
77

8-
HELM_VERSION="1.4.0-rc"
8+
HELM_VERSION="1.5.0-rc"
99
HELM_TEMPLATE="api \
1010
backend \
1111
configmap \

template/lab/helm-push-lab.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ set -e
55
TITLE="HELM PACKAGE SCRIPT" # script name
66
VER="2.2" # script version
77

8-
HELM_VERSION="1.4.0-rc"
8+
HELM_VERSION="1.5.0-rc"
99
HELM_TEMPLATE="api \
1010
backend \
1111
configmap \

template/lab/secretref/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ type: application
1515
# This is the chart version. This version number should be incremented each time you make changes
1616
# to the chart and its templates, including the app version.
1717
# Versions are expected to follow Semantic Versioning (https://semver.org/)
18-
version: "1.4.0-rc"
18+
version: "1.5.0-rc"
1919

2020
# This is the version number of the application being deployed. This version number should be
2121
# incremented each time you make changes to the application. Versions are not expected to

0 commit comments

Comments
 (0)