Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[DSD-6382] updated chart version in helm and deployment scripts #932

Merged
merged 2 commits into from
Oct 4, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion deploy/esignet/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ if [ $# -ge 1 ] ; then
fi

NS=esignet
CHART_VERSION=0.0.1-test
CHART_VERSION=1.5.0-develop

ESIGNET_HOST=$(kubectl -n esignet get cm esignet-global -o jsonpath={.data.mosip-esignet-host})

Expand Down
2 changes: 1 addition & 1 deletion deploy/oidc-ui/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ if [ $# -ge 1 ] ; then
fi

NS=esignet
CHART_VERSION=0.0.1-test
CHART_VERSION=1.5.0-develop

echo Create $NS namespace
kubectl create ns $NS
Expand Down
2 changes: 1 addition & 1 deletion helm/esignet/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apiVersion: v2
name: esignet
description: A Helm chart for MOSIP esignet module
type: application
version: 0.0.1-test
version: 1.5.0-develop
appVersion: ""
dependencies:
- name: common
Expand Down
2 changes: 1 addition & 1 deletion helm/esignet/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ service:
image:
registry: docker.io
repository: mosipdev/esignet
tag: develop
tag: release-1.5.x
## Specify a imagePullPolicy
## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent'
## ref: http://kubernetes.io/docs/user-guide/images/#pre-pulling-images
Expand Down
2 changes: 1 addition & 1 deletion helm/oidc-ui/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apiVersion: v2
name: oidc-ui
description: A Helm chart for MOSIP OIDC UI module
type: application
version: 0.0.1-test
version: 1.5.0-develop
appVersion: ""
dependencies:
- name: common
Expand Down
2 changes: 1 addition & 1 deletion helm/oidc-ui/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ service:
image:
registry: docker.io
repository: mosipdev/oidc-ui
tag: develop
tag: release-1.5.x

## Specify a imagePullPolicy
## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent'
Expand Down
2 changes: 1 addition & 1 deletion partner-onboarder/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ if [ "$flag" = "n" ]; then
fi

NS=esignet
CHART_VERSION=0.0.1-develop
CHART_VERSION=1.5.0-ES-develop

echo Create $NS namespace
kubectl create ns $NS || true
Expand Down
10 changes: 5 additions & 5 deletions partner-onboarder/values.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
image:
registry: docker.io
repository: mosipdev/partner-onboarder
tag: develop
#image:
# registry: docker.io
# repository: mosipdev/partner-onboarder
# tag: develop

onboarding:
modules:
Expand All @@ -17,7 +17,7 @@ onboarding:
# ns_esignet: esignet
# ns_signup: signup
# secrets:
# s3:
# s3:
# s3-user-secret: 'password'
# volumes:
# reports:
Expand Down
Loading