We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eeb2ee2 commit 8a88826Copy full SHA for 8a88826
Jenkinsfile
@@ -29,10 +29,13 @@ pipeline {
29
steps {
30
script {
31
git branch:'5.6_homer', credentialsId: 'jenkins-aws-user', url: 'https://github.com/LearnWithHomer/squidex'
32
- if (params.namespace == "content-v1"){
+ if (params.namespace == "content-v1") {
33
full_image_name = "${upstream_image_name}:${upstream_image_tag}"
34
}
35
- full_image_name = "${homer_image_name}:${tag}"
+ else {
36
+ // For V2
37
+ full_image_name = "${homer_image_name}:${tag}"
38
+ }
39
cluster = params.cluster
40
namespace = params.namespace
41
helm_data_file = "${cluster}/${namespace}.yaml"
0 commit comments