Skip to content

Commit

Permalink
Merge pull request #57 from kilosonc/feat/catalog
Browse files Browse the repository at this point in the history
Feat/catalog
  • Loading branch information
kilosonc authored Jul 6, 2023
2 parents b07ae84 + 31b56d6 commit 379ed12
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
2 changes: 1 addition & 1 deletion charts/horizon/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ description: A CICD DevOps Platform

type: application

version: 2.2.1
version: 2.2.2
appVersion: v2.4.0
dependencies:
- name: common
Expand Down
5 changes: 5 additions & 0 deletions charts/horizon/charts/tektonci-resources/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -202,6 +202,11 @@ horizon:
export GIT_REPOSITORY_URL="$(params.gitRepositoryUrl)"
export IMAGE_URL="$(params.imageURL)"
if [ -z $IMAGE_URL ]; then
echo "there's no image found, skipping..."
exit 0
fi
is_json(){
local INPUT="$1"
[[ ! -z "$(jq -c "objects"<<<"$INPUT" 2>/dev/null)" ]] && return 0 || return 1
Expand Down
2 changes: 1 addition & 1 deletion charts/horizon/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2104,7 +2104,7 @@ web:
replicas: 1
image:
repository: horizoncd/horizon-web
tag: v2.3.0
tag: v2.3.1
securityContext:
runAsUser: 10001
fsGroup: 10001
Expand Down

0 comments on commit 379ed12

Please sign in to comment.