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

Parameterise gradle image and inttests path suffix #615

Merged
merged 1 commit into from
Sep 25, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
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
Original file line number Diff line number Diff line change
Expand Up @@ -26,5 +26,5 @@ spec:
name: inttests-{{ .Values.branch }}
port:
number: 80
path: /{{ .Values.branch }}/maven-repo/inttests
path: /{{ .Values.branch }}/maven-repo/{{ .Values.ingressPathSuffix }}
pathType: Prefix
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,5 @@
namespace: galasa-development
branch: main
imageName: ghcr.io/galasa-dev/inttests-maven-artefacts
imageTag: main
imageTag: main
ingressPathSuffix: inttests
5 changes: 4 additions & 1 deletion pipelines/tasks/gradle-build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,13 @@ spec:
type: array
- name: command
type: array
- name: image
type: string
default: harbor.galasa.dev/docker_proxy_cache/library/gradle:8.9-jdk17
steps:
- name: gradle-build
workingDir: /workspace/git/$(params.context)
image: harbor.galasa.dev/docker_proxy_cache/library/gradle:8.9-jdk17
image: $(params.image)
imagePullPolicy: IfNotPresent
env:
- name: ORG_GRADLE_PROJECT_signingKeyId
Expand Down
Loading