Skip to content

Commit

Permalink
move acs and share to semver for 'next' matrix
Browse files Browse the repository at this point in the history
  • Loading branch information
alxgomz committed Dec 11, 2024
1 parent 4cb8792 commit 4276fb8
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 5 deletions.
12 changes: 10 additions & 2 deletions deployments/uber-manifest.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -90,9 +90,13 @@ sources:
{{ template "quay_auth" }}
{{ end }}
versionFilter:
kind: regex
kind: {{ (eq $id "next") | ternary "semver" "regex" }}
pattern: >-
{{- if eq $id "next" }}
{{ index . "acs" "version" }}
{{- else }}
^{{ index . "acs" "version" }}{{ index . "acs" "pattern" }}$
{{- end }}
{{- end }}
{{ with index . "insight-zeppelin" }}
{{ $image := "quay.io/alfresco/insight-zeppelin" }}
Expand Down Expand Up @@ -146,9 +150,13 @@ sources:
{{ template "quay_auth" }}
{{ end }}
versionFilter:
kind: regex
kind: {{ (eq $id "next") | ternary "semver" "regex" }}
pattern: >-
{{- if eq $id "next" }}
{{ index . "share" "version" }}
{{- else }}
^{{ index . "share" "version" }}{{ index . "share" "pattern" }}$
{{- end }}
{{- end }}
{{- if index . "sync" }}
syncTag_{{ $id }}:
Expand Down
4 changes: 1 addition & 3 deletions deployments/values/supported-matrix.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,12 @@ matrix:
next:
id: next
acs:
version: &acs_next_version "23"
pattern: *development_pattern
version: &acs_next_version ">=25.0.0-0"
activemq:
version: "5.18"
pattern: *ga_activemq_pattern
share:
version: *acs_next_version
pattern: *development_pattern
search:
version: "2"
pattern: *development_pattern
Expand Down

0 comments on commit 4276fb8

Please sign in to comment.