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

Foreman 3.12 branching #485

Merged
merged 1 commit into from
Aug 20, 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
1 change: 1 addition & 0 deletions centos.org/jobs/foreman-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
version:
- '3.10'
- '3.11'
- '3.12'
- nightly
type:
- foreman
Expand Down
1 change: 1 addition & 0 deletions centos.org/jobs/katello-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
version:
- '4.12'
- '4.13'
- '4.14'
- 'nightly'
type:
- katello
Expand Down
44 changes: 44 additions & 0 deletions theforeman.org/pipelines/vars/foreman/3.12.groovy
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
def foreman_version = '3.12'
def git_branch = "${foreman_version}-stable"

def foreman_client_distros = [
'el9',
'el8',
'el7'
]
def foreman_el_releases = [
'el9',
'el8'
]
def foreman_debian_releases = ['bullseye', 'bookworm', 'focal', 'jammy']

def pipelines_deb = [
'install': [
'debian11',
'ubuntu2004',
'ubuntu2204'
],
'upgrade': [
'debian11',
'ubuntu2004',
'ubuntu2204'
]
]

def pipelines_el = [
'install': [
'centos9-stream',
'almalinux8',
'almalinux9',
],
'upgrade': [
'centos9-stream',
'almalinux8',
'almalinux9',
]
]

def pipelines = [
'install': pipelines_deb['install'] + pipelines_el['install'],
'upgrade': pipelines_deb['upgrade'] + pipelines_el['upgrade'],
]
18 changes: 18 additions & 0 deletions theforeman.org/pipelines/vars/katello/4.14.groovy
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
def foreman_version = '3.12'
def katello_version = '4.14'
def foreman_el_releases = [
'el8',
'el9'
]
def pipelines = [
'install': [
'centos9-stream',
'almalinux8',
'almalinux9',
],
'upgrade': [
'centos9-stream',
'almalinux8',
'almalinux9',
]
]
1 change: 1 addition & 0 deletions theforeman.org/yaml/includes/foreman_versions.yaml.inc
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
- '3.10'
- '3.11'
- '3.12'
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
- '3.10'
- '3.11'
- '3.12'
Original file line number Diff line number Diff line change
Expand Up @@ -20,3 +20,4 @@
version:
- '4.12'
- '4.13'
- '4.14'