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

Update release version to ACM 2.12 / Submariner 0.19 #745

Merged
merged 1 commit into from
Aug 8, 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
2 changes: 1 addition & 1 deletion jenkinsfiles/aws-gcp-azure.Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ podTemplate(yaml: readTrusted('jenkinsfiles/SubmarinerAgentPod.yaml')) {
value: 'aws,gcp,azure,vsphere,osp,aro,rosa', defaultValue: 'aws,gcp,azure', multiSelectDelimiter: ',', type: 'PT_CHECKBOX', visibleItemCount: 7),
booleanParam(name: 'SUBMARINER_GATEWAY_RANDOM', defaultValue: true, description: 'Deploy two submariner gateways on one of the clusters'),
string(name: 'NODE_TO_LABEL_AS_GW', defaultValue: '', description: 'Specify cluster node to be manually labeled as Submariner Gateway'),
credentials(name: 'SUBMARINER_CONFIG', defaultValue: 'acm-2.11-subm-0.18-aws-gcp-azure', description: 'Submariner config for environment deploy',
credentials(name: 'SUBMARINER_CONFIG', defaultValue: 'acm-2.12-subm-0.19-aws-gcp-azure', description: 'Submariner config for environment deploy',
required: true, credentialType: 'org.jenkinsci.plugins.plaincredentials.impl.FileCredentialsImpl')
])
])
Expand Down
2 changes: 1 addition & 1 deletion jenkinsfiles/gcp-osp-aro.Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ podTemplate(yaml: readTrusted('jenkinsfiles/SubmarinerAgentPod.yaml')) {
value: 'aws,gcp,azure,vsphere,osp,aro,rosa', defaultValue: 'gcp,osp,aro', multiSelectDelimiter: ',', type: 'PT_CHECKBOX', visibleItemCount: 7),
booleanParam(name: 'SUBMARINER_GATEWAY_RANDOM', defaultValue: true, description: 'Deploy two submariner gateways on one of the clusters'),
string(name: 'NODE_TO_LABEL_AS_GW', defaultValue: 'mbabushk-osp', description: 'Specify cluster node to be manually labeled as Submariner Gateway'),
credentials(name: 'SUBMARINER_CONFIG', defaultValue: 'acm-2.11-subm-0.18-gcp-osp-aro', description: 'Submariner config for environment deploy',
credentials(name: 'SUBMARINER_CONFIG', defaultValue: 'acm-2.12-subm-0.19-gcp-osp-aro', description: 'Submariner config for environment deploy',
required: true, credentialType: 'org.jenkinsci.plugins.plaincredentials.impl.FileCredentialsImpl')
])
])
Expand Down
2 changes: 1 addition & 1 deletion jenkinsfiles/gcp-vsphere-rosa.Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ podTemplate(yaml: readTrusted('jenkinsfiles/SubmarinerAgentPod.yaml')) {
value: 'aws,gcp,azure,vsphere,osp,aro,rosa', defaultValue: 'gcp,vsphere,rosa', multiSelectDelimiter: ',', type: 'PT_CHECKBOX', visibleItemCount: 7),
booleanParam(name: 'SUBMARINER_GATEWAY_RANDOM', defaultValue: true, description: 'Deploy two submariner gateways on one of the clusters'),
string(name: 'NODE_TO_LABEL_AS_GW', defaultValue: '', description: 'Specify cluster node to be manually labeled as Submariner Gateway'),
credentials(name: 'SUBMARINER_CONFIG', defaultValue: 'acm-2.11-subm-0.18-gcp-vsphere-rosa', description: 'Submariner config for environment deploy',
credentials(name: 'SUBMARINER_CONFIG', defaultValue: 'acm-2.12-subm-0.19-gcp-vsphere-rosa', description: 'Submariner config for environment deploy',
required: true, credentialType: 'org.jenkinsci.plugins.plaincredentials.impl.FileCredentialsImpl')
])
])
Expand Down
8 changes: 4 additions & 4 deletions variables
Original file line number Diff line number Diff line change
Expand Up @@ -32,12 +32,12 @@ export VALIDATION_STATE=""
# The value will define the version of Submariner and a channel

# Declare associative arrays for acm/submariner versions
declare -A ACM_2_11=(
[acm_version]='2.11'
[submariner_version]='0.18'
declare -A ACM_2_12=(
[acm_version]='2.12'
[submariner_version]='0.19'
[channel]='stable'
)
export ACM_2_11
export ACM_2_12

# Declare array of COMPONENTS_VERSIONS of associative arrays
export COMPONENT_VERSIONS=("${!ACM@}")
Expand Down
Loading