Compare commits
28 Commits
e812ce83f6
..
master
| Author | SHA1 | Date | |
|---|---|---|---|
| 5f3b2ebecd | |||
| 1b6d7edebf | |||
| 02c1648baa | |||
| 2814a83422 | |||
| 61cbcd73ac | |||
| b2303d20e9 | |||
| 6a5d89c61a | |||
| bdadd646bc | |||
| df6be51375 | |||
| 3dde927ed7 | |||
| 14682ceb9f | |||
| af824cdf22 | |||
| c52952e2e9 | |||
| 4830421e43 | |||
| b3f0b168fb | |||
| 134c8a7265 | |||
| 3ae72ff5fc | |||
| 82291583e8 | |||
| 90773f1a52 | |||
| f9eb1c66d1 | |||
| 944cc47e89 | |||
| 56a32bfaff | |||
| 5ff0604d93 | |||
| d9ad1d6b0e | |||
| 563df98993 | |||
| e216b6b4f1 | |||
| d753f686ff | |||
| a1bd95caec |
@@ -81,6 +81,7 @@ $(DIRS):
|
||||
# Build the image
|
||||
@(cd $(IMAGES_PATH)/$@ && \
|
||||
export DATE=$(DATE_TAG) && \
|
||||
export VERSION=$$(cat version) && \
|
||||
export OS_NAME=$$(echo $@ | cut -d'/' -f1) && \
|
||||
export OS_VERSION_FULL=$$(echo $@ | cut -d'/' -f2) && \
|
||||
export OS_IMAGE=$$(echo $@ | cut -d'/' -f3) && \
|
||||
|
||||
@@ -64,7 +64,7 @@ build {
|
||||
post-processors {
|
||||
post-processor "docker-tag" {
|
||||
repository = "${var.docker_server}/unkin/${var.os_name}${var.os_version_major}-${var.os_image}"
|
||||
tags = ["latest", var.date]
|
||||
tags = ["latest", var.git_commit, var.version]
|
||||
}
|
||||
|
||||
dynamic "post-processor" {
|
||||
|
||||
Executable
+8
@@ -0,0 +1,8 @@
|
||||
#!/usr/bin/bash
|
||||
|
||||
set -e
|
||||
|
||||
mkdir /app
|
||||
git clone --branch ${BRANCH} ${REPOSITORY} /app/repo
|
||||
cd /app/repo
|
||||
make run
|
||||
@@ -1 +1 @@
|
||||
20250608
|
||||
20260117
|
||||
|
||||
@@ -1,2 +1 @@
|
||||
docker
|
||||
incus
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[appstream]
|
||||
name=appstream repository
|
||||
baseurl=https://edgecache.query.consul/almalinux/8.10/AppStream/x86_64/os
|
||||
gpgkey=https://edgecache.query.consul/almalinux/RPM-GPG-KEY-AlmaLinux-8
|
||||
baseurl=https://artifactapi.k8s.syd1.au.unkin.net/api/v1/remote/almalinux/8.10/AppStream/x86_64/os
|
||||
gpgkey=https://artifactapi.k8s.syd1.au.unkin.net/api/v1/remote/almalinux/8.10/AppStream/x86_64/os/RPM-GPG-KEY-AlmaLinux-8
|
||||
enabled=1
|
||||
gpgcheck=1
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[baseos]
|
||||
name=baseos repository
|
||||
baseurl=https://edgecache.query.consul/almalinux/8.10/BaseOS/x86_64/os
|
||||
gpgkey=https://edgecache.query.consul/almalinux/RPM-GPG-KEY-AlmaLinux-8
|
||||
baseurl=https://artifactapi.k8s.syd1.au.unkin.net/api/v1/remote/almalinux/8.10/BaseOS/x86_64/os
|
||||
gpgkey=https://artifactapi.k8s.syd1.au.unkin.net/api/v1/remote/almalinux/8.10/BaseOS/x86_64/os/RPM-GPG-KEY-AlmaLinux-8
|
||||
enabled=1
|
||||
gpgcheck=1
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[epel]
|
||||
name=epel repository
|
||||
baseurl=https://packagerepo.service.consul/epel/8/everything-daily/x86_64/os/
|
||||
gpgkey=https://packagerepo.service.consul/epel/8/everything-daily/x86_64/os/RPM-GPG-KEY-EPEL-8
|
||||
baseurl=https://artifactapi.k8s.syd1.au.unkin.net/api/v1/remote/epel/8/Everything/x86_64
|
||||
gpgkey=https://artifactapi.k8s.syd1.au.unkin.net/api/v1/remote/epel/RPM-GPG-KEY-EPEL-8
|
||||
enabled=1
|
||||
gpgcheck=1
|
||||
|
||||
@@ -1,4 +0,0 @@
|
||||
[extras]
|
||||
name=extras repository
|
||||
baseurl=https://edgecache.query.consul/almalinux/8.10/extras/x86_64/os
|
||||
gpgkey=https://edgecache.query.consul/almalinux/RPM-GPG-KEY-AlmaLinux-8
|
||||
@@ -1,4 +1,6 @@
|
||||
[highavailability]
|
||||
name=highavailability repository
|
||||
baseurl=https://edgecache.query.consul/almalinux/8.10/HighAvailability/x86_64/os
|
||||
gpgkey=https://edgecache.query.consul/almalinux/RPM-GPG-KEY-AlmaLinux-8
|
||||
[ha]
|
||||
name=ha repository
|
||||
baseurl=https://artifactapi.k8s.syd1.au.unkin.net/api/v1/remote/almalinux/8.10/HighAvailability/x86_64/os
|
||||
gpgkey=https://artifactapi.k8s.syd1.au.unkin.net/api/v1/remote/almalinux/8.10/HighAvailability/x86_64/os/RPM-GPG-KEY-AlmaLinux-8
|
||||
enabled=1
|
||||
gpgcheck=1
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
# replaced by crb repo in EL9
|
||||
[powertools]
|
||||
name=powertools repository
|
||||
baseurl=https://edgecache.query.consul/almalinux/8.10/PowerTools/x86_64/os
|
||||
gpgkey=https://edgecache.query.consul/almalinux/RPM-GPG-KEY-AlmaLinux-8
|
||||
baseurl=https://artifactapi.k8s.syd1.au.unkin.net/api/v1/remote/almalinux/8.10/PowerTools/x86_64/os
|
||||
gpgkey=https://artifactapi.k8s.syd1.au.unkin.net/api/v1/remote/almalinux/8.10/PowerTools/x86_64/os/RPM-GPG-KEY-AlmaLinux-9
|
||||
enabled=1
|
||||
gpgcheck=1
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[unkin]
|
||||
name=unkin repository
|
||||
baseurl=https://git.query.consul/api/packages/unkin/rpm/almalinux/el8
|
||||
gpgkey=https://git.query.consul/api/packages/unkin/rpm/repository.key
|
||||
baseurl=https://git.unkin.net/api/packages/unkin/rpm/almalinux/el8
|
||||
gpgkey=https://git.unkin.net/api/packages/unkin/rpm/repository.key
|
||||
enabled=1
|
||||
gpgcheck=0
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
# only available on EL8
|
||||
[unkinben]
|
||||
name=unkinben repository
|
||||
baseurl=https://git.query.consul/api/packages/unkinben/rpm/el8
|
||||
gpgkey=https://git.query.consul/api/packages/unkinben/rpm/repository.key
|
||||
baseurl=https://git.unkin.net/api/packages/unkinben/rpm/el8
|
||||
gpgkey=https://git.unkin.net/api/packages/unkinben/rpm/repository.key
|
||||
enabled=1
|
||||
gpgcheck=0
|
||||
|
||||
@@ -15,7 +15,7 @@ packages = [
|
||||
]
|
||||
scripts_pre_file_copy = [
|
||||
"rm -f /etc/yum.repos.d/*.repo",
|
||||
"curl -k -o internal-ca-certificates.rpm https://git.query.consul/unkin/-/packages/rpm/internal-ca-certificates/20240825-1.el8/files/756 && rpm -i internal-ca-certificates.rpm"
|
||||
"curl -k -o internal-ca-certificates.rpm https://git.unkin.net/unkin/-/packages/rpm/internal-ca-certificates/20240825-1.el8/files/756 && rpm -i internal-ca-certificates.rpm"
|
||||
]
|
||||
scripts_pre_packages = [
|
||||
"dnf makecache",
|
||||
|
||||
@@ -1 +1 @@
|
||||
20250712
|
||||
20260516
|
||||
|
||||
@@ -1 +1 @@
|
||||
20250608
|
||||
20260117
|
||||
|
||||
@@ -6,6 +6,7 @@ packages = [
|
||||
"automake",
|
||||
"binutils",
|
||||
"bison",
|
||||
"buildah",
|
||||
"byacc",
|
||||
"cmake",
|
||||
"diffstat",
|
||||
|
||||
@@ -1 +1 @@
|
||||
20250608
|
||||
20260117
|
||||
|
||||
@@ -1 +0,0 @@
|
||||
20251017
|
||||
@@ -1 +0,0 @@
|
||||
20260106
|
||||
@@ -1,6 +0,0 @@
|
||||
[appstream]
|
||||
name=appstream repository
|
||||
baseurl=https://packagerepo.service.consul/almalinux/9.6/appstream-daily/x86_64/os/
|
||||
gpgkey=https://packagerepo.service.consul/almalinux/9.6/appstream-daily/x86_64/os/RPM-GPG-KEY-AlmaLinux-9
|
||||
enabled=1
|
||||
gpgcheck=1
|
||||
@@ -1,6 +0,0 @@
|
||||
[baseos]
|
||||
name=baseos repository
|
||||
baseurl=https://packagerepo.service.consul/almalinux/9.6/baseos-daily/x86_64/os/
|
||||
gpgkey=https://packagerepo.service.consul/almalinux/9.6/baseos-daily/x86_64/os/RPM-GPG-KEY-AlmaLinux-9
|
||||
enabled=1
|
||||
gpgcheck=1
|
||||
@@ -1,7 +0,0 @@
|
||||
# new repo for EL9+, replaces PowerTools repo
|
||||
[crb]
|
||||
name=crb repository
|
||||
baseurl=https://packagerepo.service.consul/almalinux/9.6/crb-daily/x86_64/os/
|
||||
gpgkey=https://packagerepo.service.consul/almalinux/9.6/crb-daily/x86_64/os/RPM-GPG-KEY-AlmaLinux-9
|
||||
enabled=1
|
||||
gpgcheck=1
|
||||
@@ -1,6 +0,0 @@
|
||||
[epel]
|
||||
name=epel repository
|
||||
baseurl=https://packagerepo.service.consul/epel/9/everything-daily/x86_64/os/
|
||||
gpgkey=https://packagerepo.service.consul/epel/9/everything-daily/x86_64/os/RPM-GPG-KEY-EPEL-9
|
||||
enabled=1
|
||||
gpgcheck=1
|
||||
@@ -1,6 +0,0 @@
|
||||
[extras]
|
||||
name=extras repository
|
||||
baseurl=https://packagerepo.service.consul/almalinux/9.6/extras-daily/x86_64/os/
|
||||
gpgkey=https://packagerepo.service.consul/almalinux/9.6/extras-daily/x86_64/os/RPM-GPG-KEY-AlmaLinux-9
|
||||
enabled=1
|
||||
gpgcheck=1
|
||||
@@ -1,4 +0,0 @@
|
||||
[ha]
|
||||
name=ha repository
|
||||
baseurl=https://packagerepo.service.consul/almalinux/9.6/ha-daily/x86_64/os/
|
||||
gpgkey=https://packagerepo.service.consul/almalinux/9.6/ha-daily/x86_64/os/RPM-GPG-KEY-AlmaLinux-9
|
||||
@@ -1,6 +0,0 @@
|
||||
[unkin]
|
||||
name=unkin repository
|
||||
baseurl=https://git.query.consul/api/packages/unkin/rpm/almalinux/el9
|
||||
gpgkey=https://git.query.consul/api/packages/unkin/rpm/repository.key
|
||||
enabled=1
|
||||
gpgcheck=0
|
||||
@@ -1 +0,0 @@
|
||||
20260106
|
||||
@@ -1 +0,0 @@
|
||||
20250608
|
||||
@@ -1,4 +0,0 @@
|
||||
[puppet]
|
||||
name=puppet repository
|
||||
baseurl=https://packagerepo.service.consul/puppet7/el/9-daily/x86_64/os/
|
||||
gpgkey=https://packagerepo.service.consul/puppet7/el/9-daily/x86_64/os/RPM-GPG-KEY-puppet-20250406
|
||||
@@ -1 +0,0 @@
|
||||
20250712
|
||||
@@ -1 +0,0 @@
|
||||
20251017
|
||||
+2
-2
@@ -1,4 +1,4 @@
|
||||
# almalinux/9.6/actionsdind
|
||||
# almalinux/9.7/actionsdind
|
||||
deploy_files_from_common = true
|
||||
include_incus_client_certs = true
|
||||
docker_source = "git.unkin.net/unkin/almalinux9-base:latest"
|
||||
@@ -9,7 +9,7 @@ packages = [
|
||||
"incus-client",
|
||||
"incus-tools",
|
||||
"nodejs",
|
||||
"opentofu"
|
||||
"opentofu",
|
||||
"packer",
|
||||
"terragrunt",
|
||||
"unzip",
|
||||
@@ -0,0 +1 @@
|
||||
20260606
|
||||
+9
-5
@@ -1,8 +1,12 @@
|
||||
# almalinux/9.6/rpmbuilder
|
||||
# almalinux/9.7/artifactapi
|
||||
docker_source = "git.unkin.net/unkin/almalinux9-base:latest"
|
||||
packages = [
|
||||
"sudo"
|
||||
]
|
||||
scripts_post_packages = [
|
||||
"git clone https://git.unkin.net/unkin/artifactapi.git /app/artifactapi && uv build --wheel -C /app/artifactapi",
|
||||
"adduser -D -s /bin/sh appuser && chown -R appuser:appuser /app"
|
||||
"git clone https://git.unkin.net/unkin/artifactapi.git /app/artifactapi && uv build --wheel /app/artifactapi",
|
||||
"useradd -m -r -s /bin/sh appuser && chown -R appuser:appuser /app",
|
||||
"sudo -u appuser uv tool install --from /app/artifactapi/dist/*.whl artifactapi",
|
||||
]
|
||||
scripts_final = [
|
||||
"dnf clean all",
|
||||
@@ -12,7 +16,7 @@ docker_changes = [
|
||||
"EXPOSE 8000",
|
||||
"HEALTHCHECK --interval=30s --timeout=10s --start-period=5s --retries=3 CMD curl -f http://localhost:8000/health || exit 1",
|
||||
"USER appuser",
|
||||
"ENV PATH=\"/home/appuser/.local/bin:$PATH\"",
|
||||
"WORKDIR /app",
|
||||
"RUN uv pip install /app/artifactapi/dist/*.whl",
|
||||
"CMD [\"uv\", \"run\", \"artifactapi\"]"
|
||||
"CMD [\"artifactapi\"]"
|
||||
]
|
||||
@@ -0,0 +1 @@
|
||||
2.1.2
|
||||
@@ -0,0 +1,6 @@
|
||||
[appstream]
|
||||
name=appstream repository
|
||||
baseurl=https://artifactapi.k8s.syd1.au.unkin.net/api/v1/remote/almalinux-vault/9.7/AppStream/x86_64/os
|
||||
gpgkey=https://artifactapi.k8s.syd1.au.unkin.net/api/v1/remote/almalinux-vault/9.7/AppStream/x86_64/os/RPM-GPG-KEY-AlmaLinux-9
|
||||
enabled=1
|
||||
gpgcheck=1
|
||||
@@ -0,0 +1,6 @@
|
||||
[baseos]
|
||||
name=baseos repository
|
||||
baseurl=https://artifactapi.k8s.syd1.au.unkin.net/api/v1/remote/almalinux-vault/9.7/BaseOS/x86_64/os
|
||||
gpgkey=https://artifactapi.k8s.syd1.au.unkin.net/api/v1/remote/almalinux-vault/9.7/BaseOS/x86_64/os/RPM-GPG-KEY-AlmaLinux-9
|
||||
enabled=1
|
||||
gpgcheck=1
|
||||
@@ -0,0 +1,7 @@
|
||||
# new repo for EL9+, replaces PowerTools repo
|
||||
[crb]
|
||||
name=crb repository
|
||||
baseurl=https://artifactapi.k8s.syd1.au.unkin.net/api/v1/remote/almalinux-vault/9.7/CRB/x86_64/os
|
||||
gpgkey=https://artifactapi.k8s.syd1.au.unkin.net/api/v1/remote/almalinux-vault/9.7/CRB/x86_64/os/RPM-GPG-KEY-AlmaLinux-9
|
||||
enabled=1
|
||||
gpgcheck=1
|
||||
@@ -0,0 +1,6 @@
|
||||
[epel]
|
||||
name=epel repository
|
||||
baseurl=https://artifactapi.k8s.syd1.au.unkin.net/api/v1/remote/epel/9/Everything/x86_64
|
||||
gpgkey=https://artifactapi.k8s.syd1.au.unkin.net/api/v1/remote/epel/RPM-GPG-KEY-EPEL-9
|
||||
enabled=1
|
||||
gpgcheck=1
|
||||
@@ -0,0 +1,6 @@
|
||||
[ha]
|
||||
name=ha repository
|
||||
baseurl=https://artifactapi.k8s.syd1.au.unkin.net/api/v1/remote/almalinux-vault/9.7/HighAvailability/x86_64/os
|
||||
gpgkey=https://artifactapi.k8s.syd1.au.unkin.net/api/v1/remote/almalinux-vault/9.7/HighAvailability/x86_64/os/RPM-GPG-KEY-AlmaLinux-9
|
||||
enabled=1
|
||||
gpgcheck=1
|
||||
@@ -0,0 +1,6 @@
|
||||
[unkin]
|
||||
name=unkin repository
|
||||
baseurl=https://git.unkin.net/api/packages/unkin/rpm/almalinux/el9
|
||||
gpgkey=https://git.unkin.net/api/packages/unkin/rpm/repository.key
|
||||
enabled=1
|
||||
gpgcheck=0
|
||||
+2
-2
@@ -1,4 +1,4 @@
|
||||
# almalinux/9.6/base
|
||||
# almalinux/9.7/base
|
||||
deploy_files_from_image = true
|
||||
deploy_files_from_common = true
|
||||
use_incus = true
|
||||
@@ -16,7 +16,7 @@ packages = [
|
||||
]
|
||||
scripts_pre_file_copy = [
|
||||
"rm -f /etc/yum.repos.d/*.repo",
|
||||
"curl -k -o internal-ca-certificates.rpm https://git.query.consul/unkin/-/packages/rpm/internal-ca-certificates/20240825-1.el8/files/756 && rpm -i internal-ca-certificates.rpm"
|
||||
"curl -k -o internal-ca-certificates.rpm https://git.unkin.net/unkin/-/packages/rpm/internal-ca-certificates/20240825-1.el8/files/756 && rpm -i internal-ca-certificates.rpm"
|
||||
]
|
||||
scripts_pre_packages = [
|
||||
"dnf makecache",
|
||||
@@ -0,0 +1 @@
|
||||
20260606
|
||||
@@ -0,0 +1,12 @@
|
||||
# almalinux/9.7/makerun
|
||||
docker_source = "git.unkin.net/unkin/almalinux9-base:latest"
|
||||
packages = [
|
||||
"g10k"
|
||||
]
|
||||
scripts_final = [
|
||||
"dnf clean all",
|
||||
"rm -rf /var/cache/dnf"
|
||||
]
|
||||
docker_changes = [
|
||||
"CMD /usr/bin/g10k -config /etc/puppetlabs/r10k.yaml"
|
||||
]
|
||||
@@ -0,0 +1 @@
|
||||
20260606
|
||||
@@ -1,2 +1 @@
|
||||
docker
|
||||
incus
|
||||
@@ -0,0 +1,10 @@
|
||||
# almalinux/9.7/gobuilder
|
||||
docker_source = "git.unkin.net/unkin/almalinux9-base:latest"
|
||||
packages = [
|
||||
"go",
|
||||
"nfpm"
|
||||
]
|
||||
scripts_final = [
|
||||
"dnf clean all",
|
||||
"rm -rf /var/cache/dnf"
|
||||
]
|
||||
@@ -0,0 +1 @@
|
||||
20260606
|
||||
@@ -0,0 +1 @@
|
||||
docker
|
||||
+1
-1
@@ -1,4 +1,4 @@
|
||||
# almalinux/9.5/jupyterlab
|
||||
# almalinux/9.7/jupyterlab
|
||||
deploy_files_from_common = true
|
||||
docker_source = "git.unkin.net/unkin/almalinux9-base:latest"
|
||||
scripts_pre_file_copy = [
|
||||
@@ -0,0 +1 @@
|
||||
20260606
|
||||
@@ -0,0 +1 @@
|
||||
docker
|
||||
@@ -0,0 +1,11 @@
|
||||
# almalinux/9.7/makerun
|
||||
docker_source = "git.unkin.net/unkin/almalinux9-base:latest"
|
||||
packages = [
|
||||
"kubeconform",
|
||||
"kustomize",
|
||||
"helm-4.0.5-1"
|
||||
]
|
||||
scripts_final = [
|
||||
"dnf clean all",
|
||||
"rm -rf /var/cache/dnf"
|
||||
]
|
||||
@@ -0,0 +1 @@
|
||||
20260606
|
||||
@@ -0,0 +1 @@
|
||||
docker
|
||||
@@ -0,0 +1,12 @@
|
||||
# almalinux/9.7/makerun
|
||||
docker_source = "git.unkin.net/unkin/almalinux9-base:latest"
|
||||
packages = [
|
||||
"sudo"
|
||||
]
|
||||
scripts_final = [
|
||||
"dnf clean all",
|
||||
"rm -rf /var/cache/dnf"
|
||||
]
|
||||
docker_changes = [
|
||||
"CMD /usr/local/bin/run.sh"
|
||||
]
|
||||
@@ -0,0 +1 @@
|
||||
20260606
|
||||
@@ -0,0 +1 @@
|
||||
docker
|
||||
@@ -0,0 +1,11 @@
|
||||
# almalinux/9.7/makerun
|
||||
docker_source = "git.unkin.net/unkin/almalinux9-base:latest"
|
||||
packages = [
|
||||
"opentofu",
|
||||
"tflint",
|
||||
"terragrunt"
|
||||
]
|
||||
scripts_final = [
|
||||
"dnf clean all",
|
||||
"rm -rf /var/cache/dnf"
|
||||
]
|
||||
@@ -0,0 +1 @@
|
||||
20260606
|
||||
@@ -0,0 +1,6 @@
|
||||
[puppet]
|
||||
name=puppet repository
|
||||
baseurl=https://artifactapi.k8s.syd1.au.unkin.net/api/v1/remote/openvox/openvox7/el/9/x86_64
|
||||
gpgkey=https://artifactapi.k8s.syd1.au.unkin.net/api/v1/remote/openvox/GPG-KEY-openvox.pub
|
||||
enabled=1
|
||||
gpgcheck=1
|
||||
+1
-1
@@ -1,4 +1,4 @@
|
||||
# almalinux/9.5/puppet-base
|
||||
# almalinux/9.7/puppet-base
|
||||
incus_source = "almalinux9/base/latest"
|
||||
deploy_files_from_image = true
|
||||
use_incus = true
|
||||
@@ -0,0 +1 @@
|
||||
20260112
|
||||
@@ -0,0 +1 @@
|
||||
docker
|
||||
@@ -0,0 +1,20 @@
|
||||
# almalinux/9.7/puppet-validator
|
||||
docker_source = "git.unkin.net/unkin/almalinux9-base:latest"
|
||||
packages = [
|
||||
"rubygems",
|
||||
"ruby-devel",
|
||||
"gcc",
|
||||
"make",
|
||||
"redhat-rpm-config",
|
||||
"glibc-headers",
|
||||
"glibc-devel",
|
||||
"libffi",
|
||||
"libffi-devel"
|
||||
]
|
||||
scripts_pre_packages = [
|
||||
"dnf -y group install \"Development Tools\""
|
||||
]
|
||||
scripts_final = [
|
||||
"dnf clean all",
|
||||
"rm -rf /var/cache/dnf"
|
||||
]
|
||||
@@ -0,0 +1 @@
|
||||
20260317
|
||||
@@ -0,0 +1 @@
|
||||
docker
|
||||
+2
-1
@@ -1,4 +1,4 @@
|
||||
# almalinux/9.6/rpmbuilder
|
||||
# almalinux/9.7/rpmbuilder
|
||||
docker_source = "git.unkin.net/unkin/almalinux9-base:latest"
|
||||
packages = [
|
||||
"asciidoc",
|
||||
@@ -6,6 +6,7 @@ packages = [
|
||||
"automake",
|
||||
"binutils",
|
||||
"bison",
|
||||
"buildah",
|
||||
"byacc",
|
||||
"cmake",
|
||||
"diffstat",
|
||||
@@ -0,0 +1 @@
|
||||
20260606
|
||||
@@ -0,0 +1 @@
|
||||
docker
|
||||
@@ -0,0 +1,6 @@
|
||||
[updates]
|
||||
name=Fedora 42 - x86_64 - Updates
|
||||
baseurl=https://artifactapi.k8s.syd1.au.unkin.net/api/v1/remote/fedora/updates/42/Everything/x86_64
|
||||
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-fedora-42-primary
|
||||
enabled=1
|
||||
gpgcheck=1
|
||||
@@ -0,0 +1,6 @@
|
||||
[fedora]
|
||||
name=Fedora 42 - x86_64
|
||||
baseurl=https://artifactapi.k8s.syd1.au.unkin.net/api/v1/remote/fedora/releases/42/Everything/x86_64/os
|
||||
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-fedora-42-primary
|
||||
enabled=1
|
||||
gpgcheck=1
|
||||
@@ -0,0 +1,6 @@
|
||||
[gitea-unkin-fedora-42]
|
||||
name=Unkin Fedora 42
|
||||
baseurl=https://git.unkin.net/api/packages/unkin/rpm/fedora/42
|
||||
enabled=1
|
||||
gpgcheck=1
|
||||
gpgkey=https://git.unkin.net/api/packages/unkin/rpm/repository.key
|
||||
@@ -0,0 +1,24 @@
|
||||
# fedora/42/base
|
||||
docker_source = "artifactapi.k8s.syd1.au.unkin.net/dockerhub/library/fedora:42"
|
||||
deploy_files_from_image = true
|
||||
deploy_files_from_common = false
|
||||
scripts_pre_file_copy = [
|
||||
"rm -f /etc/yum.repos.d/*.repo",
|
||||
"curl -sk -o unkin-ca-certificates.rpm https://git.unkin.net/unkin/-/packages/rpm/unkin-ca-certificates/2025.7.13-1.fc42/files/15674 && rpm -i unkin-ca-certificates.rpm",
|
||||
]
|
||||
packages = [
|
||||
"git",
|
||||
"jq",
|
||||
"make",
|
||||
"python3",
|
||||
"python3-pip",
|
||||
"wget",
|
||||
]
|
||||
scripts_pre_packages = [
|
||||
"dnf makecache",
|
||||
"dnf update -y",
|
||||
]
|
||||
scripts_final = [
|
||||
"dnf clean all",
|
||||
"rm -rf /var/cache/dnf"
|
||||
]
|
||||
@@ -0,0 +1 @@
|
||||
20260521
|
||||
@@ -0,0 +1 @@
|
||||
docker
|
||||
@@ -0,0 +1,47 @@
|
||||
# fedora/42/rpmbuilder
|
||||
docker_source = "git.unkin.net/unkin/fedora42-base:latest"
|
||||
packages = [
|
||||
"asciidoc",
|
||||
"autoconf",
|
||||
"automake",
|
||||
"binutils",
|
||||
"bison",
|
||||
"buildah",
|
||||
"byacc",
|
||||
"cmake",
|
||||
"diffstat",
|
||||
"flex",
|
||||
"gcc",
|
||||
"gcc-c++",
|
||||
"gdb",
|
||||
"glibc-devel",
|
||||
"go",
|
||||
"gzip",
|
||||
"intltool",
|
||||
"jna",
|
||||
"ltrace",
|
||||
"nfpm",
|
||||
"patchutils",
|
||||
"perl-Fedora-VSP",
|
||||
"perl-generators",
|
||||
"pesign",
|
||||
"pkgconf",
|
||||
"pkgconf-m4",
|
||||
"pkgconf-pkg-config",
|
||||
"redhat-rpm-config",
|
||||
"rpm",
|
||||
"rpm-build",
|
||||
"rpm-sign",
|
||||
"rpmdevtools",
|
||||
"rpmlint",
|
||||
"source-highlight",
|
||||
"strace",
|
||||
"systemtap",
|
||||
"tar",
|
||||
"valgrind",
|
||||
"valgrind-devel",
|
||||
]
|
||||
scripts_final = [
|
||||
"dnf clean all",
|
||||
"rm -rf /var/cache/dnf"
|
||||
]
|
||||
@@ -0,0 +1 @@
|
||||
20260521
|
||||
@@ -0,0 +1 @@
|
||||
docker
|
||||
@@ -0,0 +1,6 @@
|
||||
[updates]
|
||||
name=Fedora 43 - x86_64 - Updates
|
||||
baseurl=https://artifactapi.k8s.syd1.au.unkin.net/api/v1/remote/fedora/updates/43/Everything/x86_64
|
||||
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-fedora-43-primary
|
||||
enabled=1
|
||||
gpgcheck=1
|
||||
@@ -0,0 +1,6 @@
|
||||
[fedora]
|
||||
name=Fedora 43 - x86_64
|
||||
baseurl=https://artifactapi.k8s.syd1.au.unkin.net/api/v1/remote/fedora/releases/43/Everything/x86_64/os
|
||||
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-fedora-43-primary
|
||||
enabled=1
|
||||
gpgcheck=1
|
||||
@@ -0,0 +1,6 @@
|
||||
[gitea-unkin-fedora-43]
|
||||
name=Unkin Fedora 43
|
||||
baseurl=https://git.unkin.net/api/packages/unkin/rpm/fedora/43
|
||||
enabled=1
|
||||
gpgcheck=1
|
||||
gpgkey=https://git.unkin.net/api/packages/unkin/rpm/repository.key
|
||||
@@ -0,0 +1,24 @@
|
||||
# fedora/43/base
|
||||
docker_source = "artifactapi.k8s.syd1.au.unkin.net/dockerhub/library/fedora:43"
|
||||
deploy_files_from_image = true
|
||||
deploy_files_from_common = false
|
||||
scripts_pre_file_copy = [
|
||||
"rm -f /etc/yum.repos.d/*.repo",
|
||||
"curl -sk -o unkin-ca-certificates.rpm https://git.unkin.net/unkin/-/packages/rpm/unkin-ca-certificates/2025.7.13-1.fc43/files/15602 && rpm -i unkin-ca-certificates.rpm",
|
||||
]
|
||||
packages = [
|
||||
"git",
|
||||
"jq",
|
||||
"make",
|
||||
"python3",
|
||||
"python3-pip",
|
||||
"wget",
|
||||
]
|
||||
scripts_pre_packages = [
|
||||
"dnf makecache",
|
||||
"dnf update -y",
|
||||
]
|
||||
scripts_final = [
|
||||
"dnf clean all",
|
||||
"rm -rf /var/cache/dnf"
|
||||
]
|
||||
@@ -0,0 +1 @@
|
||||
20260521
|
||||
@@ -0,0 +1 @@
|
||||
docker
|
||||
@@ -0,0 +1,47 @@
|
||||
# fedora/43/rpmbuilder
|
||||
docker_source = "git.unkin.net/unkin/fedora43-base:latest"
|
||||
packages = [
|
||||
"asciidoc",
|
||||
"autoconf",
|
||||
"automake",
|
||||
"binutils",
|
||||
"bison",
|
||||
"buildah",
|
||||
"byacc",
|
||||
"cmake",
|
||||
"diffstat",
|
||||
"flex",
|
||||
"gcc",
|
||||
"gcc-c++",
|
||||
"gdb",
|
||||
"glibc-devel",
|
||||
"go",
|
||||
"gzip",
|
||||
"intltool",
|
||||
"jna",
|
||||
"ltrace",
|
||||
"nfpm",
|
||||
"patchutils",
|
||||
"perl-Fedora-VSP",
|
||||
"perl-generators",
|
||||
"pesign",
|
||||
"pkgconf",
|
||||
"pkgconf-m4",
|
||||
"pkgconf-pkg-config",
|
||||
"redhat-rpm-config",
|
||||
"rpm",
|
||||
"rpm-build",
|
||||
"rpm-sign",
|
||||
"rpmdevtools",
|
||||
"rpmlint",
|
||||
"source-highlight",
|
||||
"strace",
|
||||
"systemtap",
|
||||
"tar",
|
||||
"valgrind",
|
||||
"valgrind-devel",
|
||||
]
|
||||
scripts_final = [
|
||||
"dnf clean all",
|
||||
"rm -rf /var/cache/dnf"
|
||||
]
|
||||
@@ -0,0 +1 @@
|
||||
20260521
|
||||
@@ -0,0 +1 @@
|
||||
docker
|
||||
@@ -0,0 +1,6 @@
|
||||
[updates]
|
||||
name=Fedora 44 - x86_64 - Updates
|
||||
baseurl=https://artifactapi.k8s.syd1.au.unkin.net/api/v1/remote/fedora/updates/44/Everything/x86_64
|
||||
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-fedora-44-primary
|
||||
enabled=1
|
||||
gpgcheck=1
|
||||
@@ -0,0 +1,6 @@
|
||||
[fedora]
|
||||
name=Fedora 44 - x86_64
|
||||
baseurl=https://artifactapi.k8s.syd1.au.unkin.net/api/v1/remote/fedora/releases/44/Everything/x86_64/os
|
||||
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-fedora-44-primary
|
||||
enabled=1
|
||||
gpgcheck=1
|
||||
@@ -0,0 +1,6 @@
|
||||
[gitea-unkin-fedora-44]
|
||||
name=Unkin Fedora 44
|
||||
baseurl=https://git.unkin.net/api/packages/unkin/rpm/fedora/44
|
||||
enabled=1
|
||||
gpgcheck=1
|
||||
gpgkey=https://git.unkin.net/api/packages/unkin/rpm/repository.key
|
||||
@@ -0,0 +1,24 @@
|
||||
# fedora/44/base
|
||||
docker_source = "artifactapi.k8s.syd1.au.unkin.net/dockerhub/library/fedora:44"
|
||||
deploy_files_from_image = true
|
||||
deploy_files_from_common = false
|
||||
scripts_pre_file_copy = [
|
||||
"rm -f /etc/yum.repos.d/*.repo",
|
||||
"curl -sk -o unkin-ca-certificates.rpm https://git.unkin.net/unkin/-/packages/rpm/unkin-ca-certificates/2025.7.13-1.fc44/files/15656 && rpm -i unkin-ca-certificates.rpm",
|
||||
]
|
||||
packages = [
|
||||
"git",
|
||||
"jq",
|
||||
"make",
|
||||
"python3",
|
||||
"python3-pip",
|
||||
"wget",
|
||||
]
|
||||
scripts_pre_packages = [
|
||||
"dnf makecache",
|
||||
"dnf update -y",
|
||||
]
|
||||
scripts_final = [
|
||||
"dnf clean all",
|
||||
"rm -rf /var/cache/dnf"
|
||||
]
|
||||
@@ -0,0 +1 @@
|
||||
20260514
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user